formatting

update for azure and grey themes
This commit is contained in:
dmacias72 2017-06-17 02:16:23 -06:00
parent 77d59d32d6
commit 2d192fd0ba
4 changed files with 100 additions and 83 deletions

View File

@ -2,7 +2,7 @@
cursor: pointer; cursor: pointer;
} }
#package_form { #package_form {
margin-top: -22px; margin-top: -10px;
} }
.switch-button-label.off { .switch-button-label.off {
color: inherit; color: inherit;
@ -11,6 +11,7 @@
color:#44B012; color:#44B012;
white-space:nowrap; white-space:nowrap;
} }
.updateready { .updateready, .update {
white-space:nowrap; white-space:nowrap;
cursor: pointer;
} }

View File

@ -2,25 +2,33 @@
.tablesorter .headerSortUp, .tablesorter .headerSortUp,
.tablesorter .tablesorter-headerSortUp, .tablesorter .tablesorter-headerSortUp,
.tablesorter .tablesorter-headerAsc { .tablesorter .tablesorter-headerAsc {
background-color:#101010; background-color:#212421;
} }
.tablesorter .headerSortDown, .tablesorter .headerSortDown,
.tablesorter .tablesorter-headerSortDown, .tablesorter .tablesorter-headerSortDown,
.tablesorter .tablesorter-headerDesc { .tablesorter .tablesorter-headerDesc {
background-color:#101010; background-color:#212421;
} }
/* filter widget */ /* filter widget */
.tablesorter .tablesorter-filter-row { .tablesorter .tablesorter-filter-row {
background-color: #101010; background-color: #101010;
} }
.tablesorter .tablesorter-filter-row td { .tablesorter .tablesorter-filter-row td {
background-color: #101010; background-color: #1b1d1b;
border-bottom: #000000 1px solid; border-bottom: #101010 1px solid;
} }
/* filters */ /* filters */
.tablesorter input.tablesorter-filter, .tablesorter input.tablesorter-filter,
.tablesorter select.tablesorter-filter { .tablesorter select.tablesorter-filter {
background-color: #000000; background-color: #1b1d1b;
border: 1px solid #101010; border: 1px solid #101010;
color: #808080; color: #808080;
} }
/* Zebra Widget - row alternating colors */
.tablesorter tr.odd > td {
background-color: #202020;
}
.tablesorter tr.even > td {
background-color: #1b1d1b;
}

View File

@ -24,3 +24,11 @@
background-color: #FFFFFF; background-color: #FFFFFF;
border: 1px solid #E0E0E0; border: 1px solid #E0E0E0;
} }
/* Zebra Widget - row alternating colors */
.tablesorter tr.odd > td {
background-color: #F0F0F0;
}
.tablesorter tr.even > td {
background-color: #E0E0E0;
}