mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 15:21:00 -04:00
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.
This commit is contained in:
parent
c9d05c66de
commit
6fbf4d8548
1 changed files with 7 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue