jquery-tablesorter 1.0.5 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/README.markdown +48 -31
  2. data/Rakefile +56 -1
  3. data/lib/jquery-tablesorter/version.rb +1 -1
  4. data/vendor/assets/images/jquery-tablesorter/addons/{icons → pager/icons}/first.png +0 -0
  5. data/vendor/assets/images/jquery-tablesorter/addons/{icons → pager/icons}/last.png +0 -0
  6. data/vendor/assets/images/jquery-tablesorter/addons/pager/icons/loading.gif +0 -0
  7. data/vendor/assets/images/jquery-tablesorter/addons/{icons → pager/icons}/next.png +0 -0
  8. data/vendor/assets/images/jquery-tablesorter/addons/{icons → pager/icons}/prev.png +0 -0
  9. data/vendor/assets/images/jquery-tablesorter/black-asc.gif +0 -0
  10. data/vendor/assets/images/jquery-tablesorter/black-desc.gif +0 -0
  11. data/vendor/assets/images/jquery-tablesorter/black-unsorted.gif +0 -0
  12. data/vendor/assets/images/jquery-tablesorter/dropbox-asc1.png +0 -0
  13. data/vendor/assets/images/jquery-tablesorter/dropbox-asc2.png +0 -0
  14. data/vendor/assets/images/jquery-tablesorter/dropbox-desc1.png +0 -0
  15. data/vendor/assets/images/jquery-tablesorter/dropbox-desc2.png +0 -0
  16. data/vendor/assets/images/jquery-tablesorter/green-asc.png +0 -0
  17. data/vendor/assets/images/jquery-tablesorter/green-desc.png +0 -0
  18. data/vendor/assets/images/jquery-tablesorter/green-header.png +0 -0
  19. data/vendor/assets/images/jquery-tablesorter/green-unsorted.png +0 -0
  20. data/vendor/assets/images/jquery-tablesorter/ice-asc.gif +0 -0
  21. data/vendor/assets/images/jquery-tablesorter/ice-desc.gif +0 -0
  22. data/vendor/assets/images/jquery-tablesorter/ice-unsorted.gif +0 -0
  23. data/vendor/assets/images/jquery-tablesorter/white-asc.gif +0 -0
  24. data/vendor/assets/images/jquery-tablesorter/white-desc.gif +0 -0
  25. data/vendor/assets/images/jquery-tablesorter/white-unsorted.gif +0 -0
  26. data/vendor/assets/javascripts/jquery-tablesorter.js +3 -1
  27. data/vendor/assets/javascripts/jquery-tablesorter/addons/{jquery.tablesorter.pager.js → pager/jquery.tablesorter.pager.js} +507 -419
  28. data/vendor/assets/javascripts/jquery-tablesorter/jquery.metadata.js +53 -85
  29. data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.js +465 -314
  30. data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.min.js +6 -0
  31. data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.widgets.js +618 -267
  32. data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.widgets.min.js +12 -0
  33. data/vendor/assets/stylesheets/jquery-tablesorter/addons/{jquery.tablesorter.pager.css → pager/jquery.tablesorter.pager.css} +15 -14
  34. data/vendor/assets/stylesheets/jquery-tablesorter/theme.black-ice.css +161 -0
  35. data/vendor/assets/stylesheets/jquery-tablesorter/theme.blue.css +196 -0
  36. data/vendor/assets/stylesheets/jquery-tablesorter/theme.bootstrap.css +118 -0
  37. data/vendor/assets/stylesheets/jquery-tablesorter/theme.dark.css +162 -0
  38. data/vendor/assets/stylesheets/jquery-tablesorter/theme.default.css +164 -0
  39. data/vendor/assets/stylesheets/jquery-tablesorter/theme.dropbox.css +175 -0
  40. data/vendor/assets/stylesheets/jquery-tablesorter/theme.green.css +174 -0
  41. data/vendor/assets/stylesheets/jquery-tablesorter/theme.grey.css +217 -0
  42. data/vendor/assets/stylesheets/jquery-tablesorter/theme.ice.css +164 -0
  43. data/vendor/assets/stylesheets/jquery-tablesorter/theme.jui.css +128 -0
  44. metadata +44 -14
  45. data/lib/tasks/jquery-tablesorter_tasks.rake +0 -39
  46. data/vendor/assets/images/jquery-tablesorter/addons/icons/loading.gif +0 -0
  47. data/vendor/assets/stylesheets/jquery-tablesorter/blue.css +0 -3
  48. data/vendor/assets/stylesheets/jquery-tablesorter/blue/style.css +0 -128
  49. data/vendor/assets/stylesheets/jquery-tablesorter/ui.css +0 -4
  50. data/vendor/assets/stylesheets/jquery-tablesorter/ui/style.css +0 -67
