jquery-tablesorter 1.16.2 → 1.16.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/jquery-tablesorter/version.rb +1 -1
  4. data/vendor/assets/javascripts/jquery-tablesorter/addons/pager/jquery.tablesorter.pager.js +8 -6
  5. data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.js +30 -20
  6. data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.widgets.js +343 -193
  7. data/vendor/assets/javascripts/jquery-tablesorter/parsers/parser-input-select.js +4 -4
  8. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-build-table.js +3 -2
  9. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-filter-formatter-select2.js +2 -2
  10. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-filter.js +26 -23
  11. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-output.js +2 -3
  12. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-pager.js +11 -5
  13. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-resizable.js +277 -139
  14. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-scroller.js +543 -220
  15. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-stickyHeaders.js +3 -10
  16. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-storage.js +28 -15
  17. data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-uitheme.js +7 -4
  18. data/vendor/assets/stylesheets/jquery-tablesorter/theme.black-ice.css +5 -4
  19. data/vendor/assets/stylesheets/jquery-tablesorter/theme.blue.css +8 -5
  20. data/vendor/assets/stylesheets/jquery-tablesorter/theme.bootstrap.css +5 -4
  21. data/vendor/assets/stylesheets/jquery-tablesorter/theme.bootstrap_2.css +6 -5
  22. data/vendor/assets/stylesheets/jquery-tablesorter/theme.dark.css +6 -5
  23. data/vendor/assets/stylesheets/jquery-tablesorter/theme.default.css +6 -5
  24. data/vendor/assets/stylesheets/jquery-tablesorter/theme.dropbox.css +5 -5
  25. data/vendor/assets/stylesheets/jquery-tablesorter/theme.green.css +13 -8
  26. data/vendor/assets/stylesheets/jquery-tablesorter/theme.grey.css +8 -5
  27. data/vendor/assets/stylesheets/jquery-tablesorter/theme.ice.css +16 -9
  28. data/vendor/assets/stylesheets/jquery-tablesorter/theme.jui.css +4 -3
  29. data/vendor/assets/stylesheets/jquery-tablesorter/theme.metro-dark.css +5 -4
  30. metadata +3 -3
@@ -114,18 +114,21 @@
114
114
  you'll need to add additional lines for
115
115
  rows with more than 2 child rows
116
116
  */
117
+ .tablesorter-grey tbody > tr.hover > td,
117
118
  .tablesorter-grey tbody > tr:hover > td,
118
119
  .tablesorter-grey tbody > tr:hover + tr.tablesorter-childRow > td,
119
120
  .tablesorter-grey tbody > tr:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td,
121
+ .tablesorter-grey tbody > tr.even.hover > td,
120
122
  .tablesorter-grey tbody > tr.even:hover > td,
121
123
  .tablesorter-grey tbody > tr.even:hover + tr.tablesorter-childRow > td,
122
124
  .tablesorter-grey tbody > tr.even:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
123
- background: #134b78;
125
+ background-color: #134b78;
124
126
  }
127
+ .tablesorter-grey tbody > tr.odd.hover > td,
125
128
  .tablesorter-grey tbody > tr.odd:hover > td,
126
129
  .tablesorter-grey tbody > tr.odd:hover + tr.tablesorter-childRow > td,
127
130
  .tablesorter-grey tbody > tr.odd:hover + tr.tablesorter-childRow + tr.tablesorter-childRow > td {
128
- background: #134b78;
131
+ background-color: #134b78;
129
132
  }
130
133
 
131
134
  /* table processing indicator */
@@ -175,15 +178,15 @@
175
178
 
176
179
  /* caption */
177
180
  caption {
178
- background: #fff;
181
+ background-color: #fff;
179
182
  }
180
183
 
181
184
  /* filter widget */
182
185
  .tablesorter-grey .tablesorter-filter-row {
183
- background: #3c3c3c;
186
+ background-color: #3c3c3c;
184
187
  }
185
188
  .tablesorter-grey .tablesorter-filter-row td {
186
- background: #3c3c3c;
189
+ background-color: #3c3c3c;
187
190
  line-height: normal;
188
191
  text-align: center; /* center the input */
189
192
  -webkit-transition: line-height 0.1s ease;
@@ -35,7 +35,9 @@
35
35
  }
