summaryrefslogtreecommitdiffstats
path: root/tablesorter/theme.blue.css
diff options
context:
space:
mode:
Diffstat (limited to 'tablesorter/theme.blue.css')
-rw-r--r--tablesorter/theme.blue.css34
1 files changed, 24 insertions, 10 deletions
diff --git a/tablesorter/theme.blue.css b/tablesorter/theme.blue.css
index ede9631..66d6e58 100644
--- a/tablesorter/theme.blue.css
+++ b/tablesorter/theme.blue.css
@@ -20,7 +20,8 @@
/* header */
.tablesorter-blue th,
.tablesorter-blue thead td {
- font: bold 12px/18px Arial, Sans-serif;
+ font: 12px/18px Arial, Sans-serif;
+ font-weight: bold;
color: #000;
background-color: #99bfe6;
border-collapse: collapse;
@@ -71,6 +72,7 @@
}
.tablesorter-blue thead .sorter-false {
background-image: none;
+ cursor: default;
padding: 4px;
}
@@ -95,33 +97,36 @@
you'll need to add additional lines for
rows with more than 2 child rows
*/
+.tablesorter-blue tbody > tr.hover > td,
.tablesorter-blue tbody > tr:hover > td,
.tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow > td,
.tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td,
+.tablesorter-blue tbody > tr.even.hover > td,
.tablesorter-blue tbody > tr.even:hover > td,
.tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow > td,
.tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
- background: #d9d9d9;
+ background-color: #d9d9d9;
}
+.tablesorter-blue tbody > tr.odd.hover > td,
.tablesorter-blue tbody > tr.odd:hover > td,
.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow > td,
.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
- background: #bfbfbf;
+ background-color: #bfbfbf;
}
/* table processing indicator */
.tablesorter-blue .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-blue tbody tr.odd td {
+.tablesorter-blue tbody tr.odd > td {
background-color: #ebf2fa;
}
-.tablesorter-blue tbody tr.even td {
+.tablesorter-blue tbody tr.even > td {
background-color: #fff;
}
@@ -150,12 +155,15 @@
/* caption */
caption {
- background: #fff;
+ background-color: #fff;
}
/* filter widget */
+.tablesorter-blue .tablesorter-filter-row {
+ background-color: #eee;
+}
.tablesorter-blue .tablesorter-filter-row td {
- background: #eee;
+ background-color: #eee;
line-height: normal;
text-align: center; /* center the input */
-webkit-transition: line-height 0.1s ease;
@@ -180,7 +188,7 @@ caption {
line-height: 0;
cursor: pointer;
}
-.tablesorter-blue .tablesorter-filter-row.hideme .tablesorter-filter {
+.tablesorter-blue .tablesorter-filter-row.hideme * {
height: 1px;
min-height: 0;
border: 0;
@@ -191,7 +199,8 @@ caption {
filter: alpha(opacity=0);
}
/* filters */
-.tablesorter-blue .tablesorter-filter {
+.tablesorter-blue input.tablesorter-filter,
+.tablesorter-blue select.tablesorter-filter {
width: 98%;
height: auto;
margin: 0;
@@ -207,9 +216,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;
}