datatables-rails 1.10.3.0 → 1.10.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,7 +21,7 @@ table.dataTable tfoot th {
21
21
  table.dataTable thead th,
22
22
  table.dataTable thead td {
23
23
  padding: 10px 18px;
24
- border-bottom: 1px solid #111111;
24
+ border-bottom: 1px solid #111;
25
25
  }
26
26
  table.dataTable thead th:active,
27
27
  table.dataTable thead td:active {
@@ -30,41 +30,49 @@ table.dataTable thead td:active {
30
30
  table.dataTable tfoot th,
31
31
  table.dataTable tfoot td {
32
32
  padding: 10px 18px 6px 18px;
33
- border-top: 1px solid #111111;
33
+ border-top: 1px solid #111;
34
34
  }
35
+ table.dataTable thead .sorting,
35
36
  table.dataTable thead .sorting_asc,
36
- table.dataTable thead .sorting_desc,
37
- table.dataTable thead .sorting {
37
+ table.dataTable thead .sorting_desc {
38
38
  cursor: pointer;
39
39
  *cursor: hand;
40
40
  }
41
+ table.dataTable thead .sorting,
42
+ table.dataTable thead .sorting_asc,
43
+ table.dataTable thead .sorting_desc,
44
+ table.dataTable thead .sorting_asc_disabled,
45
+ table.dataTable thead .sorting_desc_disabled {
46
+ background-repeat: no-repeat;
47
+ background-position: center right;
48
+ }
41
49
  table.dataTable thead .sorting {
42
- background: url("sort_both.png") no-repeat center right;
50
+ background-image: image-url("sort_both.png");
43
51
  }
44
52
  table.dataTable thead .sorting_asc {
45
- background: url("sort_asc.png") no-repeat center right;
53
+ background-image: image-url("sort_asc.png");
46
54
  }
47
55
  table.dataTable thead .sorting_desc {
48
- background: url("sort_desc.png") no-repeat center right;
56
+ background-image: image-url("sort_desc.png");
49
57
  }
50
58
  table.dataTable thead .sorting_asc_disabled {
51
- background: url("sort_asc_disabled.png") no-repeat center right;
59
+ background-image: image-url("sort_asc_disabled.png");
52
60
  }
53
61
  table.dataTable thead .sorting_desc_disabled {
54
- background: url("sort_desc_disabled.png") no-repeat center right;
62
+ background-image: image-url("sort_desc_disabled.png");
55
63
  }
56
64
  table.dataTable tbody tr {
57
- background-color: white;
65
+ background-color: #ffffff;
58
66
  }
59
67
  table.dataTable tbody tr.selected {
60
- background-color: #b0bed9;
68
+ background-color: #B0BED9;
61
69
  }
62
70
  table.dataTable tbody th,
63
71
  table.dataTable tbody td {
64
72
  padding: 8px 10px;
65
73
  }
66
74
  table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
67
- border-top: 1px solid #dddddd;
75
+ border-top: 1px solid #ddd;
68
76
  }
69
77
  table.dataTable.row-border tbody tr:first-child th,
70
78
  table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
@@ -72,12 +80,12 @@ table.dataTable.display tbody tr:first-child td {
72
80
  border-top: none;
73
81
  }
74
82
  table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
75
- border-top: 1px solid #dddddd;
76
- border-right: 1px solid #dddddd;
83
+ border-top: 1px solid #ddd;
84
+ border-right: 1px solid #ddd;
77
85
  }
78
86
  table.dataTable.cell-border tbody tr th:first-child,
79
87
  table.dataTable.cell-border tbody tr td:first-child {
80
- border-left: 1px solid #dddddd;
88
+ border-left: 1px solid #ddd;
81
89
  }
82
90
  table.dataTable.cell-border tbody tr:first-child th,
83
91
  table.dataTable.cell-border tbody tr:first-child td {
@@ -89,18 +97,10 @@ table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
89
97
  table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
90
98
  background-color: #abb9d3;
91
99
  }
92
- table.dataTable.hover tbody tr:hover,
93
- table.dataTable.hover tbody tr.odd:hover,
94
- table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
95
- table.dataTable.display tbody tr.odd:hover,
96
- table.dataTable.display tbody tr.even:hover {
100
+ table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
97
101
  background-color: whitesmoke;
98
102
  }
99
- table.dataTable.hover tbody tr:hover.selected,
100
- table.dataTable.hover tbody tr.odd:hover.selected,
101
- table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected,
102
- table.dataTable.display tbody tr.odd:hover.selected,
103
- table.dataTable.display tbody tr.even:hover.selected {
103
+ table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
104
104
  background-color: #a9b7d1;
105
105
  }
106
106
  table.dataTable.order-column tbody tr > .sorting_1,
@@ -153,65 +153,41 @@ table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.ord
153
153
  table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
154
154
  background-color: #afbdd8;
155
155
  }
156
- table.dataTable.display tbody tr:hover > .sorting_1,
157
- table.dataTable.display tbody tr.odd:hover > .sorting_1,
158
- table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
159
- table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
160
- table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
156
+ table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
161
157
  background-color: #eaeaea;
162
158
  }
