diff --git a/_assets/stylesheets/less/table.custom.less b/_assets/stylesheets/less/table.custom.less index d93ee8b..c0b484f 100644 --- a/_assets/stylesheets/less/table.custom.less +++ b/_assets/stylesheets/less/table.custom.less @@ -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; } } }