summaryrefslogtreecommitdiffstats
path: root/tablesorter/theme.default.css
diff options
context:
space:
mode:
Diffstat (limited to 'tablesorter/theme.default.css')
-rw-r--r--tablesorter/theme.default.css31
1 files changed, 21 insertions, 10 deletions
diff --git a/tablesorter/theme.default.css b/tablesorter/theme.default.css
index 2f158b7..6c2a346 100644
--- a/tablesorter/theme.default.css
+++ b/tablesorter/theme.default.css
@@ -15,7 +15,7 @@ Default Theme
/* header */
.tablesorter-default th,
.tablesorter-default thead td {
- font: bold 12px/18px Arial, Sans-serif;
+ font-weight: bold;
color: #000;
background-color: #fff;
border-collapse: collapse;
@@ -49,6 +49,7 @@ Default Theme
}
.tablesorter-default thead .sorter-false {
background-image: none;
+ cursor: default;
padding: 4px;
}
@@ -69,10 +70,11 @@ Default Theme
}
/* hovered row colors */
+.tablesorter-default tbody > tr.hover > td,
.tablesorter-default tbody > tr:hover > td,
.tablesorter-default tbody > tr.even:hover > td,
.tablesorter-default tbody > tr.odd:hover > td {
- background: #fff;
+ background-color: #fff;
color: #000;
}
@@ -80,15 +82,15 @@ Default Theme
.tablesorter-default .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-default tr.odd td {
+.tablesorter-default tr.odd > td {
background-color: #dfdfdf;
}
-.tablesorter-default tr.even td {
+.tablesorter-default tr.even > td {
background-color: #efefef;
}
@@ -117,12 +119,15 @@ Default Theme
/* caption */
caption {
- background: #fff;
+ background-color: #fff;
}
/* filter widget */
+.tablesorter-default .tablesorter-filter-row {
+ background-color: #eee;
+}
.tablesorter-default .tablesorter-filter-row td {
- background: #eee;
+ background-color: #eee;
border-bottom: #ccc 1px solid;
line-height: normal;
text-align: center; /* center the input */
@@ -148,7 +153,7 @@ caption {
line-height: 0;
cursor: pointer;
}
-.tablesorter-default .tablesorter-filter-row.hideme .tablesorter-filter {
+.tablesorter-default .tablesorter-filter-row.hideme * {
height: 1px;
min-height: 0;
border: 0;
@@ -159,10 +164,11 @@ caption {
filter: alpha(opacity=0);
}
/* filters */
-.tablesorter-default .tablesorter-filter {
+.tablesorter-default input.tablesorter-filter,
+.tablesorter-default select.tablesorter-filter {
width: 95%;
height: auto;
- margin: 4px;
+ margin: 4px auto;
padding: 4px;
background-color: #fff;
border: 1px solid #bbb;
@@ -175,9 +181,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;
}