my_assets 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0fd115c11453e56c208e4b4157bc99d2a5573a3c40f6b24417f7f16992f6bea
4
- data.tar.gz: f46b25e65ceb31fa8638850f5ace3dd29b8bb59139d2db5bbe85df1d37547a27
3
+ metadata.gz: 863fc2f21638f647c00b258bae6d141569e4f0f64787c8dce93e12d84825b59c
4
+ data.tar.gz: 8daf7e862637f88087d6363e7f5f3aea75664e21e4dfe976c970d9fe0e1880f7
5
5
  SHA512:
6
- metadata.gz: 4a3396d0d43e66fc424d29caf6947e42cebf07a991c40bb9d86365911080e660a95fbaad4ce8c46de91c2051452a2b5b69ee8b85f6839c029e2d76f80ea72a13
7
- data.tar.gz: 3b84ce042662cf9e334fe2f4bd83209f756d62943e82a5197bb7a76ccd4a70be558e4d37cb1b837235bf6ac053148312e1e613a3f2e805bb108cb0c4823ebe87
6
+ metadata.gz: 16a5e85fef0c1554a6ba4fefbdc88ceb1e0a9ac98ca739adc016483a6b61398559d0e1b3e74c2ecbdc56bb00ba1a7fcf7da50c4f4928a1570852aedcabb91ed8
7
+ data.tar.gz: 0110d1473158662c02e3a12fd2625a0a3054536929d321124c9d4f97161db3d8eec27af2c1387560edefa4429a0630a466866f712ac0c762fe864da3ae7e68dd
@@ -1,3 +1,3 @@
1
1
  module MyAssets
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,1004 +1 @@
1
- /*
2
- * This combined file was created by the DataTables downloader builder:
3
- * https://datatables.net/download
4
- *
5
- * To rebuild or modify this file with the latest versions of the included
6
- * software please visit:
7
- * https://datatables.net/download/#dt/dt-1.10.18/af-2.3.0/b-1.5.2/b-colvis-1.5.2/b-flash-1.5.2/b-html5-1.5.2/b-print-1.5.2/r-2.2.2
8
- *
9
- * Included libraries:
10
- * DataTables 1.10.18, AutoFill 2.3.0, Buttons 1.5.2, Column visibility 1.5.2, Flash export 1.5.2, HTML5 export 1.5.2, Print view 1.5.2, Responsive 2.2.2
11
- */
12
-
13
- /*
14
- * Table styles
15
- */
16
- table.dataTable {
17
- width: 100%;
18
- margin: 0 auto;
19
- clear: both;
20
- border-collapse: separate;
21
- border-spacing: 0;
22
- /*
23
- * Header and footer styles
24
- */
25
- /*
26
- * Body styles
27
- */
28
- }
29
- table.dataTable thead th,
30
- table.dataTable tfoot th {
31
- font-weight: bold;
32
- }
33
- table.dataTable thead th,
34
- table.dataTable thead td {
35
- padding: 10px 18px;
36
- border-bottom: 1px solid #111;
37
- }
38
- table.dataTable thead th:active,
39
- table.dataTable thead td:active {
40
- outline: none;
41
- }
42
- table.dataTable tfoot th,
43
- table.dataTable tfoot td {
44
- padding: 10px 18px 6px 18px;
45
- border-top: 1px solid #111;
46
- }
47
- table.dataTable thead .sorting,
48
- table.dataTable thead .sorting_asc,
49
- table.dataTable thead .sorting_desc,
50
- table.dataTable thead .sorting_asc_disabled,
51
- table.dataTable thead .sorting_desc_disabled {
52
- cursor: pointer;
53
- *cursor: hand;
54
- background-repeat: no-repeat;
55
- background-position: center right;
56
- }
57
- table.dataTable thead .sorting {
58
- background-image: url("DataTables-1.10.18/images/sort_both.png");
59
- }
60
- table.dataTable thead .sorting_asc {
61
- background-image: url("DataTables-1.10.18/images/sort_asc.png");
62
- }
63
- table.dataTable thead .sorting_desc {
64
- background-image: url("DataTables-1.10.18/images/sort_desc.png");
65
- }
66
- table.dataTable thead .sorting_asc_disabled {
67
- background-image: url("DataTables-1.10.18/images/sort_asc_disabled.png");
68
- }
69
- table.dataTable thead .sorting_desc_disabled {
70
- background-image: url("DataTables-1.10.18/images/sort_desc_disabled.png");
71
- }
72
- table.dataTable tbody tr {
73
- background-color: #ffffff;
74
- }
75
- table.dataTable tbody tr.selected {
76
- background-color: #B0BED9;
77
- }
78
- table.dataTable tbody th,
79
- table.dataTable tbody td {
80
- padding: 8px 10px;
81
- }
82
- table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
83
- border-top: 1px solid #ddd;
84
- }
85
- table.dataTable.row-border tbody tr:first-child th,
86
- table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
87
- table.dataTable.display tbody tr:first-child td {
88
- border-top: none;
89
- }
90
- table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
91
- border-top: 1px solid #ddd;
92
- border-right: 1px solid #ddd;
93
- }
94
- table.dataTable.cell-border tbody tr th:first-child,
95
- table.dataTable.cell-border tbody tr td:first-child {
96
- border-left: 1px solid #ddd;
97
- }
98
- table.dataTable.cell-border tbody tr:first-child th,
99
- table.dataTable.cell-border tbody tr:first-child td {
100
- border-top: none;
101
- }
102
- table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
103
- background-color: #f9f9f9;
104
- }
105
- table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
106
- background-color: #acbad4;
107
- }
108
- table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
109
- background-color: #f6f6f6;
110
- }
111
- table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
112
- background-color: #aab7d1;
113
- }
114
- table.dataTable.order-column tbody tr > .sorting_1,
115
- table.dataTable.order-column tbody tr > .sorting_2,
116
- table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
117
- table.dataTable.display tbody tr > .sorting_2,
118
- table.dataTable.display tbody tr > .sorting_3 {
119
- background-color: #fafafa;
120
- }
121
- table.dataTable.order-column tbody tr.selected > .sorting_1,
122
- table.dataTable.order-column tbody tr.selected > .sorting_2,
123
- table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
124
- table.dataTable.display tbody tr.selected > .sorting_2,
125
- table.dataTable.display tbody tr.selected > .sorting_3 {
126
- background-color: #acbad5;
127
- }
128
- table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
129
- background-color: #f1f1f1;
130
- }
131
- table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
132
- background-color: #f3f3f3;
133
- }
134
- table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
135
- background-color: whitesmoke;
136
- }
137
- table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
138
- background-color: #a6b4cd;
139
- }
140
- table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
141
- background-color: #a8b5cf;
142
- }
143
- table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
144
- background-color: #a9b7d1;
145
- }
146
- table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
147
- background-color: #fafafa;
148
- }
149
- table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
150
- background-color: #fcfcfc;
151
- }
152
- table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
153
- background-color: #fefefe;
154
- }
155
- table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
156
- background-color: #acbad5;
157
- }
158
- table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
159
- background-color: #aebcd6;
160
- }
161
- table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
162
- background-color: #afbdd8;
163
- }
164
- table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
165
- background-color: #eaeaea;
166
- }
167
- table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
168
- background-color: #ececec;
169
- }
170
- table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
171
- background-color: #efefef;
172
- }
173
- table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
174
- background-color: #a2aec7;
175
- }
176
- table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
177
- background-color: #a3b0c9;
178
- }
179
- table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
180
- background-color: #a5b2cb;
181
- }
182
- table.dataTable.no-footer {
183
- border-bottom: 1px solid #111;
184
- }
185
- table.dataTable.nowrap th, table.dataTable.nowrap td {
186
- white-space: nowrap;
187
- }
188
- table.dataTable.compact thead th,
189
- table.dataTable.compact thead td {
190
- padding: 4px 17px 4px 4px;
191
- }
192
- table.dataTable.compact tfoot th,
193
- table.dataTable.compact tfoot td {
194
- padding: 4px;
195
- }
196
- table.dataTable.compact tbody th,
197
- table.dataTable.compact tbody td {
198
- padding: 4px;
199
- }
200
- table.dataTable th.dt-left,
201
- table.dataTable td.dt-left {
202
- text-align: left;
203
- }
204
- table.dataTable th.dt-center,
205
- table.dataTable td.dt-center,
206
- table.dataTable td.dataTables_empty {
207
- text-align: center;
208
- }
209
- table.dataTable th.dt-right,
210
- table.dataTable td.dt-right {
211
- text-align: right;
212
- }
213
- table.dataTable th.dt-justify,
214
- table.dataTable td.dt-justify {
215
- text-align: justify;
216
- }
217
- table.dataTable th.dt-nowrap,
218
- table.dataTable td.dt-nowrap {
219
- white-space: nowrap;
220
- }
221
- table.dataTable thead th.dt-head-left,
222
- table.dataTable thead td.dt-head-left,
223
- table.dataTable tfoot th.dt-head-left,
224
- table.dataTable tfoot td.dt-head-left {
225
- text-align: left;
226
- }
227
- table.dataTable thead th.dt-head-center,
228
- table.dataTable thead td.dt-head-center,
229
- table.dataTable tfoot th.dt-head-center,
230
- table.dataTable tfoot td.dt-head-center {
231
- text-align: center;
232
- }
233
- table.dataTable thead th.dt-head-right,
234
- table.dataTable thead td.dt-head-right,
235
- table.dataTable tfoot th.dt-head-right,
236
- table.dataTable tfoot td.dt-head-right {
237
- text-align: right;
238
- }
239
- table.dataTable thead th.dt-head-justify,
240
- table.dataTable thead td.dt-head-justify,
241
- table.dataTable tfoot th.dt-head-justify,
242
- table.dataTable tfoot td.dt-head-justify {
243
- text-align: justify;
244
- }
245
- table.dataTable thead th.dt-head-nowrap,
246
- table.dataTable thead td.dt-head-nowrap,
247
- table.dataTable tfoot th.dt-head-nowrap,
248
- table.dataTable tfoot td.dt-head-nowrap {
249
- white-space: nowrap;
250
- }
251
- table.dataTable tbody th.dt-body-left,
252
- table.dataTable tbody td.dt-body-left {
253
- text-align: left;
254
- }
255
- table.dataTable tbody th.dt-body-center,
256
- table.dataTable tbody td.dt-body-center {
257
- text-align: center;
258
- }
259
- table.dataTable tbody th.dt-body-right,
260
- table.dataTable tbody td.dt-body-right {
261
- text-align: right;
262
- }
263
- table.dataTable tbody th.dt-body-justify,
264
- table.dataTable tbody td.dt-body-justify {
265
- text-align: justify;
266
- }
267
- table.dataTable tbody th.dt-body-nowrap,
268
- table.dataTable tbody td.dt-body-nowrap {
269
- white-space: nowrap;
270
- }
271
-
272
- table.dataTable,
273
- table.dataTable th,
274
- table.dataTable td {
275
- box-sizing: content-box;
276
- }
277
-
278
- /*
279
- * Control feature layout
280
- */
281
- .dataTables_wrapper {
282
- position: relative;
283
- clear: both;
284
- *zoom: 1;
285
- zoom: 1;
286
- }
287
- .dataTables_wrapper .dataTables_length {
288
- float: left;
289
- }
290
- .dataTables_wrapper .dataTables_filter {
291
- float: right;
292
- text-align: right;
293
- }
294
- .dataTables_wrapper .dataTables_filter input {
295
- margin-left: 0.5em;
296
- }
297
- .dataTables_wrapper .dataTables_info {
298
- clear: both;
299
- float: left;
300
- padding-top: 0.755em;
301
- }
302
- .dataTables_wrapper .dataTables_paginate {
303
- float: right;
304
- text-align: right;
305
- padding-top: 0.25em;
306
- }
307
- .dataTables_wrapper .dataTables_paginate .paginate_button {
308
- box-sizing: border-box;
309
- display: inline-block;
310
- min-width: 1.5em;
311
- padding: 0.5em 1em;
312
- margin-left: 2px;
313
- text-align: center;
314
- text-decoration: none !important;
315
- cursor: pointer;
316
- *cursor: hand;
317
- color: #333 !important;
318
- border: 1px solid transparent;
319
- border-radius: 2px;
320
- }
321
- .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
322
- color: #333 !important;
323
- border: 1px solid #979797;
324
- background-color: white;
325
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
326
- /* Chrome,Safari4+ */
327
- background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
328
- /* Chrome10+,Safari5.1+ */
329
- background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
330
- /* FF3.6+ */
331
- background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
332
- /* IE10+ */
333
- background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
334
- /* Opera 11.10+ */
335
- background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
336
- /* W3C */
337
- }
338
- .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
339
- cursor: default;
340
- color: #666 !important;
341
- border: 1px solid transparent;
342
- background: transparent;
343
- box-shadow: none;
344
- }
345
- .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
346
- color: white !important;
347
- border: 1px solid #111;
348
- background-color: #585858;
349
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
350
- /* Chrome,Safari4+ */
351
- background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
352
- /* Chrome10+,Safari5.1+ */
353
- background: -moz-linear-gradient(top, #585858 0%, #111 100%);
354
- /* FF3.6+ */
355
- background: -ms-linear-gradient(top, #585858 0%, #111 100%);
356
- /* IE10+ */
357
- background: -o-linear-gradient(top, #585858 0%, #111 100%);
358
- /* Opera 11.10+ */
359
- background: linear-gradient(to bottom, #585858 0%, #111 100%);
360
- /* W3C */
361
- }
362
- .dataTables_wrapper .dataTables_paginate .paginate_button:active {
363
- outline: none;
364
- background-color: #2b2b2b;
365
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
366
- /* Chrome,Safari4+ */
367
- background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
368
- /* Chrome10+,Safari5.1+ */
369
- background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
370
- /* FF3.6+ */
371
- background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
372
- /* IE10+ */
373
- background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
374
- /* Opera 11.10+ */
375
- background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
376
- /* W3C */
377
- box-shadow: inset 0 0 3px #111;
378
- }
379
- .dataTables_wrapper .dataTables_paginate .ellipsis {
380
- padding: 0 1em;
381
- }
382
- .dataTables_wrapper .dataTables_processing {
383
- position: absolute;
384
- top: 50%;
385
- left: 50%;
386
- width: 100%;
387
- height: 40px;
388
- margin-left: -50%;
389
- margin-top: -25px;
390
- padding-top: 20px;
391
- text-align: center;
392
- font-size: 1.2em;
393
- background-color: white;
394
- background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
395
- background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
396
- background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
397
- background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
398
- background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
399
- background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
400
- }
401
- .dataTables_wrapper .dataTables_length,
402
- .dataTables_wrapper .dataTables_filter,
403
- .dataTables_wrapper .dataTables_info,
404
- .dataTables_wrapper .dataTables_processing,
405
- .dataTables_wrapper .dataTables_paginate {
406
- color: #333;
407
- }
408
- .dataTables_wrapper .dataTables_scroll {
409
- clear: both;
410
- }
411
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
412
- *margin-top: -1px;
413
- -webkit-overflow-scrolling: touch;
414
- }
415
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
416
- vertical-align: middle;
417
- }
418
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
419
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
420
- .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
421
- height: 0;
422
- overflow: hidden;
423
- margin: 0 !important;
424
- padding: 0 !important;
425
- }
426
- .dataTables_wrapper.no-footer .dataTables_scrollBody {
427
- border-bottom: 1px solid #111;
428
- }
429
- .dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
430
- .dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
431
- border-bottom: none;
432
- }
433
- .dataTables_wrapper:after {
434
- visibility: hidden;
435
- display: block;
436
- content: "";
437
- clear: both;
438
- height: 0;
439
- }
440
-
441
- @media screen and (max-width: 767px) {
442
- .dataTables_wrapper .dataTables_info,
443
- .dataTables_wrapper .dataTables_paginate {
444
- float: none;
445
- text-align: center;
446
- }
447
- .dataTables_wrapper .dataTables_paginate {
448
- margin-top: 0.5em;
449
- }
450
- }
451
- @media screen and (max-width: 640px) {
452
- .dataTables_wrapper .dataTables_length,
453
- .dataTables_wrapper .dataTables_filter {
454
- float: none;
455
- text-align: center;
456
- }
457
- .dataTables_wrapper .dataTables_filter {
458
- margin-top: 0.5em;
459
- }
460
- }
461
-
462
-
463
- div.dt-autofill-handle{position:absolute;height:8px;width:8px;z-index:102;box-sizing:border-box;border:1px solid #316ad1;background:linear-gradient(to bottom, #abcffb 0%, #4989de 100%)}div.dt-autofill-select{position:absolute;z-index:1001;background-color:#4989de;background-image:repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255,255,255,0.5) 5px, rgba(255,255,255,0.5) 10px)}div.dt-autofill-select.top,div.dt-autofill-select.bottom{height:3px;margin-top:-1px}div.dt-autofill-select.left,div.dt-autofill-select.right{width:3px;margin-left:-1px}div.dt-autofill-list{position:fixed;top:50%;left:50%;width:500px;margin-left:-250px;background-color:white;border-radius:6px;box-shadow:0 0 5px #555;border:2px solid #444;z-index:11;box-sizing:border-box;padding:1.5em 2em}div.dt-autofill-list ul{display:table;margin:0;padding:0;list-style:none;width:100%}div.dt-autofill-list ul li{display:table-row}div.dt-autofill-list ul li:last-child div.dt-autofill-question,div.dt-autofill-list ul li:last-child div.dt-autofill-button{border-bottom:none}div.dt-autofill-list ul li:hover{background-color:#f6f6f6}div.dt-autofill-list div.dt-autofill-question{display:table-cell;padding:0.5em 0;border-bottom:1px solid #ccc}div.dt-autofill-list div.dt-autofill-question input[type=number]{padding:6px;width:30px;margin:-2px 0}div.dt-autofill-list div.dt-autofill-button{display:table-cell;padding:0.5em 0;border-bottom:1px solid #ccc}div.dt-autofill-list div.dt-autofill-button button{color:white;margin:0;padding:6px 12px;text-align:center;border:1px solid #2e6da4;background-color:#337ab7;border-radius:4px;cursor:pointer;vertical-align:middle}div.dt-autofill-background{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);background:radial-gradient(ellipse farthest-corner at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);z-index:10}
464
-
465
-
466
- @keyframes dtb-spinner {
467
- 100% {
468
- transform: rotate(360deg);
469
- }
470
- }
471
- @-o-keyframes dtb-spinner {
472
- 100% {
473
- -o-transform: rotate(360deg);
474
- transform: rotate(360deg);
475
- }
476
- }
477
- @-ms-keyframes dtb-spinner {
478
- 100% {
479
- -ms-transform: rotate(360deg);
480
- transform: rotate(360deg);
481
- }
482
- }
483
- @-webkit-keyframes dtb-spinner {
484
- 100% {
485
- -webkit-transform: rotate(360deg);
486
- transform: rotate(360deg);
487
- }
488
- }
489
- @-moz-keyframes dtb-spinner {
490
- 100% {
491
- -moz-transform: rotate(360deg);
492
- transform: rotate(360deg);
493
- }
494
- }
495
- div.dt-button-info {
496
- position: fixed;
497
- top: 50%;
498
- left: 50%;
499
- width: 400px;
500
- margin-top: -100px;
501
- margin-left: -200px;
502
- background-color: white;
503
- border: 2px solid #111;
504
- box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
505
- border-radius: 3px;
506
- text-align: center;
507
- z-index: 21;
508
- }
509
- div.dt-button-info h2 {
510
- padding: 0.5em;
511
- margin: 0;
512
- font-weight: normal;
513
- border-bottom: 1px solid #ddd;
514
- background-color: #f3f3f3;
515
- }
516
- div.dt-button-info > div {
517
- padding: 1em;
518
- }
519
-
520
- button.dt-button,
521
- div.dt-button,
522
- a.dt-button {
523
- position: relative;
524
- display: inline-block;
525
- box-sizing: border-box;
526
- margin-right: 0.333em;
527
- margin-bottom: 0.333em;
528
- padding: 0.5em 1em;
529
- border: 1px solid #999;
530
- border-radius: 2px;
531
- cursor: pointer;
532
- font-size: 0.88em;
533
- line-height: 1.6em;
534
- color: black;
535
- white-space: nowrap;
536
- overflow: hidden;
537
- background-color: #e9e9e9;
538
- /* Fallback */
539
- background-image: -webkit-linear-gradient(top, white 0%, #e9e9e9 100%);
540
- /* Chrome 10+, Saf5.1+, iOS 5+ */
541
- background-image: -moz-linear-gradient(top, white 0%, #e9e9e9 100%);
542
- /* FF3.6 */
543
- background-image: -ms-linear-gradient(top, white 0%, #e9e9e9 100%);
544
- /* IE10 */
545
- background-image: -o-linear-gradient(top, white 0%, #e9e9e9 100%);
546
- /* Opera 11.10+ */
547
- background-image: linear-gradient(to bottom, white 0%, #e9e9e9 100%);
548
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#e9e9e9');
549
- -webkit-user-select: none;
550
- -moz-user-select: none;
551
- -ms-user-select: none;
552
- user-select: none;
553
- text-decoration: none;
554
- outline: none;
555
- }
556
- button.dt-button.disabled,
557
- div.dt-button.disabled,
558
- a.dt-button.disabled {
559
- color: #999;
560
- border: 1px solid #d0d0d0;
561
- cursor: default;
562
- background-color: #f9f9f9;
563
- /* Fallback */
564
- background-image: -webkit-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
565
- /* Chrome 10+, Saf5.1+, iOS 5+ */
566
- background-image: -moz-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
567
- /* FF3.6 */
568
- background-image: -ms-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
569
- /* IE10 */
570
- background-image: -o-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
571
- /* Opera 11.10+ */
572
- background-image: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
573
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#ffffff', EndColorStr='#f9f9f9');
574
- }
575
- button.dt-button:active:not(.disabled), button.dt-button.active:not(.disabled),
576
- div.dt-button:active:not(.disabled),
577
- div.dt-button.active:not(.disabled),
578
- a.dt-button:active:not(.disabled),
579
- a.dt-button.active:not(.disabled) {
580
- background-color: #e2e2e2;
581
- /* Fallback */
582
- background-image: -webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
583
- /* Chrome 10+, Saf5.1+, iOS 5+ */
584
- background-image: -moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
585
- /* FF3.6 */
586
- background-image: -ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
587
- /* IE10 */
588
- background-image: -o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
589
- /* Opera 11.10+ */
590
- background-image: linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 100%);
591
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#e2e2e2');
592
- box-shadow: inset 1px 1px 3px #999999;
593
- }
594
- button.dt-button:active:not(.disabled):hover:not(.disabled), button.dt-button.active:not(.disabled):hover:not(.disabled),
595
- div.dt-button:active:not(.disabled):hover:not(.disabled),
596
- div.dt-button.active:not(.disabled):hover:not(.disabled),
597
- a.dt-button:active:not(.disabled):hover:not(.disabled),
598
- a.dt-button.active:not(.disabled):hover:not(.disabled) {
599
- box-shadow: inset 1px 1px 3px #999999;
600
- background-color: #cccccc;
601
- /* Fallback */
602
- background-image: -webkit-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
603
- /* Chrome 10+, Saf5.1+, iOS 5+ */
604
- background-image: -moz-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
605
- /* FF3.6 */
606
- background-image: -ms-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
607
- /* IE10 */
608
- background-image: -o-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
609
- /* Opera 11.10+ */
610
- background-image: linear-gradient(to bottom, #eaeaea 0%, #cccccc 100%);
611
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#eaeaea', EndColorStr='#cccccc');
612
- }
613
- button.dt-button:hover,
614
- div.dt-button:hover,
615
- a.dt-button:hover {
616
- text-decoration: none;
617
- }
618
- button.dt-button:hover:not(.disabled),
619
- div.dt-button:hover:not(.disabled),
620
- a.dt-button:hover:not(.disabled) {
621
- border: 1px solid #666;
622
- background-color: #e0e0e0;
623
- /* Fallback */
624
- background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
625
- /* Chrome 10+, Saf5.1+, iOS 5+ */
626
- background-image: -moz-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
627
- /* FF3.6 */
628
- background-image: -ms-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
629
- /* IE10 */
630
- background-image: -o-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
631
- /* Opera 11.10+ */
632
- background-image: linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);
633
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9', EndColorStr='#e0e0e0');
634
- }
635
- button.dt-button:focus:not(.disabled),
636
- div.dt-button:focus:not(.disabled),
637
- a.dt-button:focus:not(.disabled) {
638
- border: 1px solid #426c9e;
639
- text-shadow: 0 1px 0 #c4def1;
640
- outline: none;
641
- background-color: #79ace9;
642
- /* Fallback */
643
- background-image: -webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);
644
- /* Chrome 10+, Saf5.1+, iOS 5+ */
645
- background-image: -moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);
646
- /* FF3.6 */
647
- background-image: -ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);
648
- /* IE10 */
649
- background-image: -o-linear-gradient(top, #bddef4 0%, #79ace9 100%);
650
- /* Opera 11.10+ */
651
- background-image: linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);
652
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#bddef4', EndColorStr='#79ace9');
653
- }
654
-
655
- .dt-button embed {
656
- outline: none;
657
- }
658
-
659
- div.dt-buttons {
660
- position: relative;
661
- float: left;
662
- }
663
- div.dt-buttons.buttons-right {
664
- float: right;
665
- }
666
-
667
- div.dt-button-collection {
668
- position: absolute;
669
- top: 0;
670
- left: 0;
671
- width: 150px;
672
- margin-top: 3px;
673
- padding: 8px 8px 4px 8px;
674
- border: 1px solid #ccc;
675
- border: 1px solid rgba(0, 0, 0, 0.4);
676
- background-color: white;
677
- overflow: hidden;
678
- z-index: 2002;
679
- border-radius: 5px;
680
- box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
681
- -webkit-column-gap: 8px;
682
- -moz-column-gap: 8px;
683
- -ms-column-gap: 8px;
684
- -o-column-gap: 8px;
685
- column-gap: 8px;
686
- }
687
- div.dt-button-collection button.dt-button,
688
- div.dt-button-collection div.dt-button,
689
- div.dt-button-collection a.dt-button {
690
- position: relative;
691
- left: 0;
692
- right: 0;
693
- width: 100%;
694
- display: block;
695
- float: none;
696
- margin-bottom: 4px;
697
- margin-right: 0;
698
- }
699
- div.dt-button-collection button.dt-button:active:not(.disabled), div.dt-button-collection button.dt-button.active:not(.disabled),
700
- div.dt-button-collection div.dt-button:active:not(.disabled),
701
- div.dt-button-collection div.dt-button.active:not(.disabled),
702
- div.dt-button-collection a.dt-button:active:not(.disabled),
703
- div.dt-button-collection a.dt-button.active:not(.disabled) {
704
- background-color: #dadada;
705
- /* Fallback */
706
- background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
707
- /* Chrome 10+, Saf5.1+, iOS 5+ */
708
- background-image: -moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
709
- /* FF3.6 */
710
- background-image: -ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
711
- /* IE10 */
712
- background-image: -o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
713
- /* Opera 11.10+ */
714
- background-image: linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);
715
- filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0', EndColorStr='#dadada');
716
- box-shadow: inset 1px 1px 3px #666;
717
- }
718
- div.dt-button-collection.fixed {
719
- position: fixed;
720
- top: 50%;
721
- left: 50%;
722
- margin-left: -75px;
723
- border-radius: 0;
724
- }
725
- div.dt-button-collection.fixed.two-column {
726
- margin-left: -150px;
727
- }
728
- div.dt-button-collection.fixed.three-column {
729
- margin-left: -225px;
730
- }
731
- div.dt-button-collection.fixed.four-column {
732
- margin-left: -300px;
733
- }
734
- div.dt-button-collection > * {
735
- -webkit-column-break-inside: avoid;
736
- break-inside: avoid;
737
- }
738
- div.dt-button-collection.two-column {
739
- width: 300px;
740
- padding-bottom: 1px;
741
- -webkit-column-count: 2;
742
- -moz-column-count: 2;
743
- -ms-column-count: 2;
744
- -o-column-count: 2;
745
- column-count: 2;
746
- }
747
- div.dt-button-collection.three-column {
748
- width: 450px;
749
- padding-bottom: 1px;
750
- -webkit-column-count: 3;
751
- -moz-column-count: 3;
752
- -ms-column-count: 3;
753
- -o-column-count: 3;
754
- column-count: 3;
755
- }
756
- div.dt-button-collection.four-column {
757
- width: 600px;
758
- padding-bottom: 1px;
759
- -webkit-column-count: 4;
760
- -moz-column-count: 4;
761
- -ms-column-count: 4;
762
- -o-column-count: 4;
763
- column-count: 4;
764
- }
765
- div.dt-button-collection .dt-button {
766
- border-radius: 0;
767
- }
768
-
769
- div.dt-button-background {
770
- position: fixed;
771
- top: 0;
772
- left: 0;
773
- width: 100%;
774
- height: 100%;
775
- background: rgba(0, 0, 0, 0.7);
776
- /* Fallback */
777
- background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
778
- /* IE10 Consumer Preview */
779
- background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
780
- /* Firefox */
781
- background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
782
- /* Opera */
783
- background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
784
- /* Webkit (Safari/Chrome 10) */
785
- background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
786
- /* Webkit (Chrome 11+) */
787
- background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
788
- /* W3C Markup, IE10 Release Preview */
789
- z-index: 2001;
790
- }
791
-
792
- @media screen and (max-width: 640px) {
793
- div.dt-buttons {
794
- float: none !important;
795
- text-align: center;
796
- }
797
- }
798
- button.dt-button.processing,
799
- div.dt-button.processing,
800
- a.dt-button.processing {
801
- color: rgba(0, 0, 0, 0.2);
802
- }
803
- button.dt-button.processing:after,
804
- div.dt-button.processing:after,
805
- a.dt-button.processing:after {
806
- position: absolute;
807
- top: 50%;
808
- left: 50%;
809
- width: 16px;
810
- height: 16px;
811
- margin: -8px 0 0 -8px;
812
- box-sizing: border-box;
813
- display: block;
814
- content: ' ';
815
- border: 2px solid #282828;
816
- border-radius: 50%;
817
- border-left-color: transparent;
818
- border-right-color: transparent;
819
- animation: dtb-spinner 1500ms infinite linear;
820
- -o-animation: dtb-spinner 1500ms infinite linear;
821
- -ms-animation: dtb-spinner 1500ms infinite linear;
822
- -webkit-animation: dtb-spinner 1500ms infinite linear;
823
- -moz-animation: dtb-spinner 1500ms infinite linear;
824
- }
825
-
826
-
827
- table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
828
- table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
829
- table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
830
- cursor: default !important;
831
- }
832
- table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
833
- table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
834
- table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
835
- display: none !important;
836
- }
837
- table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child,
838
- table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
839
- position: relative;
840
- padding-left: 30px;
841
- cursor: pointer;
842
- }
843
- table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before,
844
- table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
845
- top: 9px;
846
- left: 4px;
847
- height: 14px;
848
- width: 14px;
849
- display: block;
850
- position: absolute;
851
- color: white;
852
- border: 2px solid white;
853
- border-radius: 14px;
854
- box-shadow: 0 0 3px #444;
855
- box-sizing: content-box;
856
- text-align: center;
857
- text-indent: 0 !important;
858
- font-family: 'Courier New', Courier, monospace;
859
- line-height: 14px;
860
- content: '+';
861
- background-color: #31b131;
862
- }
863
- table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
864
- table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
865
- content: '-';
866
- background-color: #d33333;
867
- }
868
- table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
869
- table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
870
- padding-left: 27px;
871
- }
872
- table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
873
- table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
874
- top: 5px;
875
- left: 4px;
876
- height: 14px;
877
- width: 14px;
878
- border-radius: 14px;
879
- line-height: 14px;
880
- text-indent: 3px;
881
- }
882
- table.dataTable.dtr-column > tbody > tr > td.control,
883
- table.dataTable.dtr-column > tbody > tr > th.control {
884
- position: relative;
885
- cursor: pointer;
886
- }
887
- table.dataTable.dtr-column > tbody > tr > td.control:before,
888
- table.dataTable.dtr-column > tbody > tr > th.control:before {
889
- top: 50%;
890
- left: 50%;
891
- height: 16px;
892
- width: 16px;
893
- margin-top: -10px;
894
- margin-left: -10px;
895
- display: block;
896
- position: absolute;
897
- color: white;
898
- border: 2px solid white;
899
- border-radius: 14px;
900
- box-shadow: 0 0 3px #444;
901
- box-sizing: content-box;
902
- text-align: center;
903
- text-indent: 0 !important;
904
- font-family: 'Courier New', Courier, monospace;
905
- line-height: 14px;
906
- content: '+';
907
- background-color: #31b131;
908
- }
909
- table.dataTable.dtr-column > tbody > tr.parent td.control:before,
910
- table.dataTable.dtr-column > tbody > tr.parent th.control:before {
911
- content: '-';
912
- background-color: #d33333;
913
- }
914
- table.dataTable > tbody > tr.child {
915
- padding: 0.5em 1em;
916
- }
917
- table.dataTable > tbody > tr.child:hover {
918
- background: transparent !important;
919
- }
920
- table.dataTable > tbody > tr.child ul.dtr-details {
921
- display: inline-block;
922
- list-style-type: none;
923
- margin: 0;
924
- padding: 0;
925
- }
926
- table.dataTable > tbody > tr.child ul.dtr-details > li {
927
- border-bottom: 1px solid #efefef;
928
- padding: 0.5em 0;
929
- }
930
- table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
931
- padding-top: 0;
932
- }
933
- table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
934
- border-bottom: none;
935
- }
936
- table.dataTable > tbody > tr.child span.dtr-title {
937
- display: inline-block;
938
- min-width: 75px;
939
- font-weight: bold;
940
- }
941
-
942
- div.dtr-modal {
943
- position: fixed;
944
- box-sizing: border-box;
945
- top: 0;
946
- left: 0;
947
- height: 100%;
948
- width: 100%;
949
- z-index: 100;
950
- padding: 10em 1em;
951
- }
952
- div.dtr-modal div.dtr-modal-display {
953
- position: absolute;
954
- top: 0;
955
- left: 0;
956
- bottom: 0;
957
- right: 0;
958
- width: 50%;
959
- height: 50%;
960
- overflow: auto;
961
- margin: auto;
962
- z-index: 102;
963
- overflow: auto;
964
- background-color: #f5f5f7;
965
- border: 1px solid black;
966
- border-radius: 0.5em;
967
- box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
968
- }
969
- div.dtr-modal div.dtr-modal-content {
970
- position: relative;
971
- padding: 1em;
972
- }
973
- div.dtr-modal div.dtr-modal-close {
974
- position: absolute;
975
- top: 6px;
976
- right: 6px;
977
- width: 22px;
978
- height: 22px;
979
- border: 1px solid #eaeaea;
980
- background-color: #f9f9f9;
981
- text-align: center;
982
- border-radius: 3px;
983
- cursor: pointer;
984
- z-index: 12;
985
- }
986
- div.dtr-modal div.dtr-modal-close:hover {
987
- background-color: #eaeaea;
988
- }
989
- div.dtr-modal div.dtr-modal-background {
990
- position: fixed;
991
- top: 0;
992
- left: 0;
993
- right: 0;
994
- bottom: 0;
995
- z-index: 101;
996
- background: rgba(0, 0, 0, 0.6);
997
- }
998
-
999
- @media screen and (max-width: 767px) {
1000
- div.dtr-modal div.dtr-modal-display {
1001
- width: 95%;
1002
- }
1003
- }
1004
-
1
+ table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: my_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Your Name