killbill-assets-ui 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +5 -0
- data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
- data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/javascripts/application.js +13 -0
- data/app/assets/javascripts/assets/bootstrap.js +2377 -0
- data/app/assets/javascripts/assets/common.js +10 -0
- data/app/assets/javascripts/assets/jquery-ui.min.js +6 -0
- data/app/assets/javascripts/assets/jquery.spin.js +76 -0
- data/app/assets/javascripts/assets/jquery_datatables.js +15711 -0
- data/app/assets/javascripts/assets/spin.js +76 -0
- data/app/assets/stylesheets/application.css +15 -0
- data/app/assets/stylesheets/assets/bootstrap.css +6757 -0
- data/app/assets/stylesheets/assets/bootstrap_and_overrides.css +9 -0
- data/app/assets/stylesheets/assets/common.css +8 -0
- data/app/assets/stylesheets/assets/datatable.css +71 -0
- data/app/assets/stylesheets/assets/element.css +548 -0
- data/app/assets/stylesheets/assets/jquery-ui.min.css +7 -0
- data/app/assets/stylesheets/assets/jquery_datatables.css +658 -0
- data/lib/assets/engine.rb +10 -0
- data/lib/assets/version.rb +5 -0
- data/lib/killbill-assets-ui.rb +4 -0
- data/lib/tasks/killbill/assets/ui_tasks.rake +5 -0
- metadata +126 -0
@@ -0,0 +1,658 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
:root {
|
3
|
+
--dt-row-selected: 13, 110, 253;
|
4
|
+
--dt-row-selected-text: 255, 255, 255;
|
5
|
+
--dt-row-selected-link: 9, 10, 11;
|
6
|
+
--dt-row-stripe: 0, 0, 0;
|
7
|
+
--dt-row-hover: 0, 0, 0;
|
8
|
+
--dt-column-ordering: 0, 0, 0;
|
9
|
+
--dt-html-background: white;
|
10
|
+
}
|
11
|
+
:root.dark {
|
12
|
+
--dt-html-background: rgb(33, 37, 41);
|
13
|
+
}
|
14
|
+
|
15
|
+
table.dataTable td.dt-control {
|
16
|
+
text-align: center;
|
17
|
+
cursor: pointer;
|
18
|
+
}
|
19
|
+
table.dataTable td.dt-control:before {
|
20
|
+
display: inline-block;
|
21
|
+
color: rgba(0, 0, 0, 0.5);
|
22
|
+
content: "►";
|
23
|
+
}
|
24
|
+
table.dataTable tr.dt-hasChild td.dt-control:before {
|
25
|
+
content: "▼";
|
26
|
+
}
|
27
|
+
|
28
|
+
html.dark table.dataTable td.dt-control:before {
|
29
|
+
color: rgba(255, 255, 255, 0.5);
|
30
|
+
}
|
31
|
+
html.dark table.dataTable tr.dt-hasChild td.dt-control:before {
|
32
|
+
color: rgba(255, 255, 255, 0.5);
|
33
|
+
}
|
34
|
+
|
35
|
+
table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
|
36
|
+
table.dataTable thead > tr > td.sorting,
|
37
|
+
table.dataTable thead > tr > td.sorting_asc,
|
38
|
+
table.dataTable thead > tr > td.sorting_desc,
|
39
|
+
table.dataTable thead > tr > td.sorting_asc_disabled,
|
40
|
+
table.dataTable thead > tr > td.sorting_desc_disabled {
|
41
|
+
cursor: pointer;
|
42
|
+
position: relative;
|
43
|
+
padding-right: 26px;
|
44
|
+
}
|
45
|
+
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
|
46
|
+
table.dataTable thead > tr > td.sorting:before,
|
47
|
+
table.dataTable thead > tr > td.sorting:after,
|
48
|
+
table.dataTable thead > tr > td.sorting_asc:before,
|
49
|
+
table.dataTable thead > tr > td.sorting_asc:after,
|
50
|
+
table.dataTable thead > tr > td.sorting_desc:before,
|
51
|
+
table.dataTable thead > tr > td.sorting_desc:after,
|
52
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:before,
|
53
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:after,
|
54
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:before,
|
55
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:after {
|
56
|
+
position: absolute;
|
57
|
+
display: block;
|
58
|
+
opacity: 0.125;
|
59
|
+
right: 10px;
|
60
|
+
line-height: 9px;
|
61
|
+
font-size: 0.8em;
|
62
|
+
}
|
63
|
+
table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
|
64
|
+
table.dataTable thead > tr > td.sorting:before,
|
65
|
+
table.dataTable thead > tr > td.sorting_asc:before,
|
66
|
+
table.dataTable thead > tr > td.sorting_desc:before,
|
67
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:before,
|
68
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:before {
|
69
|
+
bottom: 50%;
|
70
|
+
content: "▲";
|
71
|
+
content: "▲"/"";
|
72
|
+
}
|
73
|
+
table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
|
74
|
+
table.dataTable thead > tr > td.sorting:after,
|
75
|
+
table.dataTable thead > tr > td.sorting_asc:after,
|
76
|
+
table.dataTable thead > tr > td.sorting_desc:after,
|
77
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:after,
|
78
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:after {
|
79
|
+
top: 50%;
|
80
|
+
content: "▼";
|
81
|
+
content: "▼"/"";
|
82
|
+
}
|
83
|
+
table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
|
84
|
+
table.dataTable thead > tr > td.sorting_asc:before,
|
85
|
+
table.dataTable thead > tr > td.sorting_desc:after {
|
86
|
+
opacity: 0.6;
|
87
|
+
}
|
88
|
+
table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
|
89
|
+
table.dataTable thead > tr > td.sorting_desc_disabled:after,
|
90
|
+
table.dataTable thead > tr > td.sorting_asc_disabled:before {
|
91
|
+
display: none;
|
92
|
+
}
|
93
|
+
table.dataTable thead > tr > th:active,
|
94
|
+
table.dataTable thead > tr > td:active {
|
95
|
+
outline: none;
|
96
|
+
}
|
97
|
+
|
98
|
+
div.dataTables_scrollBody > table.dataTable > thead > tr > th:before, div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
|
99
|
+
div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
|
100
|
+
div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
|
101
|
+
display: none;
|
102
|
+
}
|
103
|
+
|
104
|
+
div.dataTables_processing {
|
105
|
+
position: absolute;
|
106
|
+
top: 50%;
|
107
|
+
left: 50%;
|
108
|
+
width: 200px;
|
109
|
+
margin-left: -100px;
|
110
|
+
margin-top: -26px;
|
111
|
+
text-align: center;
|
112
|
+
padding: 2px;
|
113
|
+
}
|
114
|
+
div.dataTables_processing > div:last-child {
|
115
|
+
position: relative;
|
116
|
+
width: 80px;
|
117
|
+
height: 15px;
|
118
|
+
margin: 1em auto;
|
119
|
+
}
|
120
|
+
div.dataTables_processing > div:last-child > div {
|
121
|
+
position: absolute;
|
122
|
+
top: 0;
|
123
|
+
width: 13px;
|
124
|
+
height: 13px;
|
125
|
+
border-radius: 50%;
|
126
|
+
background: rgb(13, 110, 253);
|
127
|
+
background: rgb(var(--dt-row-selected));
|
128
|
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
129
|
+
}
|
130
|
+
div.dataTables_processing > div:last-child > div:nth-child(1) {
|
131
|
+
left: 8px;
|
132
|
+
animation: datatables-loader-1 0.6s infinite;
|
133
|
+
}
|
134
|
+
div.dataTables_processing > div:last-child > div:nth-child(2) {
|
135
|
+
left: 8px;
|
136
|
+
animation: datatables-loader-2 0.6s infinite;
|
137
|
+
}
|
138
|
+
div.dataTables_processing > div:last-child > div:nth-child(3) {
|
139
|
+
left: 32px;
|
140
|
+
animation: datatables-loader-2 0.6s infinite;
|
141
|
+
}
|
142
|
+
div.dataTables_processing > div:last-child > div:nth-child(4) {
|
143
|
+
left: 56px;
|
144
|
+
animation: datatables-loader-3 0.6s infinite;
|
145
|
+
}
|
146
|
+
|
147
|
+
@keyframes datatables-loader-1 {
|
148
|
+
0% {
|
149
|
+
transform: scale(0);
|
150
|
+
}
|
151
|
+
100% {
|
152
|
+
transform: scale(1);
|
153
|
+
}
|
154
|
+
}
|
155
|
+
@keyframes datatables-loader-3 {
|
156
|
+
0% {
|
157
|
+
transform: scale(1);
|
158
|
+
}
|
159
|
+
100% {
|
160
|
+
transform: scale(0);
|
161
|
+
}
|
162
|
+
}
|
163
|
+
@keyframes datatables-loader-2 {
|
164
|
+
0% {
|
165
|
+
transform: translate(0, 0);
|
166
|
+
}
|
167
|
+
100% {
|
168
|
+
transform: translate(24px, 0);
|
169
|
+
}
|
170
|
+
}
|
171
|
+
table.dataTable.nowrap th, table.dataTable.nowrap td {
|
172
|
+
white-space: nowrap;
|
173
|
+
}
|
174
|
+
table.dataTable th.dt-left,
|
175
|
+
table.dataTable td.dt-left {
|
176
|
+
text-align: left;
|
177
|
+
}
|
178
|
+
table.dataTable th.dt-center,
|
179
|
+
table.dataTable td.dt-center,
|
180
|
+
table.dataTable td.dataTables_empty {
|
181
|
+
text-align: center;
|
182
|
+
}
|
183
|
+
table.dataTable th.dt-right,
|
184
|
+
table.dataTable td.dt-right {
|
185
|
+
text-align: right;
|
186
|
+
}
|
187
|
+
table.dataTable th.dt-justify,
|
188
|
+
table.dataTable td.dt-justify {
|
189
|
+
text-align: justify;
|
190
|
+
}
|
191
|
+
table.dataTable th.dt-nowrap,
|
192
|
+
table.dataTable td.dt-nowrap {
|
193
|
+
white-space: nowrap;
|
194
|
+
}
|
195
|
+
table.dataTable thead th,
|
196
|
+
table.dataTable thead td,
|
197
|
+
table.dataTable tfoot th,
|
198
|
+
table.dataTable tfoot td {
|
199
|
+
text-align: left;
|
200
|
+
}
|
201
|
+
table.dataTable thead th.dt-head-left,
|
202
|
+
table.dataTable thead td.dt-head-left,
|
203
|
+
table.dataTable tfoot th.dt-head-left,
|
204
|
+
table.dataTable tfoot td.dt-head-left {
|
205
|
+
text-align: left;
|
206
|
+
}
|
207
|
+
table.dataTable thead th.dt-head-center,
|
208
|
+
table.dataTable thead td.dt-head-center,
|
209
|
+
table.dataTable tfoot th.dt-head-center,
|
210
|
+
table.dataTable tfoot td.dt-head-center {
|
211
|
+
text-align: center;
|
212
|
+
}
|
213
|
+
table.dataTable thead th.dt-head-right,
|
214
|
+
table.dataTable thead td.dt-head-right,
|
215
|
+
table.dataTable tfoot th.dt-head-right,
|
216
|
+
table.dataTable tfoot td.dt-head-right {
|
217
|
+
text-align: right;
|
218
|
+
}
|
219
|
+
table.dataTable thead th.dt-head-justify,
|
220
|
+
table.dataTable thead td.dt-head-justify,
|
221
|
+
table.dataTable tfoot th.dt-head-justify,
|
222
|
+
table.dataTable tfoot td.dt-head-justify {
|
223
|
+
text-align: justify;
|
224
|
+
}
|
225
|
+
table.dataTable thead th.dt-head-nowrap,
|
226
|
+
table.dataTable thead td.dt-head-nowrap,
|
227
|
+
table.dataTable tfoot th.dt-head-nowrap,
|
228
|
+
table.dataTable tfoot td.dt-head-nowrap {
|
229
|
+
white-space: nowrap;
|
230
|
+
}
|
231
|
+
table.dataTable tbody th.dt-body-left,
|
232
|
+
table.dataTable tbody td.dt-body-left {
|
233
|
+
text-align: left;
|
234
|
+
}
|
235
|
+
table.dataTable tbody th.dt-body-center,
|
236
|
+
table.dataTable tbody td.dt-body-center {
|
237
|
+
text-align: center;
|
238
|
+
}
|
239
|
+
table.dataTable tbody th.dt-body-right,
|
240
|
+
table.dataTable tbody td.dt-body-right {
|
241
|
+
text-align: right;
|
242
|
+
}
|
243
|
+
table.dataTable tbody th.dt-body-justify,
|
244
|
+
table.dataTable tbody td.dt-body-justify {
|
245
|
+
text-align: justify;
|
246
|
+
}
|
247
|
+
table.dataTable tbody th.dt-body-nowrap,
|
248
|
+
table.dataTable tbody td.dt-body-nowrap {
|
249
|
+
white-space: nowrap;
|
250
|
+
}
|
251
|
+
|
252
|
+
/*
|
253
|
+
* Table styles
|
254
|
+
*/
|
255
|
+
table.dataTable {
|
256
|
+
width: 100%;
|
257
|
+
margin: 0 auto;
|
258
|
+
clear: both;
|
259
|
+
border-collapse: separate;
|
260
|
+
border-spacing: 0;
|
261
|
+
/*
|
262
|
+
* Header and footer styles
|
263
|
+
*/
|
264
|
+
/*
|
265
|
+
* Body styles
|
266
|
+
*/
|
267
|
+
}
|
268
|
+
table.dataTable thead th,
|
269
|
+
table.dataTable tfoot th {
|
270
|
+
font-weight: bold;
|
271
|
+
}
|
272
|
+
table.dataTable > thead > tr > th,
|
273
|
+
table.dataTable > thead > tr > td {
|
274
|
+
padding: 10px;
|
275
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
276
|
+
}
|
277
|
+
table.dataTable > thead > tr > th:active,
|
278
|
+
table.dataTable > thead > tr > td:active {
|
279
|
+
outline: none;
|
280
|
+
}
|
281
|
+
table.dataTable > tfoot > tr > th,
|
282
|
+
table.dataTable > tfoot > tr > td {
|
283
|
+
padding: 10px 10px 6px 10px;
|
284
|
+
border-top: 1px solid rgba(0, 0, 0, 0.3);
|
285
|
+
}
|
286
|
+
table.dataTable tbody tr {
|
287
|
+
background-color: transparent;
|
288
|
+
}
|
289
|
+
table.dataTable tbody tr.selected > * {
|
290
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.9);
|
291
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
|
292
|
+
color: rgb(255, 255, 255);
|
293
|
+
color: rgb(var(--dt-row-selected-text));
|
294
|
+
}
|
295
|
+
table.dataTable tbody tr.selected a {
|
296
|
+
color: rgb(9, 10, 11);
|
297
|
+
color: rgb(var(--dt-row-selected-link));
|
298
|
+
}
|
299
|
+
table.dataTable tbody th,
|
300
|
+
table.dataTable tbody td {
|
301
|
+
padding: 8px 10px;
|
302
|
+
}
|
303
|
+
table.dataTable.row-border > tbody > tr > th,
|
304
|
+
table.dataTable.row-border > tbody > tr > td, table.dataTable.display > tbody > tr > th,
|
305
|
+
table.dataTable.display > tbody > tr > td {
|
306
|
+
border-top: 1px solid rgba(0, 0, 0, 0.15);
|
307
|
+
}
|
308
|
+
table.dataTable.row-border > tbody > tr:first-child > th,
|
309
|
+
table.dataTable.row-border > tbody > tr:first-child > td, table.dataTable.display > tbody > tr:first-child > th,
|
310
|
+
table.dataTable.display > tbody > tr:first-child > td {
|
311
|
+
border-top: none;
|
312
|
+
}
|
313
|
+
table.dataTable.row-border > tbody > tr.selected + tr.selected > td, table.dataTable.display > tbody > tr.selected + tr.selected > td {
|
314
|
+
border-top-color: #0262ef;
|
315
|
+
}
|
316
|
+
table.dataTable.cell-border > tbody > tr > th,
|
317
|
+
table.dataTable.cell-border > tbody > tr > td {
|
318
|
+
border-top: 1px solid rgba(0, 0, 0, 0.15);
|
319
|
+
border-right: 1px solid rgba(0, 0, 0, 0.15);
|
320
|
+
}
|
321
|
+
table.dataTable.cell-border > tbody > tr > th:first-child,
|
322
|
+
table.dataTable.cell-border > tbody > tr > td:first-child {
|
323
|
+
border-left: 1px solid rgba(0, 0, 0, 0.15);
|
324
|
+
}
|
325
|
+
table.dataTable.cell-border > tbody > tr:first-child > th,
|
326
|
+
table.dataTable.cell-border > tbody > tr:first-child > td {
|
327
|
+
border-top: none;
|
328
|
+
}
|
329
|
+
table.dataTable.stripe > tbody > tr.odd > *, table.dataTable.display > tbody > tr.odd > * {
|
330
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
|
331
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
|
332
|
+
}
|
333
|
+
table.dataTable.stripe > tbody > tr.odd.selected > *, table.dataTable.display > tbody > tr.odd.selected > * {
|
334
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.923);
|
335
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.923);
|
336
|
+
}
|
337
|
+
table.dataTable.hover > tbody > tr:hover > *, table.dataTable.display > tbody > tr:hover > * {
|
338
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.035);
|
339
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
|
340
|
+
}
|
341
|
+
table.dataTable.hover > tbody > tr.selected:hover > *, table.dataTable.display > tbody > tr.selected:hover > * {
|
342
|
+
box-shadow: inset 0 0 0 9999px #0d6efd !important;
|
343
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1) !important;
|
344
|
+
}
|
345
|
+
table.dataTable.order-column > tbody tr > .sorting_1,
|
346
|
+
table.dataTable.order-column > tbody tr > .sorting_2,
|
347
|
+
table.dataTable.order-column > tbody tr > .sorting_3, table.dataTable.display > tbody tr > .sorting_1,
|
348
|
+
table.dataTable.display > tbody tr > .sorting_2,
|
349
|
+
table.dataTable.display > tbody tr > .sorting_3 {
|
350
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
|
351
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.019);
|
352
|
+
}
|
353
|
+
table.dataTable.order-column > tbody tr.selected > .sorting_1,
|
354
|
+
table.dataTable.order-column > tbody tr.selected > .sorting_2,
|
355
|
+
table.dataTable.order-column > tbody tr.selected > .sorting_3, table.dataTable.display > tbody tr.selected > .sorting_1,
|
356
|
+
table.dataTable.display > tbody tr.selected > .sorting_2,
|
357
|
+
table.dataTable.display > tbody tr.selected > .sorting_3 {
|
358
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
|
359
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
|
360
|
+
}
|
361
|
+
table.dataTable.display > tbody > tr.odd > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
|
362
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.054);
|
363
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.054);
|
364
|
+
}
|
365
|
+
table.dataTable.display > tbody > tr.odd > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_2 {
|
366
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.047);
|
367
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.047);
|
368
|
+
}
|
369
|
+
table.dataTable.display > tbody > tr.odd > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_3 {
|
370
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.039);
|
371
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-column-ordering), 0.039);
|
372
|
+
}
|
373
|
+
table.dataTable.display > tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_1 {
|
374
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.954);
|
375
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.954);
|
376
|
+
}
|
377
|
+
table.dataTable.display > tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_2 {
|
378
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.947);
|
379
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.947);
|
380
|
+
}
|
381
|
+
table.dataTable.display > tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.odd.selected > .sorting_3 {
|
382
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.939);
|
383
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.939);
|
384
|
+
}
|
385
|
+
table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
|
386
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.019);
|
387
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.019);
|
388
|
+
}
|
389
|
+
table.dataTable.display > tbody > tr.even > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_2 {
|
390
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.011);
|
391
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.011);
|
392
|
+
}
|
393
|
+
table.dataTable.display > tbody > tr.even > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_3 {
|
394
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.003);
|
395
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.003);
|
396
|
+
}
|
397
|
+
table.dataTable.display > tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_1 {
|
398
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.919);
|
399
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.919);
|
400
|
+
}
|
401
|
+
table.dataTable.display > tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_2 {
|
402
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.911);
|
403
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.911);
|
404
|
+
}
|
405
|
+
table.dataTable.display > tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe > tbody > tr.even.selected > .sorting_3 {
|
406
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.903);
|
407
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.903);
|
408
|
+
}
|
409
|
+
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
|
410
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.082);
|
411
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.082);
|
412
|
+
}
|
413
|
+
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
|
414
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.074);
|
415
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.074);
|
416
|
+
}
|
417
|
+
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
|
418
|
+
box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.062);
|
419
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.062);
|
420
|
+
}
|
421
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
|
422
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.982);
|
423
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.982);
|
424
|
+
}
|
425
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
|
426
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.974);
|
427
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.974);
|
428
|
+
}
|
429
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
|
430
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.962);
|
431
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.962);
|
432
|
+
}
|
433
|
+
table.dataTable.no-footer {
|
434
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
435
|
+
}
|
436
|
+
table.dataTable.compact thead th,
|
437
|
+
table.dataTable.compact thead td,
|
438
|
+
table.dataTable.compact tfoot th,
|
439
|
+
table.dataTable.compact tfoot td,
|
440
|
+
table.dataTable.compact tbody th,
|
441
|
+
table.dataTable.compact tbody td {
|
442
|
+
padding: 4px;
|
443
|
+
}
|
444
|
+
|
445
|
+
table.dataTable th,
|
446
|
+
table.dataTable td {
|
447
|
+
box-sizing: content-box;
|
448
|
+
}
|
449
|
+
|
450
|
+
/*
|
451
|
+
* Control feature layout
|
452
|
+
*/
|
453
|
+
.dataTables_wrapper {
|
454
|
+
position: relative;
|
455
|
+
clear: both;
|
456
|
+
}
|
457
|
+
.dataTables_wrapper .dataTables_length {
|
458
|
+
float: left;
|
459
|
+
}
|
460
|
+
.dataTables_wrapper .dataTables_length select {
|
461
|
+
border: 1px solid #aaa;
|
462
|
+
border-radius: 3px;
|
463
|
+
padding: 5px;
|
464
|
+
background-color: transparent;
|
465
|
+
color: inherit;
|
466
|
+
padding: 4px;
|
467
|
+
}
|
468
|
+
.dataTables_wrapper .dataTables_filter {
|
469
|
+
float: right;
|
470
|
+
text-align: right;
|
471
|
+
}
|
472
|
+
.dataTables_wrapper .dataTables_filter input {
|
473
|
+
border: 1px solid #aaa;
|
474
|
+
border-radius: 3px;
|
475
|
+
padding: 5px;
|
476
|
+
background-color: transparent;
|
477
|
+
color: inherit;
|
478
|
+
margin-left: 3px;
|
479
|
+
}
|
480
|
+
.dataTables_wrapper .dataTables_info {
|
481
|
+
clear: both;
|
482
|
+
float: left;
|
483
|
+
padding-top: 0.755em;
|
484
|
+
}
|
485
|
+
.dataTables_wrapper .dataTables_paginate {
|
486
|
+
float: right;
|
487
|
+
text-align: right;
|
488
|
+
padding-top: 0.25em;
|
489
|
+
}
|
490
|
+
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
491
|
+
box-sizing: border-box;
|
492
|
+
display: inline-block;
|
493
|
+
min-width: 1.5em;
|
494
|
+
padding: 0.5em 1em;
|
495
|
+
margin-left: 2px;
|
496
|
+
text-align: center;
|
497
|
+
text-decoration: none !important;
|
498
|
+
cursor: pointer;
|
499
|
+
color: inherit !important;
|
500
|
+
border: 1px solid transparent;
|
501
|
+
border-radius: 2px;
|
502
|
+
background: transparent;
|
503
|
+
}
|
504
|
+
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
505
|
+
color: inherit !important;
|
506
|
+
border: 1px solid rgba(0, 0, 0, 0.3);
|
507
|
+
background-color: rgba(0, 0, 0, 0.05);
|
508
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(230, 230, 230, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.05))); /* Chrome,Safari4+ */
|
509
|
+
background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Chrome10+,Safari5.1+ */
|
510
|
+
background: -moz-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* FF3.6+ */
|
511
|
+
background: -ms-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* IE10+ */
|
512
|
+
background: -o-linear-gradient(top, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* Opera 11.10+ */
|
513
|
+
background: linear-gradient(to bottom, rgba(230, 230, 230, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%); /* W3C */
|
514
|
+
}
|
515
|
+
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
|
516
|
+
cursor: default;
|
517
|
+
color: #666 !important;
|
518
|
+
border: 1px solid transparent;
|
519
|
+
background: transparent;
|
520
|
+
box-shadow: none;
|
521
|
+
}
|
522
|
+
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
523
|
+
color: white !important;
|
524
|
+
border: 1px solid #111;
|
525
|
+
background-color: #111;
|
526
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111)); /* Chrome,Safari4+ */
|
527
|
+
background: -webkit-linear-gradient(top, #585858 0%, #111 100%); /* Chrome10+,Safari5.1+ */
|
528
|
+
background: -moz-linear-gradient(top, #585858 0%, #111 100%); /* FF3.6+ */
|
529
|
+
background: -ms-linear-gradient(top, #585858 0%, #111 100%); /* IE10+ */
|
530
|
+
background: -o-linear-gradient(top, #585858 0%, #111 100%); /* Opera 11.10+ */
|
531
|
+
background: linear-gradient(to bottom, #585858 0%, #111 100%); /* W3C */
|
532
|
+
}
|
533
|
+
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
534
|
+
outline: none;
|
535
|
+
background-color: #0c0c0c;
|
536
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c)); /* Chrome,Safari4+ */
|
537
|
+
background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Chrome10+,Safari5.1+ */
|
538
|
+
background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* FF3.6+ */
|
539
|
+
background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* IE10+ */
|
540
|
+
background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%); /* Opera 11.10+ */
|
541
|
+
background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%); /* W3C */
|
542
|
+
box-shadow: inset 0 0 3px #111;
|
543
|
+
}
|
544
|
+
.dataTables_wrapper .dataTables_paginate .ellipsis {
|
545
|
+
padding: 0 1em;
|
546
|
+
}
|
547
|
+
.dataTables_wrapper .dataTables_length,
|
548
|
+
.dataTables_wrapper .dataTables_filter,
|
549
|
+
.dataTables_wrapper .dataTables_info,
|
550
|
+
.dataTables_wrapper .dataTables_processing,
|
551
|
+
.dataTables_wrapper .dataTables_paginate {
|
552
|
+
color: inherit;
|
553
|
+
}
|
554
|
+
.dataTables_wrapper .dataTables_scroll {
|
555
|
+
clear: both;
|
556
|
+
}
|
557
|
+
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
|
558
|
+
-webkit-overflow-scrolling: touch;
|
559
|
+
}
|
560
|
+
.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 {
|
561
|
+
vertical-align: middle;
|
562
|
+
}
|
563
|
+
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
|
564
|
+
.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,
|
565
|
+
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
|
566
|
+
height: 0;
|
567
|
+
overflow: hidden;
|
568
|
+
margin: 0 !important;
|
569
|
+
padding: 0 !important;
|
570
|
+
}
|
571
|
+
.dataTables_wrapper.no-footer .dataTables_scrollBody {
|
572
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
573
|
+
}
|
574
|
+
.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
|
575
|
+
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
|
576
|
+
border-bottom: none;
|
577
|
+
}
|
578
|
+
.dataTables_wrapper:after {
|
579
|
+
visibility: hidden;
|
580
|
+
display: block;
|
581
|
+
content: "";
|
582
|
+
clear: both;
|
583
|
+
height: 0;
|
584
|
+
}
|
585
|
+
|
586
|
+
@media screen and (max-width: 767px) {
|
587
|
+
.dataTables_wrapper .dataTables_info,
|
588
|
+
.dataTables_wrapper .dataTables_paginate {
|
589
|
+
float: none;
|
590
|
+
text-align: center;
|
591
|
+
}
|
592
|
+
.dataTables_wrapper .dataTables_paginate {
|
593
|
+
margin-top: 0.5em;
|
594
|
+
}
|
595
|
+
}
|
596
|
+
@media screen and (max-width: 640px) {
|
597
|
+
.dataTables_wrapper .dataTables_length,
|
598
|
+
.dataTables_wrapper .dataTables_filter {
|
599
|
+
float: none;
|
600
|
+
text-align: center;
|
601
|
+
}
|
602
|
+
.dataTables_wrapper .dataTables_filter {
|
603
|
+
margin-top: 0.5em;
|
604
|
+
}
|
605
|
+
}
|
606
|
+
html.dark {
|
607
|
+
--dt-row-hover: 255, 255, 255;
|
608
|
+
--dt-row-stripe: 255, 255, 255;
|
609
|
+
--dt-column-ordering: 255, 255, 255;
|
610
|
+
}
|
611
|
+
html.dark table.dataTable > thead > tr > th,
|
612
|
+
html.dark table.dataTable > thead > tr > td {
|
613
|
+
border-bottom: 1px solid rgb(89, 91, 94);
|
614
|
+
}
|
615
|
+
html.dark table.dataTable > thead > tr > th:active,
|
616
|
+
html.dark table.dataTable > thead > tr > td:active {
|
617
|
+
outline: none;
|
618
|
+
}
|
619
|
+
html.dark table.dataTable > tfoot > tr > th,
|
620
|
+
html.dark table.dataTable > tfoot > tr > td {
|
621
|
+
border-top: 1px solid rgb(89, 91, 94);
|
622
|
+
}
|
623
|
+
html.dark table.dataTable.row-border > tbody > tr > th,
|
624
|
+
html.dark table.dataTable.row-border > tbody > tr > td, html.dark table.dataTable.display > tbody > tr > th,
|
625
|
+
html.dark table.dataTable.display > tbody > tr > td {
|
626
|
+
border-top: 1px solid rgb(64, 67, 70);
|
627
|
+
}
|
628
|
+
html.dark table.dataTable.row-border > tbody > tr.selected + tr.selected > td, html.dark table.dataTable.display > tbody > tr.selected + tr.selected > td {
|
629
|
+
border-top-color: #0257d5;
|
630
|
+
}
|
631
|
+
html.dark table.dataTable.cell-border > tbody > tr > th,
|
632
|
+
html.dark table.dataTable.cell-border > tbody > tr > td {
|
633
|
+
border-top: 1px solid rgb(64, 67, 70);
|
634
|
+
border-right: 1px solid rgb(64, 67, 70);
|
635
|
+
}
|
636
|
+
html.dark table.dataTable.cell-border > tbody > tr > th:first-child,
|
637
|
+
html.dark table.dataTable.cell-border > tbody > tr > td:first-child {
|
638
|
+
border-left: 1px solid rgb(64, 67, 70);
|
639
|
+
}
|
640
|
+
html.dark .dataTables_wrapper .dataTables_filter input,
|
641
|
+
html.dark .dataTables_wrapper .dataTables_length select {
|
642
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
643
|
+
background-color: var(--dt-html-background);
|
644
|
+
}
|
645
|
+
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
646
|
+
border: 1px solid rgb(89, 91, 94);
|
647
|
+
background: rgba(255, 255, 255, 0.15);
|
648
|
+
}
|
649
|
+
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, html.dark .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
|
650
|
+
color: #666 !important;
|
651
|
+
}
|
652
|
+
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
653
|
+
border: 1px solid rgb(53, 53, 53);
|
654
|
+
background: rgb(53, 53, 53);
|
655
|
+
}
|
656
|
+
html.dark .dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
657
|
+
background: #3a3a3a;
|
658
|
+
}
|