jquery-tablesorter-rails4 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +1 -0
  7. data/app/assets/javascripts/jquery_tablesorter/jquery.metadata.js +116 -0
  8. data/app/assets/javascripts/jquery_tablesorter/jquery.tablesorter.js +1477 -0
  9. data/app/assets/javascripts/jquery_tablesorter/jquery.tablesorter.widgets-filter-formatter.js +924 -0
  10. data/app/assets/javascripts/jquery_tablesorter/jquery.tablesorter.widgets.js +1210 -0
  11. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-date-iso8601.js +34 -0
  12. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-date-month.js +32 -0
  13. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-date-two-digit-year.js +68 -0
  14. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-date-weekday.js +32 -0
  15. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-date.js +36 -0
  16. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-feet-inch-fraction.js +63 -0
  17. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-ignore-articles.js +47 -0
  18. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-input-select.js +78 -0
  19. data/app/assets/javascripts/jquery_tablesorter/parsers/parser-metric.js +77 -0
  20. data/app/assets/javascripts/jquery_tablesorter/widgets/widget-editable.js +68 -0
  21. data/app/assets/javascripts/jquery_tablesorter/widgets/widget-grouping.js +114 -0
  22. data/app/assets/javascripts/jquery_tablesorter/widgets/widget-repeatheaders.js +50 -0
  23. data/app/assets/javascripts/jquery_tablesorter/widgets/widget-scroller.js +240 -0
  24. data/app/assets/stylesheets/jquery_tablesorter/filter.formatter.css +183 -0
  25. data/app/assets/stylesheets/jquery_tablesorter/theme.black-ice.css +180 -0
  26. data/app/assets/stylesheets/jquery_tablesorter/theme.blue.css +215 -0
  27. data/app/assets/stylesheets/jquery_tablesorter/theme.bootstrap.css +139 -0
  28. data/app/assets/stylesheets/jquery_tablesorter/theme.dark.css +181 -0
  29. data/app/assets/stylesheets/jquery_tablesorter/theme.default.css +183 -0
  30. data/app/assets/stylesheets/jquery_tablesorter/theme.dropbox.css +201 -0
  31. data/app/assets/stylesheets/jquery_tablesorter/theme.green.css +198 -0
  32. data/app/assets/stylesheets/jquery_tablesorter/theme.grey.css +234 -0
  33. data/app/assets/stylesheets/jquery_tablesorter/theme.ice.css +189 -0
  34. data/app/assets/stylesheets/jquery_tablesorter/theme.jui.css +145 -0
  35. data/jquery-tablesorter-rails4.gemspec +25 -0
  36. data/lib/jquery-tablesorter-rails4.rb +1 -0
  37. data/lib/jquery/tablesorter/rails4.rb +10 -0
  38. data/lib/jquery/tablesorter/rails4/engine.rb +8 -0
  39. data/lib/jquery/tablesorter/rails4/version.rb +7 -0
  40. metadata +124 -0
