summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-05-26 11:52:42 +0200
committerVincent Petry <pvince81@owncloud.com>2014-05-30 10:06:29 +0200
commit6fbf4d8548133dff4419e5e2e0c649f49e177669 (patch)
tree0cd1843c359a561c2a878eba4175d295d3a11ce9 /apps/files
parentc9d05c66de06290c8c6a8fde06f35652ad796f48 (diff)
downloadnextcloud-server-6fbf4d8548133dff4419e5e2e0c649f49e177669.tar.gz
nextcloud-server-6fbf4d8548133dff4419e5e2e0c649f49e177669.zip
Fix table header colors
Table headers should be 999 even when using links (introduced by the sorting feature) When selecting with checkboxes, they must appear black.
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/css/files.css8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 731dd7a23e7..0bcea2eceaf 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -151,7 +151,13 @@ tr:hover span.extension {
}
table tr.mouseOver td { background-color:#eee; }
-table th { height:24px; padding:0 8px; color:#999; }
+table th { height:24px; padding:0 8px; }
+table th, table th a {
+ color: #999;
+}
+table.multiselect th a {
+ color: #000;
+}
table th .columntitle {
display: inline-block;
padding: 15px;