my_assets 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +43 -0
  4. data/lib/my_assets/version.rb +3 -0
  5. data/lib/my_assets.rb +7 -0
  6. data/vendor/assets/fonts/FontAwesome.otf +0 -0
  7. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  8. data/vendor/assets/fonts/fontawesome-webfont.svg +2671 -0
  9. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  10. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  11. data/vendor/assets/fonts/fontawesome-webfont.woff2 +0 -0
  12. data/vendor/assets/javascripts/bootstrap/alert.js +203 -0
  13. data/vendor/assets/javascripts/bootstrap/button.js +191 -0
  14. data/vendor/assets/javascripts/bootstrap/carousel.js +566 -0
  15. data/vendor/assets/javascripts/bootstrap/collapse.js +430 -0
  16. data/vendor/assets/javascripts/bootstrap/dropdown.js +551 -0
  17. data/vendor/assets/javascripts/bootstrap/modal.js +633 -0
  18. data/vendor/assets/javascripts/bootstrap/popover.js +265 -0
  19. data/vendor/assets/javascripts/bootstrap/scrollspy.js +378 -0
  20. data/vendor/assets/javascripts/bootstrap/tab.js +277 -0
  21. data/vendor/assets/javascripts/bootstrap/tooltip.js +733 -0
  22. data/vendor/assets/javascripts/bootstrap/util.js +143 -0
  23. data/vendor/assets/javascripts/bootstrap.js +6 -0
  24. data/vendor/assets/javascripts/data-confirm-modal.js +351 -0
  25. data/vendor/assets/javascripts/datatables.js +360 -0
  26. data/vendor/assets/javascripts/jquery.js +4 -0
  27. data/vendor/assets/javascripts/notify.js +625 -0
  28. data/vendor/assets/javascripts/popper.js +5 -0
  29. data/vendor/assets/javascripts/select2.js +1 -0
  30. data/vendor/assets/stylesheets/bootstrap/_alert.scss +51 -0
  31. data/vendor/assets/stylesheets/bootstrap/_badge.scss +47 -0
  32. data/vendor/assets/stylesheets/bootstrap/_breadcrumb.scss +41 -0
  33. data/vendor/assets/stylesheets/bootstrap/_button-group.scss +172 -0
  34. data/vendor/assets/stylesheets/bootstrap/_buttons.scss +143 -0
  35. data/vendor/assets/stylesheets/bootstrap/_card.scss +301 -0
  36. data/vendor/assets/stylesheets/bootstrap/_carousel.scss +236 -0
  37. data/vendor/assets/stylesheets/bootstrap/_close.scss +35 -0
  38. data/vendor/assets/stylesheets/bootstrap/_code.scss +48 -0
  39. data/vendor/assets/stylesheets/bootstrap/_custom-forms.scss +433 -0
  40. data/vendor/assets/stylesheets/bootstrap/_dropdown.scss +166 -0
  41. data/vendor/assets/stylesheets/bootstrap/_forms.scss +333 -0
  42. data/vendor/assets/stylesheets/bootstrap/_functions.scss +86 -0
  43. data/vendor/assets/stylesheets/bootstrap/_grid.scss +52 -0
  44. data/vendor/assets/stylesheets/bootstrap/_images.scss +42 -0
  45. data/vendor/assets/stylesheets/bootstrap/_input-group.scss +173 -0
  46. data/vendor/assets/stylesheets/bootstrap/_jumbotron.scss +16 -0
  47. data/vendor/assets/stylesheets/bootstrap/_list-group.scss +115 -0
  48. data/vendor/assets/stylesheets/bootstrap/_media.scss +8 -0
  49. data/vendor/assets/stylesheets/bootstrap/_mixins.scss +41 -0
  50. data/vendor/assets/stylesheets/bootstrap/_modal.scss +180 -0
  51. data/vendor/assets/stylesheets/bootstrap/_nav.scss +118 -0
  52. data/vendor/assets/stylesheets/bootstrap/_navbar.scss +299 -0
  53. data/vendor/assets/stylesheets/bootstrap/_pagination.scss +78 -0
  54. data/vendor/assets/stylesheets/bootstrap/_popover.scss +183 -0
  55. data/vendor/assets/stylesheets/bootstrap/_print.scss +141 -0
  56. data/vendor/assets/stylesheets/bootstrap/_progress.scss +34 -0
  57. data/vendor/assets/stylesheets/bootstrap/_reboot.scss +483 -0
  58. data/vendor/assets/stylesheets/bootstrap/_root.scss +19 -0
  59. data/vendor/assets/stylesheets/bootstrap/_tables.scss +187 -0
  60. data/vendor/assets/stylesheets/bootstrap/_tooltip.scss +115 -0
  61. data/vendor/assets/stylesheets/bootstrap/_transitions.scss +22 -0
  62. data/vendor/assets/stylesheets/bootstrap/_type.scss +125 -0
  63. data/vendor/assets/stylesheets/bootstrap/_utilities.scss +15 -0
  64. data/vendor/assets/stylesheets/bootstrap/_variables.scss +952 -0
  65. data/vendor/assets/stylesheets/bootstrap/mixins/_alert.scss +13 -0
  66. data/vendor/assets/stylesheets/bootstrap/mixins/_background-variant.scss +21 -0
  67. data/vendor/assets/stylesheets/bootstrap/mixins/_badge.scss +12 -0
  68. data/vendor/assets/stylesheets/bootstrap/mixins/_border-radius.scss +35 -0
  69. data/vendor/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +5 -0
  70. data/vendor/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +123 -0
  71. data/vendor/assets/stylesheets/bootstrap/mixins/_buttons.scss +109 -0
  72. data/vendor/assets/stylesheets/bootstrap/mixins/_caret.scss +66 -0
  73. data/vendor/assets/stylesheets/bootstrap/mixins/_clearfix.scss +7 -0
  74. data/vendor/assets/stylesheets/bootstrap/mixins/_float.scss +11 -0
  75. data/vendor/assets/stylesheets/bootstrap/mixins/_forms.scss +147 -0
  76. data/vendor/assets/stylesheets/bootstrap/mixins/_gradients.scss +45 -0
  77. data/vendor/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +67 -0
  78. data/vendor/assets/stylesheets/bootstrap/mixins/_grid.scss +52 -0
  79. data/vendor/assets/stylesheets/bootstrap/mixins/_hover.scss +37 -0
  80. data/vendor/assets/stylesheets/bootstrap/mixins/_image.scss +36 -0
  81. data/vendor/assets/stylesheets/bootstrap/mixins/_list-group.scss +21 -0
  82. data/vendor/assets/stylesheets/bootstrap/mixins/_lists.scss +7 -0
  83. data/vendor/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  84. data/vendor/assets/stylesheets/bootstrap/mixins/_pagination.scss +22 -0
  85. data/vendor/assets/stylesheets/bootstrap/mixins/_reset-text.scss +17 -0
  86. data/vendor/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  87. data/vendor/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +33 -0
  88. data/vendor/assets/stylesheets/bootstrap/mixins/_size.scss +6 -0
  89. data/vendor/assets/stylesheets/bootstrap/mixins/_table-row.scss +30 -0
  90. data/vendor/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +14 -0
  91. data/vendor/assets/stylesheets/bootstrap/mixins/_text-hide.scss +13 -0
  92. data/vendor/assets/stylesheets/bootstrap/mixins/_text-truncate.scss +8 -0
  93. data/vendor/assets/stylesheets/bootstrap/mixins/_transition.scss +13 -0
  94. data/vendor/assets/stylesheets/bootstrap/mixins/_visibility.scss +7 -0
  95. data/vendor/assets/stylesheets/bootstrap/utilities/_align.scss +8 -0
  96. data/vendor/assets/stylesheets/bootstrap/utilities/_background.scss +19 -0
  97. data/vendor/assets/stylesheets/bootstrap/utilities/_borders.scss +59 -0
  98. data/vendor/assets/stylesheets/bootstrap/utilities/_clearfix.scss +3 -0
  99. data/vendor/assets/stylesheets/bootstrap/utilities/_display.scss +38 -0
  100. data/vendor/assets/stylesheets/bootstrap/utilities/_embed.scss +52 -0
  101. data/vendor/assets/stylesheets/bootstrap/utilities/_flex.scss +51 -0
  102. data/vendor/assets/stylesheets/bootstrap/utilities/_float.scss +9 -0
  103. data/vendor/assets/stylesheets/bootstrap/utilities/_position.scss +37 -0
  104. data/vendor/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +11 -0
  105. data/vendor/assets/stylesheets/bootstrap/utilities/_shadows.scss +6 -0
  106. data/vendor/assets/stylesheets/bootstrap/utilities/_sizing.scss +12 -0
  107. data/vendor/assets/stylesheets/bootstrap/utilities/_spacing.scss +51 -0
  108. data/vendor/assets/stylesheets/bootstrap/utilities/_text.scss +58 -0
  109. data/vendor/assets/stylesheets/bootstrap/utilities/_visibility.scss +11 -0
  110. data/vendor/assets/stylesheets/bootstrap.scss +42 -0
  111. data/vendor/assets/stylesheets/datatables.css +1004 -0
  112. data/vendor/assets/stylesheets/font-awesome.css.erb +2342 -0
  113. data/vendor/assets/stylesheets/select2.css +484 -0
  114. metadata +186 -0
@@ -0,0 +1,1004 @@
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
+