41 lines
729 B
SCSS
41 lines
729 B
SCSS
---
|
|
---
|
|
|
|
|
|
/* Tournament table */
|
|
|
|
table.tournament {
|
|
thead > tr > th, thead > tr > td,
|
|
tfoot > tr > th, tfoot > tr > td,
|
|
tbody > tr > th, tbody > tr > td {
|
|
padding: 0;
|
|
}
|
|
|
|
thead > tr > .score,
|
|
tbody > tr > .score,
|
|
tbody > tr > .diagonal {
|
|
min-width: 21px;
|
|
text-align: center;
|
|
}
|
|
tbody > tr > .diagonal {
|
|
background: black !important;
|
|
}
|
|
}
|
|
|
|
|
|
/* Tablesorter */
|
|
|
|
/* 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; }
|
|
}
|
|
}
|