jquery-tablesorter 1.16.2 → 1.16.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/jquery-tablesorter/version.rb +1 -1
- data/vendor/assets/javascripts/jquery-tablesorter/addons/pager/jquery.tablesorter.pager.js +8 -6
- data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.js +30 -20
- data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.widgets.js +343 -193
- data/vendor/assets/javascripts/jquery-tablesorter/parsers/parser-input-select.js +4 -4
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-build-table.js +3 -2
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-filter-formatter-select2.js +2 -2
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-filter.js +26 -23
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-output.js +2 -3
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-pager.js +11 -5
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-resizable.js +277 -139
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-scroller.js +543 -220
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-stickyHeaders.js +3 -10
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-storage.js +28 -15
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-uitheme.js +7 -4
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.black-ice.css +5 -4
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.blue.css +8 -5
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.bootstrap.css +5 -4
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.bootstrap_2.css +6 -5
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.dark.css +6 -5
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.default.css +6 -5
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.dropbox.css +5 -5
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.green.css +13 -8
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.grey.css +8 -5
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.ice.css +16 -9
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.jui.css +4 -3
- data/vendor/assets/stylesheets/jquery-tablesorter/theme.metro-dark.css +5 -4
- metadata +3 -3
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! Widget: stickyHeaders - updated 3/
|
1
|
+
/*! Widget: stickyHeaders - updated 3/26/2015 (v2.21.3) *//*
|
2
2
|
* Requires tablesorter v2.8+ and jQuery 1.4.3+
|
3
3
|
* by Rob Garrison
|
4
4
|
*/
|
@@ -95,7 +95,7 @@ ts.addWidget({
|
|
95
95
|
nestedStickyTop = $nestedSticky.length ? $nestedSticky.height() : 0,
|
96
96
|
// clone table, then wrap to make sticky header
|
97
97
|
$stickyTable = wo.$sticky = $table.clone()
|
98
|
-
.addClass('containsStickyHeaders ' + ts.css.sticky + ' ' + wo.stickyHeaders)
|
98
|
+
.addClass('containsStickyHeaders ' + ts.css.sticky + ' ' + wo.stickyHeaders + ' ' + c.namespace.slice(1) + '_extra_table' )
|
99
99
|
.wrap('<div class="' + ts.css.stickyWrap + '">'),
|
100
100
|
$stickyWrap = $stickyTable.parent()
|
101
101
|
.addClass(ts.css.stickyHide)
|
@@ -153,13 +153,6 @@ ts.addWidget({
|
|
153
153
|
if ($attach.length && !$attach.css('position')) {
|
154
154
|
$attach.css('position', 'relative');
|
155
155
|
}
|
156
|
-
// save stickyTable element to config
|
157
|
-
// it is also saved to wo.$sticky
|
158
|
-
if (c.$extraTables && c.$extraTables.length) {
|
159
|
-
c.$extraTables.add($stickyTable);
|
160
|
-
} else {
|
161
|
-
c.$extraTables = $stickyTable;
|
162
|
-
}
|
163
156
|
// fix clone ID, if it exists - fixes #271
|
164
157
|
if ($stickyTable.attr('id')) { $stickyTable[0].id += wo.stickyHeaders_cloneId; }
|
165
158
|
// clear out cloned table, except for sticky header
|
@@ -179,7 +172,7 @@ ts.addWidget({
|
|
179
172
|
resizeHeader();
|
180
173
|
});
|
181
174
|
|
182
|
-
ts.bindEvents(table, $stickyThead.children().children('.
|
175
|
+
ts.bindEvents(table, $stickyThead.children().children('.' + ts.css.header));
|
183
176
|
|
184
177
|
// add stickyheaders AFTER the table. If the table is selected by ID, the original one (first) will be returned.
|
185
178
|
$table.after( $stickyWrap );
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! Widget: storage */
|
1
|
+
/*! Widget: storage - updated 3/26/2015 (v2.21.3) */
|
2
2
|
;(function ($, window, document) {
|
3
3
|
'use strict';
|
4
4
|
|
@@ -25,26 +25,39 @@ var ts = $.tablesorter = $.tablesorter || {};
|
|
25
25
|
ts.storage = function(table, key, value, options) {
|
26
26
|
table = $(table)[0];
|
27
27
|
var cookieIndex, cookies, date,
|
28
|
-
|
28
|
+
hasStorage = false,
|
29
29
|
values = {},
|
30
30
|
c = table.config,
|
31
|
+
wo = c && c.widgetOptions,
|
32
|
+
storageType = ( options && options.useSessionStorage ) || ( wo && wo.storage_useSessionStorage ) ?
|
33
|
+
'sessionStorage' : 'localStorage',
|
31
34
|
$table = $(table),
|
32
|
-
id
|
33
|
-
|
34
|
-
|
35
|
-
|
35
|
+
// id from (1) options ID, (2) table "data-table-group" attribute, (3) widgetOptions.storage_tableId,
|
36
|
+
// (4) table ID, then (5) table index
|
37
|
+
id = options && options.id ||
|
38
|
+
$table.attr( options && options.group || wo && wo.storage_group || 'data-table-group') ||
|
39
|
+
wo && wo.storage_tableId || table.id || $('.tablesorter').index( $table ),
|
40
|
+
// url from (1) options url, (2) table "data-table-page" attribute, (3) widgetOptions.storage_fixedUrl,
|
41
|
+
// (4) table.config.fixedUrl (deprecated), then (5) window location path
|
42
|
+
url = options && options.url ||
|
43
|
+
$table.attr(options && options.page || wo && wo.storage_page || 'data-table-page') ||
|
44
|
+
wo && wo.storage_fixedUrl || c && c.fixedUrl || window.location.pathname;
|
36
45
|
// https://gist.github.com/paulirish/5558557
|
37
|
-
if (
|
46
|
+
if (storageType in window) {
|
38
47
|
try {
|
39
|
-
window.
|
40
|
-
|
41
|
-
window.
|
42
|
-
} catch(error) {
|
48
|
+
window[storageType].setItem('_tmptest', 'temp');
|
49
|
+
hasStorage = true;
|
50
|
+
window[storageType].removeItem('_tmptest');
|
51
|
+
} catch(error) {
|
52
|
+
if (c && c.debug) {
|
53
|
+
ts.log( storageType + ' is not supported in this browser' );
|
54
|
+
}
|
55
|
+
}
|
43
56
|
}
|
44
57
|
// *** get value ***
|
45
58
|
if ($.parseJSON) {
|
46
|
-
if (
|
47
|
-
values = $.parseJSON(
|
59
|
+
if (hasStorage) {
|
60
|
+
values = $.parseJSON( window[storageType][key] || 'null' ) || {};
|
48
61
|
} else {
|
49
62
|
// old browser, using cookies
|
50
63
|
cookies = document.cookie.split(/[;\s|=]/);
|
@@ -61,8 +74,8 @@ ts.storage = function(table, key, value, options) {
|
|
61
74
|
}
|
62
75
|
values[url][id] = value;
|
63
76
|
// *** set value ***
|
64
|
-
if (
|
65
|
-
|
77
|
+
if (hasStorage) {
|
78
|
+
window[storageType][key] = JSON.stringify(values);
|
66
79
|
} else {
|
67
80
|
date = new Date();
|
68
81
|
date.setTime(date.getTime() + (31536e+6)); // 365 days
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! Widget: uitheme */
|
1
|
+
/*! Widget: uitheme - updated 3/26/2015 (v2.21.3) */
|
2
2
|
;(function ($) {
|
3
3
|
'use strict';
|
4
4
|
var ts = $.tablesorter = $.tablesorter || {};
|
@@ -58,8 +58,8 @@ ts.addWidget({
|
|
58
58
|
format: function(table, c, wo) {
|
59
59
|
var i, hdr, icon, time, $header, $icon, $tfoot, $h, oldtheme, oldremove, oldIconRmv, hasOldTheme,
|
60
60
|
themesAll = ts.themes,
|
61
|
-
$table = c.$table.add( c
|
62
|
-
$headers = c.$headers.add( c
|
61
|
+
$table = c.$table.add( $( c.namespace + '_extra_table' ) ),
|
62
|
+
$headers = c.$headers.add( $( c.namespace + '_extra_headers' ) ),
|
63
63
|
theme = c.theme || 'jui',
|
64
64
|
themes = themesAll[theme] || {},
|
65
65
|
remove = $.trim( [ themes.sortNone, themes.sortDesc, themes.sortAsc, themes.active ].join( ' ' ) ),
|
@@ -130,7 +130,10 @@ ts.addWidget({
|
|
130
130
|
}
|
131
131
|
}
|
132
132
|
for (i = 0; i < c.columns; i++) {
|
133
|
-
$header = c.$headers
|
133
|
+
$header = c.$headers
|
134
|
+
.add($(c.namespace + '_extra_headers'))
|
135
|
+
.not('.sorter-false')
|
136
|
+
.filter('[data-column="' + i + '"]');
|
134
137
|
$icon = (ts.css.icon) ? $header.find('.' + ts.css.icon) : $();
|
135
138
|
$h = $headers.not('.sorter-false').filter('[data-column="' + i + '"]:last');
|
136
139
|
if ($h.length) {
|
@@ -69,10 +69,11 @@
|
|
69
69
|
}
|
70
70
|
|
71
71
|
/* hovered row colors */
|
72
|
+
.tablesorter-blackice tbody > tr.hover > td,
|
72
73
|
.tablesorter-blackice tbody > tr:hover > td,
|
73
74
|
.tablesorter-blackice tbody > tr.even:hover > td,
|
74
75
|
.tablesorter-blackice tbody > tr.odd:hover > td {
|
75
|
-
background: #000;
|
76
|
+
background-color: #000;
|
76
77
|
}
|
77
78
|
|
78
79
|
/* table processing indicator */
|
@@ -116,15 +117,15 @@
|
|
116
117
|
|
117
118
|
/* caption */
|
118
119
|
caption {
|
119
|
-
background: #fff;
|
120
|
+
background-color: #fff;
|
120
121
|
}
|
121
122
|
|
122
123
|
/* filter widget */
|
123
124
|
.tablesorter-blackice .tablesorter-filter-row {
|
124
|
-
background: #222;
|
125
|
+
background-color: #222;
|
125
126
|
}
|
126
127
|
.tablesorter-blackice .tablesorter-filter-row td {
|
127
|
-
background: #222;
|
128
|
+
background-color: #222;
|
128
129
|
line-height: normal;
|
129
130
|
text-align: center; /* center the input */
|
130
131
|
-webkit-transition: line-height 0.1s ease;
|
@@ -96,18 +96,21 @@
|
|
96
96
|
you'll need to add additional lines for
|
97
97
|
rows with more than 2 child rows
|
98
98
|
*/
|
99
|
+
.tablesorter-blue tbody > tr.hover > td,
|
99
100
|
.tablesorter-blue tbody > tr:hover > td,
|
100
101
|
.tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow > td,
|
101
102
|
.tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td,
|
103
|
+
.tablesorter-blue tbody > tr.even.hover > td,
|
102
104
|
.tablesorter-blue tbody > tr.even:hover > td,
|
103
105
|
.tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow > td,
|
104
106
|
.tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
|
105
|
-
background: #d9d9d9;
|
107
|
+
background-color: #d9d9d9;
|
106
108
|
}
|
109
|
+
.tablesorter-blue tbody > tr.odd.hover > td,
|
107
110
|
.tablesorter-blue tbody > tr.odd:hover > td,
|
108
111
|
.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow > td,
|
109
112
|
.tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
|
110
|
-
background: #bfbfbf;
|
113
|
+
background-color: #bfbfbf;
|
111
114
|
}
|
112
115
|
|
113
116
|
/* table processing indicator */
|
@@ -151,15 +154,15 @@
|
|
151
154
|
|
152
155
|
/* caption */
|
153
156
|
caption {
|
154
|
-
background: #fff;
|
157
|
+
background-color: #fff;
|
155
158
|
}
|
156
159
|
|
157
160
|
/* filter widget */
|
158
161
|
.tablesorter-blue .tablesorter-filter-row {
|
159
|
-
background: #eee;
|
162
|
+
background-color: #eee;
|
160
163
|
}
|
161
164
|
.tablesorter-blue .tablesorter-filter-row td {
|
162
|
-
background: #eee;
|
165
|
+
background-color: #eee;
|
163
166
|
line-height: normal;
|
164
167
|
text-align: center; /* center the input */
|
165
168
|
-webkit-transition: line-height 0.1s ease;
|
@@ -53,6 +53,7 @@
|
|
53
53
|
.tablesorter-bootstrap > tbody > tr.tablesorter-hasChildRow.odd:hover ~ tr.tablesorter-hasChildRow.odd ~ .tablesorter-childRow.odd > td {
|
54
54
|
background-color: #f9f9f9;
|
55
55
|
}
|
56
|
+
.tablesorter-bootstrap > tbody > tr.hover > td,
|
56
57
|
.tablesorter-bootstrap > tbody > tr.odd:hover > td,
|
57
58
|
.tablesorter-bootstrap > tbody > tr.even:hover > td,
|
58
59
|
.tablesorter-bootstrap > tbody > tr.tablesorter-hasChildRow.odd:hover ~ .tablesorter-childRow.odd > td,
|
@@ -73,14 +74,14 @@
|
|
73
74
|
|
74
75
|
/* caption */
|
75
76
|
.caption {
|
76
|
-
background: #fff;
|
77
|
+
background-color: #fff;
|
77
78
|
}
|
78
79
|
|
79
80
|
/* filter widget */
|
80
81
|
.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,
|
81
82
|
.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter {
|
82
83
|
width: 98%;
|
83
|
-
margin: 0
|
84
|
+
margin: 0;
|
84
85
|
padding: 4px 6px;
|
85
86
|
color: #333;
|
86
87
|
-webkit-box-sizing: border-box;
|
@@ -102,10 +103,10 @@
|
|
102
103
|
transition: height 0.1s ease;
|
103
104
|
}
|
104
105
|
.tablesorter-bootstrap .tablesorter-filter-row {
|
105
|
-
background: #efefef;
|
106
|
+
background-color: #efefef;
|
106
107
|
}
|
107
108
|
.tablesorter-bootstrap .tablesorter-filter-row td {
|
108
|
-
background: #efefef;
|
109
|
+
background-color: #efefef;
|
109
110
|
line-height: normal;
|
110
111
|
text-align: center;
|
111
112
|
padding: 4px 6px;
|
@@ -63,6 +63,7 @@
|
|
63
63
|
.tablesorter-bootstrap tr.odd > td {
|
64
64
|
background-color: #f9f9f9;
|
65
65
|
}
|
66
|
+
.tablesorter-bootstrap tbody > tr.hover > td,
|
66
67
|
.tablesorter-bootstrap tbody > .odd:hover > td,
|
67
68
|
.tablesorter-bootstrap tbody > .even:hover > td {
|
68
69
|
background-color: #f5f5f5;
|
@@ -80,14 +81,14 @@
|
|
80
81
|
|
81
82
|
/* caption */
|
82
83
|
caption {
|
83
|
-
background: #fff;
|
84
|
+
background-color: #fff;
|
84
85
|
}
|
85
86
|
|
86
87
|
/* filter widget */
|
87
88
|
.tablesorter-bootstrap .tablesorter-filter-row input.tablesorter-filter,
|
88
89
|
.tablesorter-bootstrap .tablesorter-filter-row select.tablesorter-filter {
|
89
90
|
width: 98%;
|
90
|
-
margin: 0
|
91
|
+
margin: 0;
|
91
92
|
padding: 4px 6px;
|
92
93
|
background-color: #fff;
|
93
94
|
color: #333;
|
@@ -100,14 +101,14 @@ caption {
|
|
100
101
|
transition: height 0.1s ease;
|
101
102
|
}
|
102
103
|
.tablesorter-bootstrap .tablesorter-filter-row .tablesorter-filter.disabled {
|
103
|
-
background: #eee;
|
104
|
+
background-color: #eee;
|
104
105
|
cursor: not-allowed;
|
105
106
|
}
|
106
107
|
.tablesorter-bootstrap .tablesorter-filter-row {
|
107
|
-
background: #eee;
|
108
|
+
background-color: #eee;
|
108
109
|
}
|
109
110
|
.tablesorter-bootstrap .tablesorter-filter-row td {
|
110
|
-
background: #eee;
|
111
|
+
background-color: #eee;
|
111
112
|
line-height: normal;
|
112
113
|
text-align: center;
|
113
114
|
padding: 4px 6px;
|
@@ -68,10 +68,11 @@
|
|
68
68
|
}
|
69
69
|
|
70
70
|
/* hovered row colors */
|
71
|
+
.tablesorter-dark tbody > tr.hover > td,
|
71
72
|
.tablesorter-dark tbody > tr:hover > td,
|
72
73
|
.tablesorter-dark tbody > tr.even:hover > td,
|
73
74
|
.tablesorter-dark tbody > tr.odd:hover > td {
|
74
|
-
background: #000;
|
75
|
+
background-color: #000;
|
75
76
|
}
|
76
77
|
|
77
78
|
/* table processing indicator */
|
@@ -115,15 +116,15 @@
|
|
115
116
|
|
116
117
|
/* caption */
|
117
118
|
caption {
|
118
|
-
background: #202020;
|
119
|
+
background-color: #202020;
|
119
120
|
}
|
120
121
|
|
121
122
|
/* filter widget */
|
122
123
|
.tablesorter-dark .tablesorter-filter-row {
|
123
|
-
background: #202020;
|
124
|
+
background-color: #202020;
|
124
125
|
}
|
125
126
|
.tablesorter-dark .tablesorter-filter-row td {
|
126
|
-
background: #202020;
|
127
|
+
background-color: #202020;
|
127
128
|
line-height: normal;
|
128
129
|
text-align: center; /* center the input */
|
129
130
|
-webkit-transition: line-height 0.1s ease;
|
@@ -165,7 +166,7 @@ caption {
|
|
165
166
|
.tablesorter-dark select.tablesorter-filter {
|
166
167
|
width: 98%;
|
167
168
|
height: auto;
|
168
|
-
margin:
|
169
|
+
margin: 0;
|
169
170
|
padding: 4px;
|
170
171
|
background-color: #111;
|
171
172
|
border: 1px solid #222;
|
@@ -70,10 +70,11 @@ Default Theme
|
|
70
70
|
}
|
71
71
|
|
72
72
|
/* hovered row colors */
|
73
|
+
.tablesorter-default tbody > tr.hover > td,
|
73
74
|
.tablesorter-default tbody > tr:hover > td,
|
74
75
|
.tablesorter-default tbody > tr.even:hover > td,
|
75
76
|
.tablesorter-default tbody > tr.odd:hover > td {
|
76
|
-
background: #fff;
|
77
|
+
background-color: #fff;
|
77
78
|
color: #000;
|
78
79
|
}
|
79
80
|
|
@@ -118,15 +119,15 @@ Default Theme
|
|
118
119
|
|
119
120
|
/* caption */
|
120
121
|
caption {
|
121
|
-
background: #fff;
|
122
|
+
background-color: #fff;
|
122
123
|
}
|
123
124
|
|
124
125
|
/* filter widget */
|
125
126
|
.tablesorter-default .tablesorter-filter-row {
|
126
|
-
background: #eee;
|
127
|
+
background-color: #eee;
|
127
128
|
}
|
128
129
|
.tablesorter-default .tablesorter-filter-row td {
|
129
|
-
background: #eee;
|
130
|
+
background-color: #eee;
|
130
131
|
border-bottom: #ccc 1px solid;
|
131
132
|
line-height: normal;
|
132
133
|
text-align: center; /* center the input */
|
@@ -167,7 +168,7 @@ caption {
|
|
167
168
|
.tablesorter-default select.tablesorter-filter {
|
168
169
|
width: 95%;
|
169
170
|
height: auto;
|
170
|
-
margin: 4px;
|
171
|
+
margin: 4px auto;
|
171
172
|
padding: 4px;
|
172
173
|
background-color: #fff;
|
173
174
|
border: 1px solid #bbb;
|
@@ -96,6 +96,7 @@
|
|
96
96
|
}
|
97
97
|
|
98
98
|
/* hovered row colors */
|
99
|
+
.tablesorter-dropbox tbody > tr.hover > td,
|
99
100
|
.tablesorter-dropbox tbody > tr:hover > td,
|
100
101
|
.tablesorter-dropbox tbody > tr.even:hover > td,
|
101
102
|
.tablesorter-dropbox tbody > tr.odd:hover > td {
|
@@ -140,15 +141,15 @@
|
|
140
141
|
|
141
142
|
/* caption */
|
142
143
|
caption {
|
143
|
-
background: #fff;
|
144
|
+
background-color: #fff;
|
144
145
|
}
|
145
146
|
|
146
147
|
/* Filter Widget */
|
147
148
|
.tablesorter-dropbox .tablesorter-filter-row {
|
148
|
-
background: #fff;
|
149
|
+
background-color: #fff;
|
149
150
|
}
|
150
151
|
.tablesorter-dropbox .tablesorter-filter-row td {
|
151
|
-
background: #fff;
|
152
|
+
background-color: #fff;
|
152
153
|
line-height: normal;
|
153
154
|
text-align: center; /* center the input */
|
154
155
|
-webkit-transition: line-height 0.1s ease;
|
@@ -190,8 +191,7 @@ caption {
|
|
190
191
|
.tablesorter-dropbox select.tablesorter-filter {
|
191
192
|
width: 98%;
|
192
193
|
height: auto;
|
193
|
-
margin:
|
194
|
-
|
194
|
+
margin: 0;
|
195
195
|
background-color: #fff;
|
196
196
|
border: 1px solid #bbb;
|
197
197
|
color: #333;
|
@@ -19,7 +19,8 @@
|
|
19
19
|
/* header */
|
20
20
|
.tablesorter-green thead tr .tablesorter-header,
|
21
21
|
.tablesorter-green tfoot tr {
|
22
|
-
background: center center
|
22
|
+
background-position: center center;
|
23
|
+
background-repeat: repeat-x;
|
23
24
|
background-image: url(data:image/gif;base64,R0lGODlhAQBkAOYAAN/e39XU1fX19tTU1eXm5uTl5ePk5OLj4+Hi4vX29fT19PP08/Lz8vHy8fDx8O/w7+7v7uzt7Orr6ufo5/T08/Pz8ufn5uLi4eDg39/f3t3d3Nzc29HR0NDQz8/Pzuvq6urp6eno6Ojn5+fm5tfW1tbV1dTT09PS0tLR0dHQ0NDPz/f39/b29vX19fT09PPz8/Ly8vHx8e/v7+7u7u3t7ezs7Ovr6+rq6unp6ejo6Ofn5+bm5uXl5eTk5OPj4+Li4uHh4eDg4N/f397e3t3d3dzc3Nvb29ra2tnZ2djY2NfX19XV1dPT09LS0tHR0dDQ0M/Pz8rKysXFxf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAFMALAAAAAABAGQAAAdegCsrLC0tLi+ILi6FCSwsCS0KkhQVDA0OMjM0NTYfICEiIzw9P0AYGUQaG0ZHSEoDTU9Qs08pTk1MSyRJR0VDQT8+PTw7Ojg3NTMyMTAvi4WOhC0vMTI1OT9GTlFSgQA7);
|
24
25
|
/* background-image: url(/assets/jquery-tablesorter/green-header.gif); */
|
25
26
|
}
|
@@ -32,7 +33,8 @@
|
|
32
33
|
}
|
33
34
|
.tablesorter-green .header,
|
34
35
|
.tablesorter-green .tablesorter-header-inner {
|
35
|
-
background:
|
36
|
+
background-position: 5px center;
|
37
|
+
background-repeat: no-repeat;
|
36
38
|
background-image: url(data:image/gif;base64,R0lGODlhEAAQAOYAAA5NDBBYDlWWUzRUM5DVjp7inJ/fnQ1ECiCsGhyYFxqKFRFdDhBXDQxCCiO8HSK2HCCqGh2aGByUFxuPFhqNFhmHFRZ2EhVvERRpEBBVDSS8HiGyHB+mGh6fGRuTFxiAFBd5Eww/Cgs5CRp7Fiu+JRx8GCy/JjHAKyynKCuhJzXCMDbCMDnDMyNuHz3EODy9N0LFPSl7JkvIRjycOFDKS1LKTVPLT1XLUFTCT17OWTBkLmbQYnDTbHXVcXnWdoXago/djGmUZ112XCJEIEdjRf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAEUALAAAAAAQABAAAAdlgEWCg4SFhoIvh4cVLECKhCMeJjwFj0UlEwgaMD4Gii0WFAkRHQ47BIY6IQAZDAwBCyAPOJa1toRBGBAwNTY3OT0/AoZCDQoOKi4yNDOKRCIfGycrKZYDBxIkKLZDFxy3RTHgloEAOw==);
|
37
39
|
/* background-image: url(/assets/jquery-tablesorter/green-unsorted.gif); */
|
38
40
|
border-collapse: collapse;
|
@@ -78,18 +80,21 @@
|
|
78
80
|
you'll need to add additional lines for
|
79
81
|
rows with more than 2 child rows
|
80
82
|
*/
|
83
|
+
.tablesorter-green tbody > tr.hover > td,
|
81
84
|
.tablesorter-green tbody > tr:hover > td,
|
82
85
|
.tablesorter-green tbody > tr:hover + tr.tablesorter-childRow > td,
|
83
86
|
.tablesorter-green tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td,
|
87
|
+
.tablesorter-green tbody > tr.even.hover > td,
|
84
88
|
.tablesorter-green tbody > tr.even:hover > td,
|
85
89
|
.tablesorter-green tbody > tr.even:hover + tr.tablesorter-childRow > td,
|
86
90
|
.tablesorter-green tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
|
87
|
-
background: #d9d9d9;
|
91
|
+
background-color: #d9d9d9;
|
88
92
|
}
|
93
|
+
.tablesorter-green tbody > tr.odd.hover > td,
|
89
94
|
.tablesorter-green tbody > tr.odd:hover > td,
|
90
95
|
.tablesorter-green tbody > tr.odd:hover + tr.tablesorter-childRow > td,
|
91
96
|
.tablesorter-green tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
|
92
|
-
background: #bfbfbf;
|
97
|
+
background-color: #bfbfbf;
|
93
98
|
}
|
94
99
|
|
95
100
|
/* table processing indicator */
|
@@ -133,15 +138,15 @@
|
|
133
138
|
|
134
139
|
/* caption */
|
135
140
|
caption {
|
136
|
-
background: #fff;
|
141
|
+
background-color: #fff;
|
137
142
|
}
|
138
143
|
|
139
144
|
/* filter widget */
|
140
145
|
.tablesorter-green .tablesorter-filter-row {
|
141
|
-
background: #eee;
|
146
|
+
background-color: #eee;
|
142
147
|
}
|
143
148
|
.tablesorter-green .tablesorter-filter-row td {
|
144
|
-
background: #eee;
|
149
|
+
background-color: #eee;
|
145
150
|
line-height: normal;
|
146
151
|
text-align: center; /* center the input */
|
147
152
|
-webkit-transition: line-height 0.1s ease;
|
@@ -181,7 +186,7 @@ caption {
|
|
181
186
|
.tablesorter-green select.tablesorter-filter {
|
182
187
|
width: 98%;
|
183
188
|
height: auto;
|
184
|
-
margin:
|
189
|
+
margin: 0;
|
185
190
|
padding: 4px;
|
186
191
|
background-color: #fff;
|
187
192
|
border: 1px solid #bbb;
|