mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-12 01:29:28 +00:00
41 lines
936 B
CSS
41 lines
936 B
CSS
/* Reset font of tables */
|
|
.tablesorter-default {
|
|
font: unset !important;
|
|
}
|
|
|
|
/* Reset background color of tables */
|
|
.tablesorter-default td {
|
|
background-color: unset !important;
|
|
}
|
|
|
|
/* Reset table colors and backgrounds on hover */
|
|
.tablesorter-default tbody > tr:hover > td {
|
|
color: unset !important;
|
|
}
|
|
|
|
/* Remove black border at bottom of table header */
|
|
.tablesorter-header {
|
|
border-bottom: #ccc 2px solid !important;
|
|
}
|
|
|
|
/* Remove background color from filter row */
|
|
.tablesorter-default .tablesorter-filter-row td {
|
|
background-color: white !important;
|
|
}
|
|
|
|
/* Make filter row more condensed */
|
|
.tablesorter-default input.tablesorter-filter, .tablesorter-default select.tablesorter-filter {
|
|
margin: 0px auto;
|
|
padding: 0px;
|
|
}
|
|
|
|
/* Add cursor pointer for pager icons */
|
|
.pager i {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Stripes color of table */
|
|
.table-striped > tbody > tr:nth-of-type(odd) {
|
|
background-color: #d1d1d1;
|
|
}
|