163
- table.dataTable.display tbody tr:hover > .sorting_2,
164
- table.dataTable.display tbody tr.odd:hover > .sorting_2,
165
- table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
166
- table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
167
- table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
159
+ table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
168
160
  background-color: #ebebeb;
169
161
  }
170
- table.dataTable.display tbody tr:hover > .sorting_3,
171
- table.dataTable.display tbody tr.odd:hover > .sorting_3,
172
- table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
173
- table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
174
- table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
162
+ table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
175
163
  background-color: #eeeeee;
176
164
  }
177
- table.dataTable.display tbody tr:hover.selected > .sorting_1,
178
- table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
179
- table.dataTable.display tbody tr.even:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
180
- table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
181
- table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1 {
165
+ table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
182
166
  background-color: #a1aec7;
183
167
  }
184
- table.dataTable.display tbody tr:hover.selected > .sorting_2,
185
- table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
186
- table.dataTable.display tbody tr.even:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
187
- table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
188
- table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2 {
168
+ table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
189
169
  background-color: #a2afc8;
190
170
  }
191
- table.dataTable.display tbody tr:hover.selected > .sorting_3,
192
- table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
193
- table.dataTable.display tbody tr.even:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
194
- table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
195
- table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
171
+ table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
196
172
  background-color: #a4b2cb;
197
173
  }
198
174
  table.dataTable.no-footer {
199
- border-bottom: 1px solid #111111;
175
+ border-bottom: 1px solid #111;
200
176
  }
201
177
  table.dataTable.nowrap th, table.dataTable.nowrap td {
202
178
  white-space: nowrap;
203
179
  }
204
180
  table.dataTable.compact thead th,
205
181
  table.dataTable.compact thead td {
206
- padding: 5px 9px;
182
+ padding: 4px 17px 4px 4px;
207
183
  }
208
184
  table.dataTable.compact tfoot th,
209
185
  table.dataTable.compact tfoot td {
210
- padding: 5px 9px 3px 9px;
186
+ padding: 4px;
211
187
  }
212
188
  table.dataTable.compact tbody th,
213
189
  table.dataTable.compact tbody td {
214
- padding: 4px 5px;
190
+ padding: 4px;
215
191
  }
216
192
  table.dataTable th.dt-left,
217
193
  table.dataTable td.dt-left {
@@ -332,24 +308,24 @@ table.dataTable td {
332
308
  text-decoration: none !important;
333
309
  cursor: pointer;
334
310
  *cursor: hand;
335
- color: #333333 !important;
311
+ color: #333 !important;
336
312
  border: 1px solid transparent;
337
313
  }
338
314
  .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
339
- color: #333333 !important;
315
+ color: #333 !important;
340
316
  border: 1px solid #cacaca;
341
317
  background-color: white;
342
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));
318
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
343
319
  /* Chrome,Safari4+ */
