summaryrefslogtreecommitdiffstats
path: root/tablesorter/theme.dark.css
diff options
context:
space:
mode:
Diffstat (limited to 'tablesorter/theme.dark.css')
-rw-r--r--tablesorter/theme.dark.css32
1 files changed, 22 insertions, 10 deletions
diff --git a/tablesorter/theme.dark.css b/tablesorter/theme.dark.css
index a763fa2..3ddbf61 100644
--- a/tablesorter/theme.dark.css
+++ b/tablesorter/theme.dark.css
@@ -15,7 +15,8 @@
.tablesorter-dark th,
.tablesorter-dark thead td {
padding: 4px;
- font: bold 12px/20px Arial, Sans-serif;
+ font: 12px/20px Arial, Sans-serif;
+ font-weight: bold;
color: #fff;
background-color: #000;
border-collapse: collapse;
@@ -45,6 +46,7 @@
}
.tablesorter-dark thead .sorter-false {
background-image: none;
+ cursor: default;
padding: 4px;
}
@@ -67,25 +69,26 @@
}
/* hovered row colors */
+.tablesorter-dark tbody > tr.hover > td,
.tablesorter-dark tbody > tr:hover > td,
.tablesorter-dark tbody > tr.even:hover > td,
.tablesorter-dark tbody > tr.odd:hover > td {
- background: #000;
+ background-color: #000;
}
/* table processing indicator */
.tablesorter-dark .tablesorter-processing {
background-position: center center !important;
background-repeat: no-repeat !important;
- /* background-image: url(../addons/pager/icons/loading.gif) !important; */
+ /* background-image: url(images/loading.gif) !important; */
background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important;
}
/* Zebra Widget - row alternating colors */
-.tablesorter-dark tr.odd td {
+.tablesorter-dark tr.odd > td {
background-color: #202020;
}
-.tablesorter-dark tr.even td {
+.tablesorter-dark tr.even > td {
background-color: #101010;
}
@@ -114,12 +117,15 @@
/* caption */
caption {
- background: #fff;
+ background-color: #202020;
}
/* filter widget */
+.tablesorter-dark .tablesorter-filter-row {
+ background-color: #202020;
+}
.tablesorter-dark .tablesorter-filter-row td {
- background: #202020;
+ background-color: #202020;
line-height: normal;
text-align: center; /* center the input */
-webkit-transition: line-height 0.1s ease;
@@ -145,7 +151,7 @@ caption {
line-height: 0;
cursor: pointer;
}
-.tablesorter-dark .tablesorter-filter-row.hideme .tablesorter-filter {
+.tablesorter-dark .tablesorter-filter-row.hideme * {
height: 1px;
min-height: 0;
border: 0;
@@ -157,10 +163,11 @@ caption {
}
/* filters */
-.tablesorter-dark .tablesorter-filter {
+.tablesorter-dark input.tablesorter-filter,
+.tablesorter-dark select.tablesorter-filter {
width: 98%;
height: auto;
- margin: 4px;
+ margin: 0;
padding: 4px;
background-color: #111;
border: 1px solid #222;
@@ -173,9 +180,14 @@ caption {
-o-transition: height 0.1s ease;
transition: height 0.1s ease;
}
+/* rows hidden by filtering (needed for child rows) */
+.tablesorter .filtered {
+ display: none;
+}
/* ajax error row */
.tablesorter .tablesorter-errorRow td {
+ text-align: center;
cursor: pointer;
background-color: #e6bf99;
}