Files
FHC-Core/skin/tablesort_bootstrap.css
T
2018-01-24 18:10:18 +01:00

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;
}