36
36
  .tablesorter-ice .header,
37
37
  .tablesorter-ice .tablesorter-header {
38
- background: #f6f8f9 no-repeat center right;
38
+ background-color: #f6f8f9;
39
+ background-position: center right;
40
+ background-repeat: no-repeat;
39
41
  background-image: url(data:image/gif;base64,R0lGODlhDAAMAMQAAAJEjAJCiwJBigJAiANFjgNGjgNEjQRIkQRHkANIkAVMlAVQmAZWnQZUnAdYoAhdpAhZoAlhqQlepQliqQppsApmrQxutgtutQtutAxwtwxwtg1yug1zugxtsw1yuP8A/yH5BAEAAB8ALAAAAAAMAAwAAAUx4Cd+3GiOW4ado2d9VMVm1xg9ptadTsP+QNZEcjoQTBDGCAFgLRSfQgCYMAiCn8EvBAA7);
40
42
  /* background-image: url(/assets/jquery-tablesorter/ice-unsorted.gif) */
41
43
  padding: 4px 20px 4px 4px;
@@ -46,7 +48,9 @@
46
48
  .tablesorter-ice .tablesorter-headerSortUp,
47
49
  .tablesorter-ice .tablesorter-headerAsc {
48
50
  color: #333;
49
- background: #ebedee no-repeat center right;
51
+ background-color: #ebedee;
52
+ background-position: center right;
53
+ background-repeat: no-repeat;
50
54
  background-image: url(data:image/gif;base64,R0lGODlhDAAMANUAAAJCiwNHkANFjgNEjQRIkQNJkQRMlARKkwRKkgVPlwZSmgdaogdYnwhfpghcowlhqgliqglgqAlgpwljqwporwpmrQplrAtsswtqsgtrsgtqsQxttAtvtQtttAxyuQxwtwxxtwxvtg10uw1zuQ1xuP8A/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACUALAAAAAAMAAwAAAY6wJKwJBoahyNQ6Dj0fDoZCpPEuWgqk4jxs8FQLI+Gg8Esm5kQydFQMC7IwkOAqUiUCAIzIjA4lwBlQQA7);
51
55
  /* background-image: url(/assets/jquery-tablesorter/ice-desc.gif) */
52
56
  }
@@ -54,7 +58,9 @@
54
58
  .tablesorter-ice .tablesorter-headerSortDown,
55
59
  .tablesorter-ice .tablesorter-headerDesc {
56
60
  color: #333;
57
- background: #ebedee no-repeat center right;
61
+ background-color: #ebedee;
62
+ background-position: center right;
63
+ background-repeat: no-repeat;
58
64
  background-image: url(data:image/gif;base64,R0lGODlhDAAMANUAAAE/iAJBigNFjgNEjQNFjQNDiwRHkQRHjwNHjwROlgRMlQRMlARJkgRKkgZQmAVPlgZWnQZSmgZRmAdXoAdXnwdUnAdbogdZoQhbowlhqAlepglkrAliqQtstAtqsQxyugxyuQxwuAxxuAxxtwxwtgxvtQ10vA12vA10u/8A/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACkALAAAAAAMAAwAAAY6wJQwdRoah6bP6DhEiVIdDxNEGm4yxlDpiJkwv2AmR2OhVCSJBsJ4gUQeCwOB6VAwBAXwYRAIpwBfQQA7);
59
65
  /* background-image: url(/assets/jquery-tablesorter/ice-asc.gif); */
60
66
  }
@@ -69,7 +75,7 @@
69
75
  .tablesorter-ice tfoot .tablesorter-headerSortDown,
70
76
  .tablesorter-ice tfoot .tablesorter-headerAsc,
71
77
  .tablesorter-ice tfoot .tablesorter-headerDesc {
72
- background: #ebedee;
78
+ background-color: #ebedee;
73
79
  }
74
80
 
75
81
  /* tbody */
@@ -78,10 +84,11 @@
78
84
  }
79
85
 
80
86
  /* hovered row colors */
87
+ .tablesorter-ice tbody > tr.hover > td,
81
88
  .tablesorter-ice tbody > tr:hover > td,
