update css for new themes

This commit is contained in:
dmacias72 2017-10-01 01:34:35 -06:00
parent a1ce4cc327
commit f162b6a453
2 changed files with 12 additions and 19 deletions

View File

@ -1,9 +1,7 @@
/* header */ /* header */
.tablesorter .headerSortUp, .tablesorter .headerSortUp,
.tablesorter .tablesorter-headerSortUp, .tablesorter .tablesorter-headerSortUp,
.tablesorter .tablesorter-headerAsc { .tablesorter .tablesorter-headerAsc,
background-color:#212421;
}
.tablesorter .headerSortDown, .tablesorter .headerSortDown,
.tablesorter .tablesorter-headerSortDown, .tablesorter .tablesorter-headerSortDown,
.tablesorter .tablesorter-headerDesc { .tablesorter .tablesorter-headerDesc {
@ -29,6 +27,7 @@
.tablesorter tr.odd > td { .tablesorter tr.odd > td {
background-color: #202020; background-color: #202020;
} }
.tablesorter tr.even > td { .tablesorter tr.even > td,
.tablesorter-headerRow {
background-color: #1b1d1b; background-color: #1b1d1b;
} }

View File

@ -1,34 +1,28 @@
/* header */ /* header */
.tablesorter .headerSortUp, .tablesorter .headerSortUp,
.tablesorter .tablesorter-headerSortUp, .tablesorter .tablesorter-headerSortUp,
.tablesorter .tablesorter-headerAsc { .tablesorter .tablesorter-headerAsc,
background-color:#E0E0E0;
}
.tablesorter .headerSortDown, .tablesorter .headerSortDown,
.tablesorter .tablesorter-headerSortDown, .tablesorter .tablesorter-headerSortDown,
.tablesorter .tablesorter-headerDesc { .tablesorter .tablesorter-headerDesc,
background-color:#E0E0E0; .tablesorter .tablesorter-filter-row,
} .tablesorter-headerRow,
/* filter widget */ .tablesorter tr.even > td {
.tablesorter .tablesorter-filter-row { background-color: #e4e2e4;
background-color: #E0E0E0;
} }
.tablesorter .tablesorter-filter-row td { .tablesorter .tablesorter-filter-row td {
background-color: #E0E0E0; background-color: #e4e2e4;
border-bottom: #FFFFFF 1px solid; border-bottom: #FFFFFF 1px solid;
} }
/* filters */ /* filters */
.tablesorter input.tablesorter-filter, .tablesorter input.tablesorter-filter,
.tablesorter select.tablesorter-filter { .tablesorter select.tablesorter-filter {
background-color: #FFFFFF; background-color: #FFFFFF;
border: 1px solid #E0E0E0; border: 1px solid #e4e2e4;
} }
/* Zebra Widget - row alternating colors */ /* Zebra Widget - row alternating colors */
.tablesorter tr.odd > td { .tablesorter tr.odd > td {
background-color: #F0F0F0; background-color: #F0F0F0;
} }
.tablesorter tr.even > td {
background-color: #E0E0E0;
}