summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-10-07 11:06:37 +0200
committerVincent Petry <pvince81@owncloud.com>2014-10-07 11:06:37 +0200
commit396a71b0059e706a40d850d8ed20988eceaab328 (patch)
treec9465cfb2e9640ce6b997f43c7e089cbe04f34d6 /apps/files
parent6323d5fb3aa26ca777004595db255074e2f31079 (diff)
parent3cd6b99a0b5d5bab33264e92865d3974698a1a0d (diff)
downloadnextcloud-server-396a71b0059e706a40d850d8ed20988eceaab328.tar.gz
nextcloud-server-396a71b0059e706a40d850d8ed20988eceaab328.zip
Merge pull request #11378 from owncloud/sort-indicator-style
fix position and style of sort indicator
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/css/files.css14
1 files changed, 9 insertions, 5 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 35c5fa8926e..ab8ee584a60 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -153,19 +153,23 @@ table th .columntitle.name {
margin-left: 50px;
}
-.sort-indicator.hidden { visibility: hidden; }
table th .sort-indicator {
width: 10px;
height: 8px;
- margin-left: 10px;
+ margin-left: 5px;
display: inline-block;
+ vertical-align: text-bottom;
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
+ filter: alpha(opacity=30);
+ opacity: .3;
+}
+.sort-indicator.hidden {
+ visibility: hidden;
}
table th:hover .sort-indicator.hidden {
- width: 10px;
- height: 8px;
- margin-left: 10px;
visibility: visible;
}
+
table th, table td { border-bottom:1px solid #ddd; text-align:left; font-weight:normal; }
table td {
padding: 0 15px;