1

Fix the hovering of tournament table.

This commit is contained in:
vonavi 2014-03-27 21:14:22 +02:00
parent 29b77e614f
commit 298c057d67

View File

@ -21,10 +21,16 @@ table.tournament {
/* Tablesorter */ /* Tablesorter */
/* Fix the background color of tfoot */ /* Fix background colors */
.tablesorter-blue tfoot { .tablesorter-blue {
.tablesorter-headerSortUp, .tablesorter-headerSortDown, tfoot {
.tablesorter-headerAsc, .tablesorter-headerDesc { .tablesorter-headerSortUp, .tablesorter-headerSortDown,
background-color: #fff; .tablesorter-headerAsc, .tablesorter-headerDesc {
background-color: #fff;
}
}
tbody {
> tr.even:hover > td { background-color: #fff; }
> tr.odd:hover > td { background-color: #ebf2fa; }
} }
} }