344
- background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);
320
+ background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
345
321
  /* Chrome10+,Safari5.1+ */
346
- background: -moz-linear-gradient(top, white 0%, gainsboro 100%);
322
+ background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
347
323
  /* FF3.6+ */
348
- background: -ms-linear-gradient(top, white 0%, gainsboro 100%);
324
+ background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
349
325
  /* IE10+ */
350
- background: -o-linear-gradient(top, white 0%, gainsboro 100%);
326
+ background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
351
327
  /* Opera 11.10+ */
352
- background: linear-gradient(to bottom, white 0%, gainsboro 100%);
328
+ background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
353
329
  /* W3C */
354
330
  }
355
331
  .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
@@ -361,19 +337,19 @@ table.dataTable td {
361
337
  }
362
338
  .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
363
339
  color: white !important;
364
- border: 1px solid #111111;
340
+ border: 1px solid #111;
365
341
  background-color: #585858;
366
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
342
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
367
343
  /* Chrome,Safari4+ */
368
- background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);
344
+ background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
369
345
  /* Chrome10+,Safari5.1+ */
370
- background: -moz-linear-gradient(top, #585858 0%, #111111 100%);
346
+ background: -moz-linear-gradient(top, #585858 0%, #111 100%);
371
347
  /* FF3.6+ */
372
- background: -ms-linear-gradient(top, #585858 0%, #111111 100%);
348
+ background: -ms-linear-gradient(top, #585858 0%, #111 100%);
373
349
  /* IE10+ */
374
- background: -o-linear-gradient(top, #585858 0%, #111111 100%);
350
+ background: -o-linear-gradient(top, #585858 0%, #111 100%);
375
351
  /* Opera 11.10+ */
376
- background: linear-gradient(to bottom, #585858 0%, #111111 100%);
352
+ background: linear-gradient(to bottom, #585858 0%, #111 100%);
377
353
  /* W3C */
378
354
  }
379
355
  .dataTables_wrapper .dataTables_paginate .paginate_button:active {
@@ -393,6 +369,9 @@ table.dataTable td {
393
369
  /* W3C */
394
370
  box-shadow: inset 0 0 3px #111;
395
371
  }
372
+ .dataTables_wrapper .dataTables_paginate .ellipsis {
373
+ padding: 0 1em;
374
+ }
396
375
  .dataTables_wrapper .dataTables_processing {
397
376
  position: absolute;
398
377
  top: 50%;
@@ -423,7 +402,7 @@ table.dataTable td {
423
402
  .dataTables_wrapper .dataTables_info,
424
403
  .dataTables_wrapper .dataTables_processing,
425
404
  .dataTables_wrapper .dataTables_paginate {
426
- color: #333333;
405
+ color: #333;
427
406
  }
428
407
  .dataTables_wrapper .dataTables_scroll {
429
408
  clear: both;
@@ -440,7 +419,7 @@ table.dataTable td {
440
419
  padding: 0 !important;
441
420
  }
442
421
  .dataTables_wrapper.no-footer .dataTables_scrollBody {
443
- border-bottom: 1px solid #111111;
422
+ border-bottom: 1px solid #111;
444
423
  }
445
424
  .dataTables_wrapper.no-footer div.dataTables_scrollHead table,
446
425
  .dataTables_wrapper.no-footer div.dataTables_scrollBody table {
@@ -51,10 +51,10 @@ table.dataTable thead th.ui-state-default:last-child {
51
51
  border-right-width: 1px;
52
52
  }
53
53
  table.dataTable tbody tr {
54
- background-color: white;
54
+ background-color: #ffffff;
55
55
  }
56
56
  table.dataTable tbody tr.selected {
57
- background-color: #b0bed9;
57
+ background-color: #B0BED9;
58
58
  }
59
59
  table.dataTable tbody th,
60
60
  table.dataTable tbody td {
@@ -70,7 +70,7 @@ table.dataTable td.right {
70
70
  text-align: right;
71
71
  }
72
72
  table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
73
- border-top: 1px solid #dddddd;
73
+ border-top: 1px solid #ddd;
74
74
  }
75
75
  table.dataTable.row-border tbody tr:first-child th,
76
76
  table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
@@ -78,12 +78,12 @@ table.dataTable.display tbody tr:first-child td {
78
78
  border-top: none;
79
79
  }
80
80
  table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
81
- border-top: 1px solid #dddddd;
82
- border-right: 1px solid #dddddd;
81
+ border-top: 1px solid #ddd;
82
+ border-right: 1px solid #ddd;
83
83
  }
84
84
  table.dataTable.cell-border tbody tr th:first-child,
85
85
  table.dataTable.cell-border tbody tr td:first-child {
86
- border-left: 1px solid #dddddd;
86
+ border-left: 1px solid #ddd;
87
87
  }
88
88
  table.dataTable.cell-border tbody tr:first-child th,
89
89
  table.dataTable.cell-border tbody tr:first-child td {
@@ -201,6 +201,92 @@ table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
201
201
  table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
202
202
  background-color: #a4b2cb;
203
203
  }
204
+ table.dataTable.nowrap th, table.dataTable.nowrap td {
205
+ white-space: nowrap;
206
+ }
207
+ table.dataTable.compact thead th,
208
+ table.dataTable.compact thead td {
209
+ padding: 5px 9px;
210
+ }
211
+ table.dataTable.compact tfoot th,
212
+ table.dataTable.compact tfoot td {
213
+ padding: 5px 9px 3px 9px;
214
+ }
215
+ table.dataTable.compact tbody th,
216
+ table.dataTable.compact tbody td {
217
+ padding: 4px 5px;
218
+ }
219
+ table.dataTable th.dt-left,
220
+ table.dataTable td.dt-left {
221
+ text-align: left;
222
+ }
223
+ table.dataTable th.dt-center,
224
+ table.dataTable td.dt-center,
225
+ table.dataTable td.dataTables_empty {
226
+ text-align: center;
227
+ }
228
+ table.dataTable th.dt-right,
229
+ table.dataTable td.dt-right {
230
+ text-align: right;
231
+ }
232
+ table.dataTable th.dt-justify,
233
+ table.dataTable td.dt-justify {
234
+ text-align: justify;
235
+ }
236
+ table.dataTable th.dt-nowrap,
237
+ table.dataTable td.dt-nowrap {
238
+ white-space: nowrap;
239
+ }
240
+ table.dataTable thead th.dt-head-left,
241
+ table.dataTable thead td.dt-head-left,
242
+ table.dataTable tfoot th.dt-head-left,
243
+ table.dataTable tfoot td.dt-head-left {
244
+ text-align: left;
245
+ }
246
+ table.dataTable thead th.dt-head-center,
247
+ table.dataTable thead td.dt-head-center,
248
+ table.dataTable tfoot th.dt-head-center,
249
+ table.dataTable tfoot td.dt-head-center {
250
+ text-align: center;
251
+ }
252
+ table.dataTable thead th.dt-head-right,
253
+ table.dataTable thead td.dt-head-right,
254
+ table.dataTable tfoot th.dt-head-right,
255
+ table.dataTable tfoot td.dt-head-right {
256
+ text-align: right;
257
+ }
258
+ table.dataTable thead th.dt-head-justify,
259
+ table.dataTable thead td.dt-head-justify,
260
+ table.dataTable tfoot th.dt-head-justify,
261
+ table.dataTable tfoot td.dt-head-justify {
262
+ text-align: justify;
263
+ }
264
+ table.dataTable thead th.dt-head-nowrap,
265
+ table.dataTable thead td.dt-head-nowrap,
266
+ table.dataTable tfoot th.dt-head-nowrap,
267
+ table.dataTable tfoot td.dt-head-nowrap {
268
+ white-space: nowrap;
269
+ }
270
+ table.dataTable tbody th.dt-body-left,
271
+ table.dataTable tbody td.dt-body-left {
272
+ text-align: left;
273
+ }
274
+ table.dataTable tbody th.dt-body-center,
275
+ table.dataTable tbody td.dt-body-center {
276
+ text-align: center;
277
+ }
278
+ table.dataTable tbody th.dt-body-right,
279
+ table.dataTable tbody td.dt-body-right {
280
+ text-align: right;
281
+ }
282
+ table.dataTable tbody th.dt-body-justify,
283
+ table.dataTable tbody td.dt-body-justify {
284
+ text-align: justify;
285
+ }
286
+ table.dataTable tbody th.dt-body-nowrap,
287
+ table.dataTable tbody td.dt-body-nowrap {
288
+ white-space: nowrap;
289
+ }
204
290
 
205
291
  table.dataTable,
206
292
  table.dataTable th,
@@ -248,7 +334,7 @@ table.dataTable td {
248
334
  text-decoration: none !important;
249
335
  cursor: pointer;
250
336
  *cursor: hand;
251
- color: #333333 !important;
337
+ color: #333 !important;
252
338
  border: 1px solid transparent;
253
339
  }
254
340
  .dataTables_wrapper .dataTables_paginate .fg-button:active {
@@ -292,7 +378,7 @@ table.dataTable td {
292
378
  .dataTables_wrapper .dataTables_info,
293
379
  .dataTables_wrapper .dataTables_processing,
294
380
  .dataTables_wrapper .dataTables_paginate {
295
- color: #333333;
381
+ color: #333;
296
382
  }
297
383
  .dataTables_wrapper .dataTables_scroll {
298
384
  clear: both;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datatables-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.3.0
4
+ version: 1.10.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Vincent Kurowski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-10 00:00:00.000000000 Z
11
+ date: 2015-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sass-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 3.1.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.1.1
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: bundler
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -61,20 +75,14 @@ extra_rdoc_files: []
61
75
  files:
62
76
  - LICENSE.txt
63
77
  - README.md
64
- - app/assets/images/datatables/back_disabled.png
65
- - app/assets/images/datatables/back_enabled.png
66
- - app/assets/images/datatables/back_enabled_hover.png
67
- - app/assets/images/datatables/forward_disabled.png
68
- - app/assets/images/datatables/forward_enabled.png
69
- - app/assets/images/datatables/forward_enabled_hover.png
70
78
  - app/assets/images/datatables/sort_asc.png
71
79
  - app/assets/images/datatables/sort_asc_disabled.png
72
80
  - app/assets/images/datatables/sort_both.png
73
81
  - app/assets/images/datatables/sort_desc.png
74
82
  - app/assets/images/datatables/sort_desc_disabled.png
75
83
  - app/assets/javascripts/datatables/jquery_datatables.js
76
- - app/assets/stylesheets/datatables/jquery_datatables.css
77
- - app/assets/stylesheets/datatables/jquery_datatables_themeroller.css
84
+ - app/assets/stylesheets/datatables/jquery_datatables.css.scss
85
+ - app/assets/stylesheets/datatables/jquery_datatables_themeroller.css.scss
78
86
  - lib/datatables/rails.rb
79
87
  homepage: https://github.com/svkurowski/datatables-rails
80
88
  licenses:
@@ -96,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
104
  version: '0'
97
105
  requirements: []
98
106
  rubyforge_project:
99
- rubygems_version: 2.2.2
107
+ rubygems_version: 2.4.5
100
108
  signing_key:
101
109
  specification_version: 4
102
110
  summary: DataTables assets for Rails.