1
Fork 0

Fix the hovering of tournament table.

master
vonavi 2014-03-27 21:14:22 +02:00
parent 29b77e614f
commit 298c057d67
1 changed files with 11 additions and 5 deletions

View File

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