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:
Vincent Petry 2014-05-26 11:52:42 +02:00
parent c9d05c66de
commit 6fbf4d8548

View file

@ -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;