aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/css
diff options
context:
space:
mode:
authorRemco Brenninkmeijer <requist1@starmail.nl>2014-07-16 21:52:08 +0200
committerRemco Brenninkmeijer <requist1@starmail.nl>2014-07-16 21:52:08 +0200
commit742589fe01259331baee53e6a5bb3be34a9c8e61 (patch)
tree6d6cbe93501f37cd3e52738b7daaa690fec9c593 /apps/files/css
parent1a65d09f708f35e9c38e4e75564f5ac54b136f22 (diff)
downloadnextcloud-server-742589fe01259331baee53e6a5bb3be34a9c8e61.tar.gz
nextcloud-server-742589fe01259331baee53e6a5bb3be34a9c8e61.zip
Show sorting icons when hovering over
Diffstat (limited to 'apps/files/css')
-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 287dedc23f2..f5fe6819e11 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -99,7 +99,7 @@
}
#filestable tbody tr { background-color:#fff; height:40px; }
-#filestable tbody tr:hover, tbody tr:active {
+#filestable tbody tr:hover, tbody tr:active , tbody th:hover, tbody th:active {
background-color: rgb(240,240,240);
}
#filestable tbody tr.selected {
@@ -152,16 +152,20 @@ table th .columntitle.name {
padding-right: 80px;
margin-left: 50px;
}
-/* hover effect on sortable column */
-table th a.columntitle:hover {
- color: #000;
-}
+
+.sort-indicator.hidden { visibility: hidden; }
table th .sort-indicator {
width: 10px;
height: 8px;
margin-left: 10px;
display: inline-block;
}
+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;