mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-11 00:59:34 +00:00
60 lines
1.6 KiB
CSS
60 lines
1.6 KiB
CSS
/**
|
|
restyling mottie tablesorter default theme to fit with bootstrap sb admin template
|
|
PLEASE DO ONLY INCLUDE WHEN USING MOTTIE TABLESORTER DEFAULT THEME AND BOOTSTRAP SB ADMIN 2 TEMPLATE
|
|
**/
|
|
|
|
/* Reset font of tables */
|
|
.tablesorter-default {
|
|
font: unset !important;
|
|
}
|
|
|
|
/* Reset table colors and backgrounds on hover */
|
|
.tablesorter-default tbody > tr:hover > td {
|
|
color: unset !important;
|
|
background-color: unset !important;
|
|
}
|
|
|
|
/* Remove black border at bottom of table header */
|
|
.tablesorter-header {
|
|
border-bottom: #ccc 2px solid !important;
|
|
}
|
|
|
|
/* set colors of zebra widget */
|
|
table.tablesorter tbody tr.even td, table.tablesorter tbody tr.even:hover, table.tablesorter tbody tr.even td:hover{
|
|
background-color: #ffff;
|
|
}
|
|
|
|
table.tablesorter tbody tr.odd td, table.tablesorter tbody tr.odd:hover, table.tablesorter tbody tr.odd td:hover{
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
/* colors for hover over table rows and clicked rows*/
|
|
table.tablesort-hover tr:hover, .tablesort-active{
|
|
background-color: #dfdfdf !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;
|
|
}
|
|
|
|
/* bring datepicker to front */
|
|
#ui-datepicker-div{
|
|
z-index: 9999 !important;
|
|
} |