82
89
  .tablesorter-ice tbody > tr.even:hover > td,
83
90
  .tablesorter-ice tbody > tr.odd:hover > td {
84
- background: #ebf2fa;
91
+ background-color: #ebf2fa;
85
92
  }
86
93
 
87
94
  /* table processing indicator */
@@ -131,15 +138,15 @@
131
138
 
132
139
  /* caption */
133
140
  caption {
134
- background: #fff;
141
+ background-color: #fff;
135
142
  }
136
143
 
137
144
  /* filter widget */
138
145
  .tablesorter-ice .tablesorter-filter-row {
139
- background: #eee;
146
+ background-color: #eee;
140
147
  }
141
148
  .tablesorter-ice .tablesorter-filter-row td {
142
- background: #eee;
149
+ background-color: #eee;
143
150
  line-height: normal;
144
151
  text-align: center; /* center the input */
145
152
  -webkit-transition: line-height 0.1s ease;
@@ -179,7 +186,7 @@ caption {
179
186
  .tablesorter-ice select.tablesorter-filter {
180
187
  width: 98%;
181
188
  height: auto;
182
- margin: 4px;
189
+ margin: 0;
183
190
  padding: 4px;
184
191
  background-color: #fff;
185
192
  border: 1px solid #bbb;
@@ -62,7 +62,8 @@
62
62
  }
63
63
 
64
64
  /* hovered row colors */
65
- .tablesorter-jui tbody > tr:hover td {
65
+ .tablesorter-jui tbody > tr.hover > td,
66
+ .tablesorter-jui tbody > tr:hover > td {
66
67
  opacity: 0.7;
67
68
  filter: alpha(opacity=70);
68
69
  }
@@ -94,10 +95,10 @@
94
95
 
95
96
  /* filter widget */
96
97
  .tablesorter-jui .tablesorter-filter-row {
97
- background: transparent;
98
+ background-color: transparent;
98
99
  }
99
100
  .tablesorter-jui .tablesorter-filter-row td {
100
- background: transparent;
101
+ background-color: transparent;
101
102
  line-height: normal;
102
103
  text-align: center; /* center the input */
103
104
  -webkit-transition: line-height 0.1s ease;
@@ -68,10 +68,11 @@ Metro Dark Theme
68
68
  }
69
69
 
70
70
  /* hovered row colors */
71
+ .tablesorter-metro-dark tbody > tr.hover > td,
71
72
  .tablesorter-metro-dark tbody > tr:hover > td,
72
73
  .tablesorter-metro-dark tbody > tr.even:hover > td,
73
74
  .tablesorter-metro-dark tbody > tr.odd:hover > td {
74
- background: #bbb;
75
+ background-color: #bbb;
75
76
  color: #000;
76
77
  }
77
78
 
@@ -127,10 +128,10 @@ Metro Dark Theme
127
128
 
128
129
  /* filter widget */
129
130
  .tablesorter-metro-dark .tablesorter-filter-row {
130
- background: #eee;
131
+ background-color: #eee;
131
132
  }
132
133
  .tablesorter-metro-dark .tablesorter-filter-row td {
133
- background: #eee;
134
+ background-color: #eee;
134
135
  line-height: normal;
135
136
  text-align: center; /* center the input */
136
137
  -webkit-transition: line-height 0.1s ease;
@@ -170,7 +171,7 @@ Metro Dark Theme
170
171
  .tablesorter-metro-dark select.tablesorter-filter {
171
172
  width: 95%;
172
173
  height: auto;
173
- margin: 4px;
174
+ margin: 0;
174
175
  padding: 4px;
175
176
  background-color: #fff;
176
177
  border: 1px solid #bbb;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-tablesorter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.2
4
+ version: 1.16.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jun Lin
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-03-15 00:00:00.000000000 Z
12
+ date: 2015-03-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
166
  version: '0'
167
167
  requirements: []
168
168
  rubyforge_project:
169
- rubygems_version: 2.4.5
169
+ rubygems_version: 2.4.6
170
170
  signing_key:
171
171
  specification_version: 4
172
172
  summary: Simple integration of jquery-tablesorter (Mottie's fork) into the Rails asset