@@ -0,0 +1,174 @@
1
+ /*************
2
+ Green Theme
3
+ *************/
4
+ /* overall */
5
+ .tablesorter-green {
6
+ width: 100%;
7
+ text-align: left;
8
+ border-spacing: 0;
9
+ }
10
+ .tablesorter-green,
11
+ .tablesorter-green th,
12
+ .tablesorter-green td {
13
+ font: 12px/18px Arial, Sans-serif;
14
+ border: #cdcdcd 1px solid;
15
+ border-spacing: 0;
16
+ padding: 0;
17
+ text-align: left;
18
+ }
19
+
20
+ /* header */
21
+ .tablesorter-green thead tr,
22
+ .tablesorter-green tfoot tr {
23
+ background: url(/assets/jquery-tablesorter/green-header.png) center center repeat-x;
24
+ }
25
+ .tablesorter-green th,
26
+ .tablesorter-green thead td {
27
+ border-right: #cdcdcd 1px solid;
28
+ border-collapse: collapse;
29
+ padding: 6px;
30
+ }
31
+ .tablesorter-green .header,
32
+ .tablesorter-green .tablesorter-header {
33
+ background: url(/assets/jquery-tablesorter/green-unsorted.png) no-repeat 5px center;
34
+ border-collapse: collapse;
35
+ white-space: normal;
36
+ cursor: pointer;
37
+ }
38
+ .tablesorter-green thead .headerSortUp,
39
+ .tablesorter-green thead .tablesorter-headerSortUp {
40
+ background-image: url(/assets/jquery-tablesorter/green-asc.png);
41
+ }
42
+ .tablesorter-green thead .headerSortDown,
43
+ .tablesorter-green thead .tablesorter-headerSortDown {
44
+ background-image: url(/assets/jquery-tablesorter/green-desc.png);
45
+ }
46
+ .tablesorter-green th.tablesorter-header .tablesorter-header-inner,
47
+ .tablesorter-green td.tablesorter-header .tablesorter-header-inner {
48
+ padding-left: 23px;
49
+ }
50
+
51
+ /* tfoot */
52
+ .tablesorter-green tbody td,
53
+ .tablesorter-green tfoot th {
54
+ padding: 6px;
55
+ vertical-align: top;
56
+ }
57
+
58
+ /* tbody */
59
+ .tablesorter-green td {
60
+ color: #3d3d3d;
61
+ padding: 6px;
62
+ }
63
+
64
+ /* hovered row colors
65
+ you'll need to add additional lines for
66
+ rows with more than 2 child rows
67
+ */
68
+ .tablesorter-green tbody > tr:hover > td,
69
+ .tablesorter-green tbody > tr:hover + tr.tablesorter-childRow > td,
70
+ .tablesorter-green tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td,
71
+ .tablesorter-green tbody > tr.even:hover > td,
72
+ .tablesorter-green tbody > tr.even:hover + tr.tablesorter-childRow > td,
73
+ .tablesorter-green tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
74
+ background: #d9d9d9;
75
+ }
76
+ .tablesorter-green tbody > tr.odd:hover > td,
77
+ .tablesorter-green tbody > tr.odd:hover + tr.tablesorter-childRow > td,
78
+ .tablesorter-green tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
79
+ background: #bfbfbf;
80
+ }
81
+
82
+ /* table processing indicator */
83
+ .tablesorter-green .tablesorter-processing {
84
+ background-position: center center !important;
85
+ background-repeat: no-repeat !important;
86
+ /* background-image: url(../addons/pager/icons/loading.gif) !important; */
87
+ background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important;
88
+ }
89
+
90
+ /* Zebra Widget - row alternating colors */
91
+ .tablesorter-green tr.odd td {
92
+ background-color: #ebfaeb;
93
+ }
94
+ .tablesorter-green tr.even td {
95
+ background-color: #fff;
96
+ }
97
+
98
+ /* Column Widget - column sort colors */
99
+ .tablesorter-green td.primary,
100
+ .tablesorter-green tr.odd td.primary {
101
+ background-color: #99e6a6;
102
+ }
103
+ .tablesorter-green tr.even td.primary {
104
+ background-color: #c2f0c9;
105
+ }
106
+ .tablesorter-green td.secondary,
107
+ .tablesorter-green tr.odd td.secondary {
108
+ background-color: #c2f0c9;
109
+ }
110
+ .tablesorter-green tr.even td.secondary {
111
+ background-color: #d6f5db;
112
+ }
113
+ .tablesorter-green td.tertiary,
114
+ .tablesorter-green tr.odd td.tertiary {
115
+ background-color: #d6f5db;
116
+ }
117
+ .tablesorter-green tr.even td.tertiary {
118
+ background-color: #ebfaed;
119
+ }
120
+
121
+ /* filter widget */
122
+ .tablesorter-green .tablesorter-filter-row td {
123
+ background: #eee;
124
+ line-height: normal;
125
+ text-align: center; /* center the input */
126
+ -webkit-transition: line-height 0.1s ease;
127
+ -moz-transition: line-height 0.1s ease;
128
+ -o-transition: line-height 0.1s ease;
129
+ transition: line-height 0.1s ease;
130
+ }
131
+ /* optional disabled input styling */
132
+ .tablesorter-green .tablesorter-filter-row .disabled {
133
+ opacity: 0.5;
134
+ filter: alpha(opacity=50);
135
+ cursor: not-allowed;
136
+ }
137
+ /* hidden filter row */
138
+ .tablesorter-green .tablesorter-filter-row.hideme td {
139
+ /*** *********************************************** ***/
140
+ /*** change this padding to modify the thickness ***/
141
+ /*** of the closed filter row (height = padding x 2) ***/
142
+ padding: 2px;
143
+ /*** *********************************************** ***/
144
+ margin: 0;
145
+ line-height: 0;
146
+ cursor: pointer;
147
+ }
148
+ .tablesorter-green .tablesorter-filter-row.hideme .tablesorter-filter {
149
+ height: 1px;
150
+ min-height: 0;
151
+ border: 0;
152
+ padding: 0;
153
+ margin: 0;
154
+ /* don't use visibility: hidden because it disables tabbing */
155
+ opacity: 0;
156
+ filter: alpha(opacity=0);
157
+ }
158
+ /* filters */
159
+ .tablesorter-green .tablesorter-filter {
160
+ width: 98%;
161
+ height: inherit;
162
+ margin: 4px;
163
+ padding: 4px;
164
+ background-color: #fff;
165
+ border: 1px solid #bbb;
166
+ color: #333;
167
+ -webkit-box-sizing: border-box;
168
+ -moz-box-sizing: border-box;
169
+ box-sizing: border-box;
170
+ -webkit-transition: height 0.1s ease;
171
+ -moz-transition: height 0.1s ease;
172
+ -o-transition: height 0.1s ease;
173
+ transition: height 0.1s ease;
174
+ }
@@ -0,0 +1,217 @@
1
+ /*************
2
+ Grey Theme
3
+ *************/
4
+ /* overall */
5
+ .tablesorter-grey {
6
+ width: 100%;
7
+ margin: 10px 0 15px;
8
+ text-align: left;
9
+ border-spacing: 0;
10
+ border-left: #555 1px solid;
11
+ }
12
+
13
+ /* header */
14
+ .tablesorter-grey th,
15
+ .tablesorter-grey thead td {
16
+ font: bold 12px/18px Arial, Sans-serif;
17
+ color: #c8c8c8;
18
+ background-color: #3c3c3c;
19
+ background-image: -moz-linear-gradient(top, #555, #3c3c3c);
20
+ background-image: -ms-linear-gradient(top, #555, #3c3c3c);
21
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555), to(#3c3c3c));
22
+ background-image: -webkit-linear-gradient(top, #555, #3c3c3c);
23
+ background-image: -o-linear-gradient(top, #555, #3c3c3c);
24
+ background-image: linear-gradient(top, #555, #3c3c3c);
25
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555', endColorstr='#3c3c3c', GradientType=0);
26
+ background-repeat: repeat-x;
27
+ border-right: #555 1px solid;
28
+ text-shadow: 0 1px 0 rgba(128, 128, 128, 0.7);
29
+ -webkit-box-shadow: inset 0 1px 0 #222;
30
+ -moz-box-shadow: inset 0 1px 0 #222;
31
+ box-shadow: inset 0 1px 0 #222;
32
+ padding: 4px;
33
+ }
34
+ .tablesorter-grey .tablesorter-header-inner,
35
+ .tablesorter-grey .tablesorter-header-inner {
36
+ position: relative;
37
+ padding: 4px 15px 4px 4px;
38
+ }
39
+ .tablesorter-grey .header i,
40
+ .tablesorter-grey .tablesorter-header i {
41
+ width: 18px;
42
+ height: 10px;
43
+ position: absolute;
44
+ right: 2px;
45
+ top: 50%;
46
+ margin-top: -10px;
47
+ /* white (unsorted) double arrow */
48
+ background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
49
+ background-repeat: no-repeat;
50
+ background-position: center right;
51
+ padding: 4px;
52
+ white-space: normal;
53
+ cursor: pointer;
54
+ }
55
+ .tablesorter-grey th.headerSortUp,
56
+ .tablesorter-grey th.tablesorter-headerSortUp,
57
+ .tablesorter-grey th.headerSortDown,
58
+ .tablesorter-grey th.tablesorter-headerSortDown {
59
+ color: #ddd;
60
+ background-color: #135185;
61
+ background-image: -moz-linear-gradient(top, #195c93, #0e4776);
62
+ background-image: -ms-linear-gradient(top, #195c93, #0e4776);
63
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#195c93), to(#0e4776));
64
+ background-image: -webkit-linear-gradient(top, #195c93, #0e4776);
65
+ background-image: -o-linear-gradient(top, #195c93, #0e4776);
66
+ background-image: linear-gradient(top, #195c93, #0e4776);
67
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#195c93', endColorstr='#0e4776', GradientType=0);
68
+ }
69
+ .tablesorter-grey th.headerSortUp i,
70
+ .tablesorter-grey th.tablesorter-headerSortUp i {
71
+ /* white asc arrow */
72
+ background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
73
+ }
74
+ .tablesorter-grey th.headerSortDown i,
75
+ .tablesorter-grey th.tablesorter-headerSortDown i {
76
+ /* white desc arrow */
77
+ background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
78
+ }
79
+
80
+ /* tfoot */
81
+ .tablesorter-grey tbody td,
82
+ .tablesorter-grey tfoot th,
83
+ .tablesorter-grey tfoot td {
84
+ padding: 4px;
85
+ vertical-align: top;
86
+ border-right: #555 1px solid;
87
+ }
88
+ .tablesorter-grey tfoot th,
89
+ .tablesorter-grey tfoot td {
90
+ padding: 8px;
91
+ }
92
+
93
+ /* tbody */
94
+ .tablesorter-grey td {
95
+ color: #eee;
96
+ background-color: #6d6d6d;
97
+ padding: 4px;
98
+ vertical-align: top;
99
+ }
100
+
101
+ /* hovered row colors
102
+ you'll need to add additional lines for
103
+ rows with more than 2 child rows
104
+ */
105
+ .tablesorter-grey tbody > tr:hover > td,
106
+ .tablesorter-grey tbody > tr:hover + tr.tablesorter-childRow > td,
107
+ .tablesorter-grey tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td,
108
+ .tablesorter-grey tbody > tr.even:hover > td,
109
+ .tablesorter-grey tbody > tr.even:hover + tr.tablesorter-childRow > td,
110
+ .tablesorter-grey tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
111
+ background: #134b78;
112
+ }
113
+ .tablesorter-grey tbody > tr.odd:hover > td,
114
+ .tablesorter-grey tbody > tr.odd:hover + tr.tablesorter-childRow > td,
115
+ .tablesorter-grey tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
116
+ background: #134b78;
117
+ }
118
+
119
+ /* table processing indicator */
120
+ .tablesorter-grey .tablesorter-processing {
121
+ background-position: center center !important;
122
+ background-repeat: no-repeat !important;
123
+ /* background-image: url(../addons/pager/icons/loading.gif) !important; */
124
+ background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important;
125
+ }
126
+
127
+ /* Zebra Widget - row alternating colors */
128
+ .tablesorter-grey tbody tr.odd td {
129
+ background-color: #5e5e5e;
130
+ }
131
+ .tablesorter-grey tbody tr.even td {
132
+ background-color: #6d6d6d;
133
+ }
134
+
135
+ /* Column Widget - column sort colors */
136
+ .tablesorter-grey td.primary,
137
+ .tablesorter-grey tr.odd td.primary {
138
+ color: #ddd;
139
+ background-color: #165388;
140
+ }
141
+ .tablesorter-grey tr.even td.primary {
142
+ color: #ddd;
143
+ background-color: #195c93;
144
+ }
145
+ .tablesorter-grey td.secondary,
146
+ .tablesorter-grey tr.odd td.secondary {
147
+ color: #ddd;
148
+ background-color: #185C9A;
149
+ }
150
+ .tablesorter-grey tr.even td.secondary {
151
+ color: #ddd;
152
+ background-color: #1D67A5;
153
+ }
154
+ .tablesorter-grey td.tertiary,
155
+ .tablesorter-grey tr.odd td.tertiary {
156
+ color: #ddd;
157
+ background-color: #1B67AD;
158
+ }
159
+ .tablesorter-grey tr.even td.tertiary {
160
+ color: #ddd;
161
+ background-color: #2073B7;
162
+ }
163
+
164
+ /* filter widget */
165
+ .tablesorter-grey .tablesorter-filter-row td {
166
+ background: #3c3c3c;
167
+ line-height: normal;
168
+ text-align: center; /* center the input */
169
+ -webkit-transition: line-height 0.1s ease;
170
+ -moz-transition: line-height 0.1s ease;
171
+ -o-transition: line-height 0.1s ease;
172
+ transition: line-height 0.1s ease;
173
+ }
174
+ /* optional disabled input styling */
175
+ .tablesorter-grey .tablesorter-filter-row .disabled {
176
+ opacity: 0.5;
177
+ filter: alpha(opacity=50);
178
+ cursor: not-allowed;
179
+ }
180
+ /* hidden filter row */
181
+ .tablesorter-grey .tablesorter-filter-row.hideme td {
182
+ /*** *********************************************** ***/
183
+ /*** change this padding to modify the thickness ***/
184
+ /*** of the closed filter row (height = padding x 2) ***/
185
+ padding: 2px;
186
+ /*** *********************************************** ***/
187
+ margin: 0;
188
+ line-height: 0;
189
+ cursor: pointer;
190
+ }
191
+ .tablesorter-grey .tablesorter-filter-row.hideme .tablesorter-filter {
192
+ height: 1px;
193
+ min-height: 0;
194
+ border: 0;
195
+ padding: 0;
196
+ margin: 0;
197
+ /* don't use visibility: hidden because it disables tabbing */
198
+ opacity: 0;
199
+ filter: alpha(opacity=0);
200
+ }
201
+ /* filters */
202
+ .tablesorter-grey .tablesorter-filter {
203
+ width: 98%;
204
+ height: inherit;
205
+ margin: 0;
206
+ padding: 4px;
207
+ background-color: #6d6d6d;
208
+ border: 1px solid #555;
209
+ color: #ddd;
210
+ -webkit-box-sizing: border-box;
211
+ -moz-box-sizing: border-box;
212
+ box-sizing: border-box;
213
+ -webkit-transition: height 0.1s ease;
214
+ -moz-transition: height 0.1s ease;
215
+ -o-transition: height 0.1s ease;
216
+ transition: height 0.1s ease;
217
+ }
@@ -0,0 +1,164 @@
1
+ /*************
2
+ Ice Theme (by thezoggy)
3
+ *************/
4
+ /* overall */
5
+ .tablesorter-ice {
6
+ width: 100%;
7
+ background-color: #fff;
8
+ margin: 10px 0 15px;
9
+ text-align: left;
10
+ border-spacing: 0;
11
+ border: #ccc 1px solid;
12
+ border-width: 1px 0 0 1px;
13
+ }
14
+ .tablesorter-ice th,
15
+ .tablesorter-ice td {
16
+ border: #ccc 1px solid;
17
+ border-width: 0 1px 1px 0;
18
+ }
19
+
20
+ /* header */
21
+ .tablesorter-ice th,
22
+ .tablesorter-ice thead td {
23
+ font: 12px/18px Arial, Sans-serif;
24
+ color: #555;
25
+ background-color: #f6f8f9;
26
+ border-collapse: collapse;
27
+ padding: 4px;
28
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
29
+ }
30
+ .tablesorter-ice tbody td,
31
+ .tablesorter-ice tfoot th,
32
+ .tablesorter-ice tfoot td {
33
+ padding: 4px;
34
+ vertical-align: top;
35
+ }
36
+ .tablesorter-ice .header,
37
+ .tablesorter-ice .tablesorter-header {
38
+ background: #f6f8f9 url(/assets/jquery-tablesorter/ice-unsorted.gif) no-repeat center right;
39
+ padding: 4px 18px 4px 4px;
40
+ white-space: normal;
41
+ cursor: pointer;
42
+ }
43
+ .tablesorter-ice th.headerSortUp,
44
+ .tablesorter-ice th.tablesorter-headerSortUp {
45
+ color: #333;
46
+ background: #ebedee url(/assets/jquery-tablesorter/ice-desc.gif) no-repeat center right;
47
+ }
48
+ .tablesorter-ice th.headerSortDown,
49
+ .tablesorter-ice th.tablesorter-headerSortDown {
50
+ color: #333;
51
+ background: #ebedee url(/assets/jquery-tablesorter/ice-asc.gif) no-repeat center right;
52
+ }
53
+
54
+ /* tfoot */
55
+ .tablesorter-ice tfoot .tablesorter-headerSortUp,
56
+ .tablesorter-ice tfoot .tablesorter-headerSortDown {
57
+ background: #ebedee;
58
+ }
59
+
60
+ /* tbody */
61
+ .tablesorter-ice td {
62
+ color: #333;
63
+ }
64
+
65
+ /* hovered row colors */
66
+ .tablesorter-ice tbody > tr:hover > td,
67
+ .tablesorter-ice tbody > tr.even:hover > td,
68
+ .tablesorter-ice tbody > tr.odd:hover > td {
69
+ background: #ebf2fa;
70
+ }
71
+
72
+ /* table processing indicator */
73
+ .tablesorter-ice .tablesorter-processing {
74
+ background-position: center center !important;
75
+ background-repeat: no-repeat !important;
76
+ /* background-image: url(../addons/pager/icons/loading.gif) !important; */
77
+ background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important;
78
+ }
79
+
80
+ /* Zebra Widget - row alternating colors */
81
+ .tablesorter-ice tr.odd td {
82
+ background-color: #dfdfdf;
83
+ }
84
+ .tablesorter-ice tr.even td {
85
+ background-color: #efefef;
86
+ }
87
+
88
+ /* Column Widget - column sort colors */
89
+ .tablesorter-ice td.primary,
90
+ .tablesorter-ice tr.odd td.primary {
91
+ background-color: #9ae5e5;
92
+ }
93
+ .tablesorter-ice tr.even td.primary {
94
+ background-color: #c2f0f0;
95
+ }
96
+ .tablesorter-ice td.secondary,
97
+ .tablesorter-ice tr.odd td.secondary {
98
+ background-color: #c2f0f0;
99
+ }
100
+ .tablesorter-ice tr.even td.secondary {
101
+ background-color: #d5f5f5;
102
+ }
103
+ .tablesorter-ice td.tertiary,
104
+ .tablesorter-ice tr.odd td.tertiary {
105
+ background-color: #d5f5f5;
106
+ }
107
+ .tablesorter-ice tr.even td.tertiary {
108
+ background-color: #ebfafa;
109
+ }
110
+
111
+ /* filter widget */
112
+ .tablesorter-ice .tablesorter-filter-row td {
113
+ background: #eee;
114
+ line-height: normal;
115
+ text-align: center; /* center the input */
116
+ -webkit-transition: line-height 0.1s ease;
117
+ -moz-transition: line-height 0.1s ease;
118
+ -o-transition: line-height 0.1s ease;
119
+ transition: line-height 0.1s ease;
120
+ }
121
+ /* optional disabled input styling */
122
+ .tablesorter-ice .tablesorter-filter-row .disabled {
123
+ opacity: 0.5;
124
+ filter: alpha(opacity=50);
125
+ cursor: not-allowed;
126
+ }
127
+ /* hidden filter row */
128
+ .tablesorter-ice .tablesorter-filter-row.hideme td {
129
+ /*** *********************************************** ***/
130
+ /*** change this padding to modify the thickness ***/
131
+ /*** of the closed filter row (height = padding x 2) ***/
132
+ padding: 2px;
133
+ /*** *********************************************** ***/
134
+ margin: 0;
135
+ line-height: 0;
136
+ cursor: pointer;
137
+ }
138
+ .tablesorter-ice .tablesorter-filter-row.hideme .tablesorter-filter {
139
+ height: 1px;
140
+ min-height: 0;
141
+ border: 0;
142
+ padding: 0;
143
+ margin: 0;
144
+ /* don't use visibility: hidden because it disables tabbing */
145
+ opacity: 0;
146
+ filter: alpha(opacity=0);
147
+ }
148
+ /* filters */
149
+ .tablesorter-ice .tablesorter-filter {
150
+ width: 98%;
151
+ height: inherit;
152
+ margin: 4px;
153
+ padding: 4px;
154
+ background-color: #fff;
155
+ border: 1px solid #bbb;
156
+ color: #333;
157
+ -webkit-box-sizing: border-box;
158
+ -moz-box-sizing: border-box;
159
+ box-sizing: border-box;
160
+ -webkit-transition: height 0.1s ease;
161
+ -moz-transition: height 0.1s ease;
162
+ -o-transition: height 0.1s ease;
163
+ transition: height 0.1s ease;
164
+ }