@@ -0,0 +1,183 @@
1
+ /**** Filter Formatter Elements ****/
2
+ .tablesorter .tablesorter-filter-row td {
3
+ text-align: center;
4
+ font-size: 0.9em;
5
+ font-weight: normal;
6
+ }
7
+
8
+ /**** Sliders ****/
9
+ /* shrink the sliders to look nicer inside of a table cell */
10
+ .tablesorter .ui-slider, .tablesorter input.range {
11
+ width: 90%;
12
+ margin: 2px auto 2px auto; /* add enough top margin so the tooltips will fit */
13
+ font-size: 0.8em;
14
+ }
15
+ .tablesorter .ui-slider {
16
+ top: 12px;
17
+ }
18
+ .tablesorter .ui-slider .ui-slider-handle {
19
+ width: 0.9em;
20
+ height: 0.9em;
21
+ }
22
+ .tablesorter .ui-datepicker {
23
+ font-size: 0.8em;
24
+ }
25
+ .tablesorter .ui-slider-horizontal {
26
+ height: 0.5em;
27
+ }
28
+ /* Add tooltips to slider handles */
29
+ .tablesorter .value-popup:after {
30
+ content : attr(data-value);
31
+ position: absolute;
32
+ bottom: 14px;
33
+ left: -7px;
34
+ min-width: 18px;
35
+ height: 12px;
36
+ background-color: #444;
37
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999));
38
+ background-image: -webkit-linear-gradient(top, #444, #999);
39
+ background-image: -moz-linear-gradient(top, #444, #999);
40
+ background-image: -o-linear-gradient(top, #444, #999);
41
+ background-image: linear-gradient(to bottom, #444, #999);
42
+ -webkit-border-radius: 3px;
43
+ border-radius: 3px;
44
+ -webkit-background-clip: padding-box; background-clip: padding-box;
45
+ -webkit-box-shadow: 0px 0px 4px 0px #777;
46
+ box-shadow: 0px 0px 4px 0px #777;
47
+ border: #444 1px solid;
48
+ color: #fff;
49
+ font: 1em/1.1em Arial, Sans-Serif;
50
+ padding: 1px;
51
+ text-align: center;
52
+ }
53
+ .tablesorter .value-popup:before {
54
+ content: "";
55
+ position: absolute;
56
+ width: 0;
57
+ height: 0;
58
+ border-top: 8px solid #777;
59
+ border-left: 8px solid transparent;
60
+ border-right: 8px solid transparent;
61
+ top: -8px;
62
+ left: 50%;
63
+ margin-left: -8px;
64
+ margin-top: -1px;
65
+ }
66
+
67
+ /**** Date Picker ****/
68
+ .tablesorter .dateFrom, .tablesorter .dateTo {
69
+ width: 80px;
70
+ margin: 2px 5px;
71
+ }
72
+
73
+ /**** Color Picker/HTML5Number Toggle button ****/
74
+ .tablesorter .button {
75
+ width: 14px;
76
+ height: 14px;
77
+ background: #fcfff4;
78
+ background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
79
+ background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
80
+ background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
81
+ background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
82
+ background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
83
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0 );
84
+ margin: 1px 5px 1px 1px;
85
+ -webkit-border-radius: 25px;
86
+ -moz-border-radius: 25px;
87
+ border-radius: 25px;
88
+ -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
89
+ -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
90
+ box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
91
+ position: relative;
92
+ top: 3px;
93
+ display: inline-block;
94
+ }
95
+
96
+ .tablesorter .button label {
97
+ cursor: pointer;
98
+ position: absolute;
99
+ width: 10px;
100
+ height: 10px;
101
+ -webkit-border-radius: 25px;
102
+ -moz-border-radius: 25px;
103
+ border-radius: 25px;
104
+ left: 2px;
105
+ top: 2px;
106
+ -webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
107
+ -moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
108
+ box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
109
+ background: #45484d;
110
+ background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
111
+ background: -moz-linear-gradient(top, #222 0%, #45484d 100%);
112
+ background: -o-linear-gradient(top, #222 0%, #45484d 100%);
113
+ background: -ms-linear-gradient(top, #222 0%, #45484d 100%);
114
+ background: linear-gradient(top, #222 0%, #45484d 100%);
115
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222', endColorstr='#45484d', GradientType=0 );
116
+ }
117
+
118
+ .tablesorter .button label:after {
119
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
120
+ filter: alpha(opacity=0);
121
+ opacity: 0;
122
+ content: '';
123
+ position: absolute;
124
+ width: 8px;
125
+ height: 8px;
126
+ background: #55f;
127
+ background: -webkit-linear-gradient(top, #aaf 0%, #55f 100%);
128
+ background: -moz-linear-gradient(top, #aaf 0%, #55f 100%);
129
+ background: -o-linear-gradient(top, #aaf 0%, #55f 100%);
130
+ background: -ms-linear-gradient(top, #aaf 0%, #55f 100%);
131
+ background: linear-gradient(top, #aaf 0%, #55f 100%);
132
+ -webkit-border-radius: 25px;
133
+ -moz-border-radius: 25px;
134
+ border-radius: 25px;
135
+ top: 1px;
136
+ left: 1px;
137
+ -webkit-box-shadow: inset 0px 1px 1px #fff, 0px 1px 3px rgba(0,0,0,0.5);
138
+ -moz-box-shadow: inset 0px 1px 1px #fff, 0px 1px 3px rgba(0,0,0,0.5);
139
+ box-shadow: inset 0px 1px 1px #fff, 0px 1px 3px rgba(0,0,0,0.5);
140
+ }
141
+
142
+ .tablesorter .button label:hover::after {
143
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
144
+ filter: alpha(opacity=30);
145
+ opacity: 0.3;
146
+ }
147
+
148
+ .tablesorter .button input[type=checkbox] {
149
+ visibility: hidden;
150
+ }
151
+
152
+ .tablesorter .button input[type=checkbox]:checked + label:after {
153
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
154
+ filter: alpha(opacity=100);
155
+ opacity: 1;
156
+ }
157
+
158
+ .tablesorter .colorpicker {
159
+ width: 30px;
160
+ height: 18px;
161
+ }
162
+ .tablesorter .ui-spinner-input {
163
+ width: 100px;
164
+ height: 18px;
165
+ }
166
+ .tablesorter .currentColor, .tablesorter .ui-spinner {
167
+ position: relative;
168
+ }
169
+ .tablesorter input.number {
170
+ position: relative;
171
+ }
172
+
173
+ /* hide filter row */
174
+ .tablesorter .tablesorter-filter-row.hideme td * {
175
+ height: 1px;
176
+ min-height: 0;
177
+ border: 0;
178
+ padding: 0;
179
+ margin: 0;
180
+ /* don't use visibility: hidden because it disables tabbing */
181
+ opacity: 0;
182
+ filter: alpha(opacity=0);
183
+ }
@@ -0,0 +1,180 @@
1
+ /*************
2
+ Black Ice Theme (by thezoggy)
3
+ *************/
4
+ /* overall */
5
+ .tablesorter-blackice {
6
+ width: 100%;
7
+ margin-right: auto;
8
+ margin-left: auto;
9
+ font: 11px/18px Arial, Sans-serif;
10
+ text-align: left;
11
+ background-color: #000;
12
+ border-collapse: collapse;
13
+ border-spacing: 0;
14
+ }
15
+
16
+ /* header */
17
+ .tablesorter-blackice th,
18
+ .tablesorter-blackice thead td {
19
+ padding: 4px;
20
+ font: bold 13px/20px Arial, Sans-serif;
21
+ color: #e5e5e5;
22
+ text-align: left;
23
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
24
+ background-color: #111;
25
+ border: 1px solid #232323;
26
+ }
27
+ .tablesorter-blackice .header,
28
+ .tablesorter-blackice .tablesorter-header {
29
+ padding: 4px 20px 4px 4px;
30
+ cursor: pointer;
31
+ background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
32
+ background-position: center right;
33
+ background-repeat: no-repeat;
34
+ }
35
+ .tablesorter-blackice .headerSortUp,
36
+ .tablesorter-blackice .tablesorter-headerSortUp,
37
+ .tablesorter-blackice .tablesorter-headerAsc {
38
+ background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
39
+ color: #fff;
40
+ }
41
+ .tablesorter-blackice .headerSortDown,
42
+ .tablesorter-blackice .tablesorter-headerSortDown,
43
+ .tablesorter-blackice .tablesorter-headerDesc {
44
+ color: #fff;
45
+ background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
46
+ }
47
+ .tablesorter-blackice thead .sorter-false {
48
+ background-image: none;
49
+ padding: 4px;
50
+ }
51
+
52
+ /* tfoot */
53
+ .tablesorter-blackice tfoot .tablesorter-headerSortUp,
54
+ .tablesorter-blackice tfoot .tablesorter-headerSortDown,
55
+ .tablesorter-blackice tfoot .tablesorter-headerAsc,
56
+ .tablesorter-blackice tfoot .tablesorter-headerDesc {
57
+ /* remove sort arrows from footer */
58
+ background-image: none;
59
+ }
60
+
61
+ /* tbody */
62
+ .tablesorter-blackice td {
63
+ padding: 4px;
64
+ color: #ccc;
65
+ vertical-align: top;
66
+ background-color: #333;
67
+ border: 1px solid #232323;
68
+ }
69
+
70
+ /* hovered row colors */
71
+ .tablesorter-blackice tbody > tr:hover > td,
72
+ .tablesorter-blackice tbody > tr.even:hover > td,
73
+ .tablesorter-blackice tbody > tr.odd:hover > td {
74
+ background: #000;
75
+ }
76
+
77
+ /* table processing indicator */
78
+ .tablesorter-blackice .tablesorter-processing {
79
+ background-position: center center !important;
80
+ background-repeat: no-repeat !important;
81
+ /* background-image: url(../addons/pager/icons/loading.gif) !important; */
82
+ background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important;
83
+ }
84
+
85
+ /* Zebra Widget - row alternating colors */
86
+ .tablesorter-blackice tr.odd td {
87
+ background-color: #333;
88
+ }
89
+ .tablesorter-blackice tr.even td {
90
+ background-color: #393939;
91
+ }
92
+
93
+ /* Column Widget - column sort colors */
94
+ .tablesorter-blackice td.primary,
95
+ .tablesorter-blackice tr.odd td.primary {
96
+ background-color: #2f3a40;
97
+ }
98
+ .tablesorter-blackice tr.even td.primary {
99
+ background-color: #3f4a50;
100
+ }
101
+ .tablesorter-blackice td.secondary,
102
+ .tablesorter-blackice tr.odd td.secondary {
103
+ background-color: #3f4a50;
104
+ }
105
+ .tablesorter-blackice tr.even td.secondary {
106
+ background-color: #4f5a60;
107
+ }
108
+ .tablesorter-blackice td.tertiary,
109
+ .tablesorter-blackice tr.odd td.tertiary {
110
+ background-color: #4f5a60;
111
+ }
112
+ .tablesorter-blackice tr.even td.tertiary {
113
+ background-color: #5a646b;
114
+ }
115
+
116
+ /* caption */
117
+ caption {
118
+ background: #fff;
119
+ }
120
+
121
+ /* filter widget */
122
+ .tablesorter-blackice .tablesorter-filter-row td {
123
+ background: #222;
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-blackice .tablesorter-filter-row .disabled {
133
+ opacity: 0.5;
134
+ filter: alpha(opacity=50);
135
+ cursor: not-allowed;
136
+ }
137
+ /* hidden filter row */
138
+ .tablesorter-blackice .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-blackice .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-blackice .tablesorter-filter {
160
+ width: 98%;
161
+ height: auto;
162
+ margin: 0;
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
+ }
175
+
176
+ /* ajax error row */
177
+ .tablesorter .tablesorter-errorRow td {
178
+ cursor: pointer;
179
+ background-color: #e6bf99;
180
+ }
@@ -0,0 +1,215 @@
1
+ /*************
2
+ Blue Theme
3
+ *************/
4
+ /* overall */
5
+ .tablesorter-blue {
6
+ width: 100%;
7
+ background-color: #fff;
8
+ margin: 10px 0 15px;
9
+ text-align: left;
10
+ border-spacing: 0;
11
+ border: #cdcdcd 1px solid;
12
+ border-width: 1px 0 0 1px;
13
+ }
14
+ .tablesorter-blue th,
15
+ .tablesorter-blue td {
16
+ border: #cdcdcd 1px solid;
17
+ border-width: 0 1px 1px 0;
18
+ }
19
+
20
+ /* header */
21
+ .tablesorter-blue th,
22
+ .tablesorter-blue thead td {
23
+ font: bold 12px/18px Arial, Sans-serif;
24
+ color: #000;
25
+ background-color: #99bfe6;
26
+ border-collapse: collapse;
27
+ padding: 4px;
28
+ text-shadow: 0 1px 0 rgba(204, 204, 204, 0.7);
29
+ }
30
+ .tablesorter-blue tbody td,
31
+ .tablesorter-blue tfoot th,
32
+ .tablesorter-blue tfoot td {
33
+ padding: 4px;
34
+ vertical-align: top;
35
+ }
36
+ .tablesorter-blue .header,
37
+ .tablesorter-blue .tablesorter-header {
38
+ /* black (unsorted) double arrow */
39
+ background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
40
+ /* white (unsorted) double arrow */
41
+ /* background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAAP///////yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); */
42
+ /* image */
43
+ /* background-image: url(images/black-unsorted.gif); */
44
+ background-repeat: no-repeat;
45
+ background-position: center right;
46
+ padding: 4px 18px 4px 4px;
47
+ white-space: normal;
48
+ cursor: pointer;
49
+ }
50
+ .tablesorter-blue .headerSortUp,
51
+ .tablesorter-blue .tablesorter-headerSortUp,
52
+ .tablesorter-blue .tablesorter-headerAsc {
53
+ background-color: #9fbfdf;
54
+ /* black asc arrow */
55
+ background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
56
+ /* white asc arrow */
57
+ /* background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); */
58
+ /* image */
59
+ /* background-image: url(images/black-asc.gif); */
60
+ }
61
+ .tablesorter-blue .headerSortDown,
62
+ .tablesorter-blue .tablesorter-headerSortDown,
63
+ .tablesorter-blue .tablesorter-headerDesc {
64
+ background-color: #8cb3d9;
65
+ /* black desc arrow */
66
+ background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
67
+ /* white desc arrow */
68
+ /* background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); */
69
+ /* image */
70
+ /* background-image: url(images/black-desc.gif); */
71
+ }
72
+ .tablesorter-blue thead .sorter-false {
73
+ background-image: none;
74
+ padding: 4px;
75
+ }
76
+
77
+ /* tfoot */
78
+ .tablesorter-blue tfoot .tablesorter-headerSortUp,
79
+ .tablesorter-blue tfoot .tablesorter-headerSortDown,
80
+ .tablesorter-blue tfoot .tablesorter-headerAsc,
81
+ .tablesorter-blue tfoot .tablesorter-headerDesc {
82
+ /* remove sort arrows from footer */
83
+ background-image: none;
84
+ }
85
+
86
+ /* tbody */
87
+ .tablesorter-blue td {
88
+ color: #3d3d3d;
89
+ background-color: #fff;
90
+ padding: 4px;
91
+ vertical-align: top;
92
+ }
93
+
94
+ /* hovered row colors
95
+ you'll need to add additional lines for
96
+ rows with more than 2 child rows
97
+ */
98
+ .tablesorter-blue tbody > tr:hover > td,
99
+ .tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow > td,
100
+ .tablesorter-blue tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td,
101
+ .tablesorter-blue tbody > tr.even:hover > td,
102
+ .tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow > td,
103
+ .tablesorter-blue tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
104
+ background: #d9d9d9;
105
+ }
106
+ .tablesorter-blue tbody > tr.odd:hover > td,
107
+ .tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow > td,
108
+ .tablesorter-blue tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
109
+ background: #bfbfbf;
110
+ }
111
+
112
+ /* table processing indicator */
113
+ .tablesorter-blue .tablesorter-processing {
114
+ background-position: center center !important;
115
+ background-repeat: no-repeat !important;
116
+ /* background-image: url(../addons/pager/icons/loading.gif) !important; */
117
+ background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important;
118
+ }
119
+
120
+ /* Zebra Widget - row alternating colors */
121
+ .tablesorter-blue tbody tr.odd td {
122
+ background-color: #ebf2fa;
123
+ }
124
+ .tablesorter-blue tbody tr.even td {
125
+ background-color: #fff;
126
+ }
127
+
128
+ /* Column Widget - column sort colors */
129
+ .tablesorter-blue td.primary,
130
+ .tablesorter-blue tr.odd td.primary {
131
+ background-color: #99b3e6;
132
+ }
133
+ .tablesorter-blue tr.even td.primary {
134
+ background-color: #c2d1f0;
135
+ }
136
+ .tablesorter-blue td.secondary,
137
+ .tablesorter-blue tr.odd td.secondary {
138
+ background-color: #c2d1f0;
139
+ }
140
+ .tablesorter-blue tr.even td.secondary {
141
+ background-color: #d6e0f5;
142
+ }
143
+ .tablesorter-blue td.tertiary,
144
+ .tablesorter-blue tr.odd td.tertiary {
145
+ background-color: #d6e0f5;
146
+ }
147
+ .tablesorter-blue tr.even td.tertiary {
148
+ background-color: #ebf0fa;
149
+ }
150
+
151
+ /* caption */
152
+ caption {
153
+ background: #fff;
154
+ }
155
+
156
+ /* filter widget */
157
+ .tablesorter-blue .tablesorter-filter-row td {
158
+ background: #eee;
159
+ line-height: normal;
160
+ text-align: center; /* center the input */
161
+ -webkit-transition: line-height 0.1s ease;
162
+ -moz-transition: line-height 0.1s ease;
163
+ -o-transition: line-height 0.1s ease;
164
+ transition: line-height 0.1s ease;
165
+ }
166
+ /* optional disabled input styling */
167
+ .tablesorter-blue .tablesorter-filter-row .disabled {
168
+ opacity: 0.5;
169
+ filter: alpha(opacity=50);
170
+ cursor: not-allowed;
171
+ }
172
+ /* hidden filter row */
173
+ .tablesorter-blue .tablesorter-filter-row.hideme td {
174
+ /*** *********************************************** ***/
175
+ /*** change this padding to modify the thickness ***/
176
+ /*** of the closed filter row (height = padding x 2) ***/
177
+ padding: 2px;
178
+ /*** *********************************************** ***/
179
+ margin: 0;
180
+ line-height: 0;
181
+ cursor: pointer;
182
+ }
183
+ .tablesorter-blue .tablesorter-filter-row.hideme .tablesorter-filter {
184
+ height: 1px;
185
+ min-height: 0;
186
+ border: 0;
187
+ padding: 0;
188
+ margin: 0;
189
+ /* don't use visibility: hidden because it disables tabbing */
190
+ opacity: 0;
191
+ filter: alpha(opacity=0);
192
+ }
193
+ /* filters */
194
+ .tablesorter-blue .tablesorter-filter {
195
+ width: 98%;
196
+ height: auto;
197
+ margin: 0;
198
+ padding: 4px;
199
+ background-color: #fff;
200
+ border: 1px solid #bbb;
201
+ color: #333;
202
+ -webkit-box-sizing: border-box;
203
+ -moz-box-sizing: border-box;
204
+ box-sizing: border-box;
205
+ -webkit-transition: height 0.1s ease;
206
+ -moz-transition: height 0.1s ease;
207
+ -o-transition: height 0.1s ease;
208
+ transition: height 0.1s ease;
209
+ }
210
+
211
+ /* ajax error row */
212
+ .tablesorter .tablesorter-errorRow td {
213
+ cursor: pointer;
214
+ background-color: #e6bf99;
215
+ }