laketower 0.5.1__py3-none-any.whl → 0.6.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of laketower might be problematic. Click here for more details.
- laketower/__about__.py +1 -1
- laketower/cli.py +269 -101
- laketower/config.py +96 -14
- laketower/static/datatables.bundle.js +27931 -0
- laketower/static/datatables.js +55 -0
- laketower/static/editor.bundle.js +27433 -0
- laketower/static/editor.js +74 -0
- laketower/static/vendor/bootstrap/bootstrap.bundle.min.js +7 -0
- laketower/static/vendor/bootstrap-icons/bootstrap-icons.min.css +5 -0
- laketower/static/vendor/bootstrap-icons/fonts/bootstrap-icons.woff +0 -0
- laketower/static/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 +0 -0
- laketower/static/vendor/datatables.net-bs5/dataTables.bootstrap5.css +610 -0
- laketower/static/vendor/datatables.net-columncontrol-bs5/columnControl.bootstrap5.min.css +1 -0
- laketower/static/vendor/halfmoon/halfmoon.min.css +22 -0
- laketower/static/vendor/halfmoon/halfmoon.modern.css +282 -0
- laketower/tables.py +218 -16
- laketower/templates/_base.html +99 -20
- laketower/templates/queries/view.html +50 -8
- laketower/templates/tables/_macros.html +3 -0
- laketower/templates/tables/history.html +6 -0
- laketower/templates/tables/import.html +71 -0
- laketower/templates/tables/index.html +6 -0
- laketower/templates/tables/query.html +53 -7
- laketower/templates/tables/statistics.html +10 -4
- laketower/templates/tables/view.html +48 -42
- laketower/web.py +253 -30
- {laketower-0.5.1.dist-info → laketower-0.6.5.dist-info}/METADATA +189 -5
- laketower-0.6.5.dist-info/RECORD +35 -0
- laketower-0.6.5.dist-info/entry_points.txt +2 -0
- laketower-0.5.1.dist-info/RECORD +0 -22
- laketower-0.5.1.dist-info/entry_points.txt +0 -2
- {laketower-0.5.1.dist-info → laketower-0.6.5.dist-info}/WHEEL +0 -0
- {laketower-0.5.1.dist-info → laketower-0.6.5.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,610 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--dt-row-selected: 13, 110, 253;
|
|
3
|
+
--dt-row-selected-text: 255, 255, 255;
|
|
4
|
+
--dt-row-selected-link: 228, 228, 228;
|
|
5
|
+
--dt-row-stripe: 0, 0, 0;
|
|
6
|
+
--dt-row-hover: 0, 0, 0;
|
|
7
|
+
--dt-column-ordering: 0, 0, 0;
|
|
8
|
+
--dt-header-align-items: center;
|
|
9
|
+
--dt-header-vertical-align: middle;
|
|
10
|
+
--dt-html-background: white;
|
|
11
|
+
}
|
|
12
|
+
:root.dark {
|
|
13
|
+
--dt-html-background: rgb(33, 37, 41);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
table.dataTable tbody td.dt-control {
|
|
17
|
+
text-align: center;
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
}
|
|
20
|
+
table.dataTable tbody td.dt-control:before {
|
|
21
|
+
display: inline-block;
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
content: "";
|
|
24
|
+
border-top: 5px solid transparent;
|
|
25
|
+
border-left: 10px solid rgba(0, 0, 0, 0.5);
|
|
26
|
+
border-bottom: 5px solid transparent;
|
|
27
|
+
border-right: 0px solid transparent;
|
|
28
|
+
}
|
|
29
|
+
table.dataTable tbody tr.dt-hasChild td.dt-control:before {
|
|
30
|
+
border-top: 10px solid rgba(0, 0, 0, 0.5);
|
|
31
|
+
border-left: 5px solid transparent;
|
|
32
|
+
border-bottom: 0px solid transparent;
|
|
33
|
+
border-right: 5px solid transparent;
|
|
34
|
+
}
|
|
35
|
+
table.dataTable tfoot:empty {
|
|
36
|
+
display: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
html.dark table.dataTable td.dt-control:before,
|
|
40
|
+
:root[data-bs-theme=dark] table.dataTable td.dt-control:before,
|
|
41
|
+
:root[data-theme=dark] table.dataTable td.dt-control:before {
|
|
42
|
+
border-left-color: rgba(255, 255, 255, 0.5);
|
|
43
|
+
}
|
|
44
|
+
html.dark table.dataTable tr.dt-hasChild td.dt-control:before,
|
|
45
|
+
:root[data-bs-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before,
|
|
46
|
+
:root[data-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before {
|
|
47
|
+
border-top-color: rgba(255, 255, 255, 0.5);
|
|
48
|
+
border-left-color: transparent;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
div.dt-scroll {
|
|
52
|
+
width: 100%;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
div.dt-scroll-body thead tr,
|
|
56
|
+
div.dt-scroll-body tfoot tr {
|
|
57
|
+
height: 0;
|
|
58
|
+
}
|
|
59
|
+
div.dt-scroll-body thead tr th, div.dt-scroll-body thead tr td,
|
|
60
|
+
div.dt-scroll-body tfoot tr th,
|
|
61
|
+
div.dt-scroll-body tfoot tr td {
|
|
62
|
+
height: 0 !important;
|
|
63
|
+
padding-top: 0px !important;
|
|
64
|
+
padding-bottom: 0px !important;
|
|
65
|
+
border-top-width: 0px !important;
|
|
66
|
+
border-bottom-width: 0px !important;
|
|
67
|
+
}
|
|
68
|
+
div.dt-scroll-body thead tr th div.dt-scroll-sizing, div.dt-scroll-body thead tr td div.dt-scroll-sizing,
|
|
69
|
+
div.dt-scroll-body tfoot tr th div.dt-scroll-sizing,
|
|
70
|
+
div.dt-scroll-body tfoot tr td div.dt-scroll-sizing {
|
|
71
|
+
height: 0 !important;
|
|
72
|
+
overflow: hidden !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
table.dataTable thead > tr > th:active,
|
|
76
|
+
table.dataTable thead > tr > td:active {
|
|
77
|
+
outline: none;
|
|
78
|
+
}
|
|
79
|
+
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
|
|
80
|
+
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
|
|
81
|
+
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
|
|
82
|
+
position: absolute;
|
|
83
|
+
display: block;
|
|
84
|
+
bottom: 50%;
|
|
85
|
+
content: "\25B2";
|
|
86
|
+
content: "\25B2"/"";
|
|
87
|
+
}
|
|
88
|
+
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
|
|
89
|
+
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
|
|
90
|
+
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
|
|
91
|
+
position: absolute;
|
|
92
|
+
display: block;
|
|
93
|
+
top: 50%;
|
|
94
|
+
content: "\25BC";
|
|
95
|
+
content: "\25BC"/"";
|
|
96
|
+
}
|
|
97
|
+
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order,
|
|
98
|
+
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order,
|
|
99
|
+
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order,
|
|
100
|
+
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order,
|
|
101
|
+
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order {
|
|
102
|
+
position: relative;
|
|
103
|
+
width: 12px;
|
|
104
|
+
height: 24px;
|
|
105
|
+
}
|
|
106
|
+
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
|
|
107
|
+
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
|
|
108
|
+
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:after,
|
|
109
|
+
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:before,
|
|
110
|
+
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
|
|
111
|
+
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
|
|
112
|
+
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:after,
|
|
113
|
+
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:before,
|
|
114
|
+
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
|
|
115
|
+
left: 0;
|
|
116
|
+
opacity: 0.125;
|
|
117
|
+
line-height: 9px;
|
|
118
|
+
font-size: 0.8em;
|
|
119
|
+
}
|
|
120
|
+
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc,
|
|
121
|
+
table.dataTable thead > tr > td.dt-orderable-asc,
|
|
122
|
+
table.dataTable thead > tr > td.dt-orderable-desc {
|
|
123
|
+
cursor: pointer;
|
|
124
|
+
}
|
|
125
|
+
table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover,
|
|
126
|
+
table.dataTable thead > tr > td.dt-orderable-asc:hover,
|
|
127
|
+
table.dataTable thead > tr > td.dt-orderable-desc:hover {
|
|
128
|
+
outline: 2px solid rgba(0, 0, 0, 0.05);
|
|
129
|
+
outline-offset: -2px;
|
|
130
|
+
}
|
|
131
|
+
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
|
|
132
|
+
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before,
|
|
133
|
+
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
|
|
134
|
+
opacity: 0.6;
|
|
135
|
+
}
|
|
136
|
+
table.dataTable thead > tr > th.dt-orderable-none:not(.dt-ordering-asc, .dt-ordering-desc) span.dt-column-order:empty, table.dataTable thead > tr > th.sorting_desc_disabled span.dt-column-order:after, table.dataTable thead > tr > th.sorting_asc_disabled span.dt-column-order:before,
|
|
137
|
+
table.dataTable thead > tr > td.dt-orderable-none:not(.dt-ordering-asc, .dt-ordering-desc) span.dt-column-order:empty,
|
|
138
|
+
table.dataTable thead > tr > td.sorting_desc_disabled span.dt-column-order:after,
|
|
139
|
+
table.dataTable thead > tr > td.sorting_asc_disabled span.dt-column-order:before {
|
|
140
|
+
display: none;
|
|
141
|
+
}
|
|
142
|
+
table.dataTable thead > tr > th:active,
|
|
143
|
+
table.dataTable thead > tr > td:active {
|
|
144
|
+
outline: none;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
table.dataTable thead > tr > th div.dt-column-header,
|
|
148
|
+
table.dataTable thead > tr > th div.dt-column-footer,
|
|
149
|
+
table.dataTable thead > tr > td div.dt-column-header,
|
|
150
|
+
table.dataTable thead > tr > td div.dt-column-footer,
|
|
151
|
+
table.dataTable tfoot > tr > th div.dt-column-header,
|
|
152
|
+
table.dataTable tfoot > tr > th div.dt-column-footer,
|
|
153
|
+
table.dataTable tfoot > tr > td div.dt-column-header,
|
|
154
|
+
table.dataTable tfoot > tr > td div.dt-column-footer {
|
|
155
|
+
display: flex;
|
|
156
|
+
justify-content: space-between;
|
|
157
|
+
align-items: var(--dt-header-align-items);
|
|
158
|
+
gap: 4px;
|
|
159
|
+
}
|
|
160
|
+
table.dataTable thead > tr > th div.dt-column-header span.dt-column-title,
|
|
161
|
+
table.dataTable thead > tr > th div.dt-column-footer span.dt-column-title,
|
|
162
|
+
table.dataTable thead > tr > td div.dt-column-header span.dt-column-title,
|
|
163
|
+
table.dataTable thead > tr > td div.dt-column-footer span.dt-column-title,
|
|
164
|
+
table.dataTable tfoot > tr > th div.dt-column-header span.dt-column-title,
|
|
165
|
+
table.dataTable tfoot > tr > th div.dt-column-footer span.dt-column-title,
|
|
166
|
+
table.dataTable tfoot > tr > td div.dt-column-header span.dt-column-title,
|
|
167
|
+
table.dataTable tfoot > tr > td div.dt-column-footer span.dt-column-title {
|
|
168
|
+
flex-grow: 1;
|
|
169
|
+
}
|
|
170
|
+
table.dataTable thead > tr > th div.dt-column-header span.dt-column-title:empty,
|
|
171
|
+
table.dataTable thead > tr > th div.dt-column-footer span.dt-column-title:empty,
|
|
172
|
+
table.dataTable thead > tr > td div.dt-column-header span.dt-column-title:empty,
|
|
173
|
+
table.dataTable thead > tr > td div.dt-column-footer span.dt-column-title:empty,
|
|
174
|
+
table.dataTable tfoot > tr > th div.dt-column-header span.dt-column-title:empty,
|
|
175
|
+
table.dataTable tfoot > tr > th div.dt-column-footer span.dt-column-title:empty,
|
|
176
|
+
table.dataTable tfoot > tr > td div.dt-column-header span.dt-column-title:empty,
|
|
177
|
+
table.dataTable tfoot > tr > td div.dt-column-footer span.dt-column-title:empty {
|
|
178
|
+
display: none;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
div.dt-scroll-body > table.dataTable > thead > tr > th,
|
|
182
|
+
div.dt-scroll-body > table.dataTable > thead > tr > td {
|
|
183
|
+
overflow: hidden;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
:root.dark table.dataTable thead > tr > th.dt-orderable-asc:hover, :root.dark table.dataTable thead > tr > th.dt-orderable-desc:hover,
|
|
187
|
+
:root.dark table.dataTable thead > tr > td.dt-orderable-asc:hover,
|
|
188
|
+
:root.dark table.dataTable thead > tr > td.dt-orderable-desc:hover,
|
|
189
|
+
:root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-asc:hover,
|
|
190
|
+
:root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-desc:hover,
|
|
191
|
+
:root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-asc:hover,
|
|
192
|
+
:root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-desc:hover {
|
|
193
|
+
outline: 2px solid rgba(255, 255, 255, 0.05);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
div.dt-processing {
|
|
197
|
+
position: absolute;
|
|
198
|
+
top: 50%;
|
|
199
|
+
left: 50%;
|
|
200
|
+
width: 200px;
|
|
201
|
+
margin-left: -100px;
|
|
202
|
+
margin-top: -22px;
|
|
203
|
+
text-align: center;
|
|
204
|
+
padding: 2px;
|
|
205
|
+
z-index: 10;
|
|
206
|
+
}
|
|
207
|
+
div.dt-processing > div:last-child {
|
|
208
|
+
position: relative;
|
|
209
|
+
width: 80px;
|
|
210
|
+
height: 15px;
|
|
211
|
+
margin: 1em auto;
|
|
212
|
+
}
|
|
213
|
+
div.dt-processing > div:last-child > div {
|
|
214
|
+
position: absolute;
|
|
215
|
+
top: 0;
|
|
216
|
+
width: 13px;
|
|
217
|
+
height: 13px;
|
|
218
|
+
border-radius: 50%;
|
|
219
|
+
background: rgb(13, 110, 253);
|
|
220
|
+
background: rgb(var(--dt-row-selected));
|
|
221
|
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
222
|
+
}
|
|
223
|
+
div.dt-processing > div:last-child > div:nth-child(1) {
|
|
224
|
+
left: 8px;
|
|
225
|
+
animation: datatables-loader-1 0.6s infinite;
|
|
226
|
+
}
|
|
227
|
+
div.dt-processing > div:last-child > div:nth-child(2) {
|
|
228
|
+
left: 8px;
|
|
229
|
+
animation: datatables-loader-2 0.6s infinite;
|
|
230
|
+
}
|
|
231
|
+
div.dt-processing > div:last-child > div:nth-child(3) {
|
|
232
|
+
left: 32px;
|
|
233
|
+
animation: datatables-loader-2 0.6s infinite;
|
|
234
|
+
}
|
|
235
|
+
div.dt-processing > div:last-child > div:nth-child(4) {
|
|
236
|
+
left: 56px;
|
|
237
|
+
animation: datatables-loader-3 0.6s infinite;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
@keyframes datatables-loader-1 {
|
|
241
|
+
0% {
|
|
242
|
+
transform: scale(0);
|
|
243
|
+
}
|
|
244
|
+
100% {
|
|
245
|
+
transform: scale(1);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
@keyframes datatables-loader-3 {
|
|
249
|
+
0% {
|
|
250
|
+
transform: scale(1);
|
|
251
|
+
}
|
|
252
|
+
100% {
|
|
253
|
+
transform: scale(0);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
@keyframes datatables-loader-2 {
|
|
257
|
+
0% {
|
|
258
|
+
transform: translate(0, 0);
|
|
259
|
+
}
|
|
260
|
+
100% {
|
|
261
|
+
transform: translate(24px, 0);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
table.dataTable.nowrap th, table.dataTable.nowrap td {
|
|
265
|
+
white-space: nowrap;
|
|
266
|
+
}
|
|
267
|
+
table.dataTable th,
|
|
268
|
+
table.dataTable td {
|
|
269
|
+
box-sizing: border-box;
|
|
270
|
+
}
|
|
271
|
+
table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date,
|
|
272
|
+
table.dataTable td.dt-type-numeric,
|
|
273
|
+
table.dataTable td.dt-type-date {
|
|
274
|
+
text-align: right;
|
|
275
|
+
}
|
|
276
|
+
table.dataTable th.dt-type-numeric div.dt-column-header,
|
|
277
|
+
table.dataTable th.dt-type-numeric div.dt-column-footer, table.dataTable th.dt-type-date div.dt-column-header,
|
|
278
|
+
table.dataTable th.dt-type-date div.dt-column-footer,
|
|
279
|
+
table.dataTable td.dt-type-numeric div.dt-column-header,
|
|
280
|
+
table.dataTable td.dt-type-numeric div.dt-column-footer,
|
|
281
|
+
table.dataTable td.dt-type-date div.dt-column-header,
|
|
282
|
+
table.dataTable td.dt-type-date div.dt-column-footer {
|
|
283
|
+
flex-direction: row-reverse;
|
|
284
|
+
}
|
|
285
|
+
table.dataTable th.dt-left,
|
|
286
|
+
table.dataTable td.dt-left {
|
|
287
|
+
text-align: left;
|
|
288
|
+
}
|
|
289
|
+
table.dataTable th.dt-left div.dt-column-header,
|
|
290
|
+
table.dataTable th.dt-left div.dt-column-footer,
|
|
291
|
+
table.dataTable td.dt-left div.dt-column-header,
|
|
292
|
+
table.dataTable td.dt-left div.dt-column-footer {
|
|
293
|
+
flex-direction: row;
|
|
294
|
+
}
|
|
295
|
+
table.dataTable th.dt-center,
|
|
296
|
+
table.dataTable td.dt-center {
|
|
297
|
+
text-align: center;
|
|
298
|
+
}
|
|
299
|
+
table.dataTable th.dt-right,
|
|
300
|
+
table.dataTable td.dt-right {
|
|
301
|
+
text-align: right;
|
|
302
|
+
}
|
|
303
|
+
table.dataTable th.dt-right div.dt-column-header,
|
|
304
|
+
table.dataTable th.dt-right div.dt-column-footer,
|
|
305
|
+
table.dataTable td.dt-right div.dt-column-header,
|
|
306
|
+
table.dataTable td.dt-right div.dt-column-footer {
|
|
307
|
+
flex-direction: row-reverse;
|
|
308
|
+
}
|
|
309
|
+
table.dataTable th.dt-justify,
|
|
310
|
+
table.dataTable td.dt-justify {
|
|
311
|
+
text-align: justify;
|
|
312
|
+
}
|
|
313
|
+
table.dataTable th.dt-justify div.dt-column-header,
|
|
314
|
+
table.dataTable th.dt-justify div.dt-column-footer,
|
|
315
|
+
table.dataTable td.dt-justify div.dt-column-header,
|
|
316
|
+
table.dataTable td.dt-justify div.dt-column-footer {
|
|
317
|
+
flex-direction: row;
|
|
318
|
+
}
|
|
319
|
+
table.dataTable th.dt-nowrap,
|
|
320
|
+
table.dataTable td.dt-nowrap {
|
|
321
|
+
white-space: nowrap;
|
|
322
|
+
}
|
|
323
|
+
table.dataTable th.dt-empty,
|
|
324
|
+
table.dataTable td.dt-empty {
|
|
325
|
+
text-align: center;
|
|
326
|
+
vertical-align: top;
|
|
327
|
+
}
|
|
328
|
+
table.dataTable thead th,
|
|
329
|
+
table.dataTable thead td,
|
|
330
|
+
table.dataTable tfoot th,
|
|
331
|
+
table.dataTable tfoot td {
|
|
332
|
+
text-align: left;
|
|
333
|
+
vertical-align: var(--dt-header-vertical-align);
|
|
334
|
+
}
|
|
335
|
+
table.dataTable thead th.dt-head-left,
|
|
336
|
+
table.dataTable thead td.dt-head-left,
|
|
337
|
+
table.dataTable tfoot th.dt-head-left,
|
|
338
|
+
table.dataTable tfoot td.dt-head-left {
|
|
339
|
+
text-align: left;
|
|
340
|
+
}
|
|
341
|
+
table.dataTable thead th.dt-head-left div.dt-column-header,
|
|
342
|
+
table.dataTable thead th.dt-head-left div.dt-column-footer,
|
|
343
|
+
table.dataTable thead td.dt-head-left div.dt-column-header,
|
|
344
|
+
table.dataTable thead td.dt-head-left div.dt-column-footer,
|
|
345
|
+
table.dataTable tfoot th.dt-head-left div.dt-column-header,
|
|
346
|
+
table.dataTable tfoot th.dt-head-left div.dt-column-footer,
|
|
347
|
+
table.dataTable tfoot td.dt-head-left div.dt-column-header,
|
|
348
|
+
table.dataTable tfoot td.dt-head-left div.dt-column-footer {
|
|
349
|
+
flex-direction: row;
|
|
350
|
+
}
|
|
351
|
+
table.dataTable thead th.dt-head-center,
|
|
352
|
+
table.dataTable thead td.dt-head-center,
|
|
353
|
+
table.dataTable tfoot th.dt-head-center,
|
|
354
|
+
table.dataTable tfoot td.dt-head-center {
|
|
355
|
+
text-align: center;
|
|
356
|
+
}
|
|
357
|
+
table.dataTable thead th.dt-head-right,
|
|
358
|
+
table.dataTable thead td.dt-head-right,
|
|
359
|
+
table.dataTable tfoot th.dt-head-right,
|
|
360
|
+
table.dataTable tfoot td.dt-head-right {
|
|
361
|
+
text-align: right;
|
|
362
|
+
}
|
|
363
|
+
table.dataTable thead th.dt-head-right div.dt-column-header,
|
|
364
|
+
table.dataTable thead th.dt-head-right div.dt-column-footer,
|
|
365
|
+
table.dataTable thead td.dt-head-right div.dt-column-header,
|
|
366
|
+
table.dataTable thead td.dt-head-right div.dt-column-footer,
|
|
367
|
+
table.dataTable tfoot th.dt-head-right div.dt-column-header,
|
|
368
|
+
table.dataTable tfoot th.dt-head-right div.dt-column-footer,
|
|
369
|
+
table.dataTable tfoot td.dt-head-right div.dt-column-header,
|
|
370
|
+
table.dataTable tfoot td.dt-head-right div.dt-column-footer {
|
|
371
|
+
flex-direction: row-reverse;
|
|
372
|
+
}
|
|
373
|
+
table.dataTable thead th.dt-head-justify,
|
|
374
|
+
table.dataTable thead td.dt-head-justify,
|
|
375
|
+
table.dataTable tfoot th.dt-head-justify,
|
|
376
|
+
table.dataTable tfoot td.dt-head-justify {
|
|
377
|
+
text-align: justify;
|
|
378
|
+
}
|
|
379
|
+
table.dataTable thead th.dt-head-justify div.dt-column-header,
|
|
380
|
+
table.dataTable thead th.dt-head-justify div.dt-column-footer,
|
|
381
|
+
table.dataTable thead td.dt-head-justify div.dt-column-header,
|
|
382
|
+
table.dataTable thead td.dt-head-justify div.dt-column-footer,
|
|
383
|
+
table.dataTable tfoot th.dt-head-justify div.dt-column-header,
|
|
384
|
+
table.dataTable tfoot th.dt-head-justify div.dt-column-footer,
|
|
385
|
+
table.dataTable tfoot td.dt-head-justify div.dt-column-header,
|
|
386
|
+
table.dataTable tfoot td.dt-head-justify div.dt-column-footer {
|
|
387
|
+
flex-direction: row;
|
|
388
|
+
}
|
|
389
|
+
table.dataTable thead th.dt-head-nowrap,
|
|
390
|
+
table.dataTable thead td.dt-head-nowrap,
|
|
391
|
+
table.dataTable tfoot th.dt-head-nowrap,
|
|
392
|
+
table.dataTable tfoot td.dt-head-nowrap {
|
|
393
|
+
white-space: nowrap;
|
|
394
|
+
}
|
|
395
|
+
table.dataTable tbody th.dt-body-left,
|
|
396
|
+
table.dataTable tbody td.dt-body-left {
|
|
397
|
+
text-align: left;
|
|
398
|
+
}
|
|
399
|
+
table.dataTable tbody th.dt-body-center,
|
|
400
|
+
table.dataTable tbody td.dt-body-center {
|
|
401
|
+
text-align: center;
|
|
402
|
+
}
|
|
403
|
+
table.dataTable tbody th.dt-body-right,
|
|
404
|
+
table.dataTable tbody td.dt-body-right {
|
|
405
|
+
text-align: right;
|
|
406
|
+
}
|
|
407
|
+
table.dataTable tbody th.dt-body-justify,
|
|
408
|
+
table.dataTable tbody td.dt-body-justify {
|
|
409
|
+
text-align: justify;
|
|
410
|
+
}
|
|
411
|
+
table.dataTable tbody th.dt-body-nowrap,
|
|
412
|
+
table.dataTable tbody td.dt-body-nowrap {
|
|
413
|
+
white-space: nowrap;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
/*! Bootstrap 5 integration for DataTables
|
|
417
|
+
*
|
|
418
|
+
* ©2020 SpryMedia Ltd, all rights reserved.
|
|
419
|
+
* License: MIT datatables.net/license/mit
|
|
420
|
+
*/
|
|
421
|
+
table.table.dataTable {
|
|
422
|
+
clear: both;
|
|
423
|
+
margin-bottom: 0;
|
|
424
|
+
max-width: none;
|
|
425
|
+
border-spacing: 0;
|
|
426
|
+
}
|
|
427
|
+
table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
|
|
428
|
+
box-shadow: none;
|
|
429
|
+
}
|
|
430
|
+
table.table.dataTable > :not(caption) > * > * {
|
|
431
|
+
background-color: var(--bs-table-bg);
|
|
432
|
+
}
|
|
433
|
+
table.table.dataTable > tbody > tr {
|
|
434
|
+
background-color: transparent;
|
|
435
|
+
}
|
|
436
|
+
table.table.dataTable > tbody > tr.selected > * {
|
|
437
|
+
box-shadow: inset 0 0 0 9999px rgb(13, 110, 253);
|
|
438
|
+
box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
|
|
439
|
+
color: rgb(255, 255, 255);
|
|
440
|
+
color: rgb(var(--dt-row-selected-text));
|
|
441
|
+
}
|
|
442
|
+
table.table.dataTable > tbody > tr.selected a {
|
|
443
|
+
color: rgb(228, 228, 228);
|
|
444
|
+
color: rgb(var(--dt-row-selected-link));
|
|
445
|
+
}
|
|
446
|
+
table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
|
|
447
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.05);
|
|
448
|
+
}
|
|
449
|
+
table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1).selected > * {
|
|
450
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.95);
|
|
451
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.95);
|
|
452
|
+
}
|
|
453
|
+
table.table.dataTable.table-hover > tbody > tr:hover > * {
|
|
454
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.075);
|
|
455
|
+
}
|
|
456
|
+
table.table.dataTable.table-hover > tbody > tr.selected:hover > * {
|
|
457
|
+
box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.975);
|
|
458
|
+
box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.975);
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
div.dt-container div.dt-layout-start > *:not(:last-child) {
|
|
462
|
+
margin-right: 1em;
|
|
463
|
+
}
|
|
464
|
+
div.dt-container div.dt-layout-end > *:not(:first-child) {
|
|
465
|
+
margin-left: 1em;
|
|
466
|
+
}
|
|
467
|
+
div.dt-container div.dt-layout-full {
|
|
468
|
+
width: 100%;
|
|
469
|
+
}
|
|
470
|
+
div.dt-container div.dt-layout-full > *:only-child {
|
|
471
|
+
margin-left: auto;
|
|
472
|
+
margin-right: auto;
|
|
473
|
+
}
|
|
474
|
+
div.dt-container div.dt-layout-table > div {
|
|
475
|
+
display: block !important;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
@media screen and (max-width: 767px) {
|
|
479
|
+
div.dt-container div.dt-layout-start > *:not(:last-child) {
|
|
480
|
+
margin-right: 0;
|
|
481
|
+
}
|
|
482
|
+
div.dt-container div.dt-layout-end > *:not(:first-child) {
|
|
483
|
+
margin-left: 0;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
div.dt-container {
|
|
487
|
+
position: relative;
|
|
488
|
+
}
|
|
489
|
+
div.dt-container div.dt-length label {
|
|
490
|
+
font-weight: normal;
|
|
491
|
+
text-align: left;
|
|
492
|
+
white-space: nowrap;
|
|
493
|
+
}
|
|
494
|
+
div.dt-container div.dt-length select {
|
|
495
|
+
width: auto;
|
|
496
|
+
display: inline-block;
|
|
497
|
+
margin-right: 0.5em;
|
|
498
|
+
}
|
|
499
|
+
div.dt-container div.dt-search {
|
|
500
|
+
text-align: right;
|
|
501
|
+
}
|
|
502
|
+
div.dt-container div.dt-search label {
|
|
503
|
+
font-weight: normal;
|
|
504
|
+
white-space: nowrap;
|
|
505
|
+
text-align: left;
|
|
506
|
+
}
|
|
507
|
+
div.dt-container div.dt-search input {
|
|
508
|
+
margin-left: 0.5em;
|
|
509
|
+
display: inline-block;
|
|
510
|
+
width: auto;
|
|
511
|
+
}
|
|
512
|
+
div.dt-container div.dt-paging {
|
|
513
|
+
margin: 0;
|
|
514
|
+
}
|
|
515
|
+
div.dt-container div.dt-paging ul.pagination {
|
|
516
|
+
margin: 2px 0;
|
|
517
|
+
flex-wrap: wrap;
|
|
518
|
+
}
|
|
519
|
+
div.dt-container div.dt-row {
|
|
520
|
+
position: relative;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
div.dt-scroll-head table.dataTable {
|
|
524
|
+
margin-bottom: 0 !important;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
div.dt-scroll-body {
|
|
528
|
+
border-bottom-color: var(--bs-border-color);
|
|
529
|
+
border-bottom-width: var(--bs-border-width);
|
|
530
|
+
border-bottom-style: solid;
|
|
531
|
+
}
|
|
532
|
+
div.dt-scroll-body > table {
|
|
533
|
+
border-top: none;
|
|
534
|
+
margin-top: 0 !important;
|
|
535
|
+
margin-bottom: 0 !important;
|
|
536
|
+
}
|
|
537
|
+
div.dt-scroll-body > table > tbody > tr:first-child {
|
|
538
|
+
border-top-width: 0;
|
|
539
|
+
}
|
|
540
|
+
div.dt-scroll-body > table > thead > tr {
|
|
541
|
+
border-width: 0 !important;
|
|
542
|
+
}
|
|
543
|
+
div.dt-scroll-body > table > tbody > tr:last-child > * {
|
|
544
|
+
border-bottom: none;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
div.dt-scroll-foot > .dt-scroll-footInner {
|
|
548
|
+
box-sizing: content-box;
|
|
549
|
+
}
|
|
550
|
+
div.dt-scroll-foot > .dt-scroll-footInner > table {
|
|
551
|
+
margin-top: 0 !important;
|
|
552
|
+
border-top: none;
|
|
553
|
+
}
|
|
554
|
+
div.dt-scroll-foot > .dt-scroll-footInner > table > tfoot > tr:first-child {
|
|
555
|
+
border-top-width: 0 !important;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
@media screen and (max-width: 767px) {
|
|
559
|
+
div.dt-container div.dt-length,
|
|
560
|
+
div.dt-container div.dt-search,
|
|
561
|
+
div.dt-container div.dt-info,
|
|
562
|
+
div.dt-container div.dt-paging {
|
|
563
|
+
text-align: center;
|
|
564
|
+
}
|
|
565
|
+
div.dt-container .row {
|
|
566
|
+
--bs-gutter-y: 0.5rem;
|
|
567
|
+
}
|
|
568
|
+
div.dt-container div.dt-paging ul.pagination {
|
|
569
|
+
justify-content: center !important;
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
table.dataTable.table-sm > thead > tr th.dt-orderable-asc, table.dataTable.table-sm > thead > tr th.dt-orderable-desc, table.dataTable.table-sm > thead > tr th.dt-ordering-asc, table.dataTable.table-sm > thead > tr th.dt-ordering-desc,
|
|
573
|
+
table.dataTable.table-sm > thead > tr td.dt-orderable-asc,
|
|
574
|
+
table.dataTable.table-sm > thead > tr td.dt-orderable-desc,
|
|
575
|
+
table.dataTable.table-sm > thead > tr td.dt-ordering-asc,
|
|
576
|
+
table.dataTable.table-sm > thead > tr td.dt-ordering-desc {
|
|
577
|
+
padding-right: 0.25rem;
|
|
578
|
+
}
|
|
579
|
+
table.dataTable.table-sm > thead > tr th.dt-orderable-asc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-orderable-desc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-ordering-asc span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-ordering-desc span.dt-column-order,
|
|
580
|
+
table.dataTable.table-sm > thead > tr td.dt-orderable-asc span.dt-column-order,
|
|
581
|
+
table.dataTable.table-sm > thead > tr td.dt-orderable-desc span.dt-column-order,
|
|
582
|
+
table.dataTable.table-sm > thead > tr td.dt-ordering-asc span.dt-column-order,
|
|
583
|
+
table.dataTable.table-sm > thead > tr td.dt-ordering-desc span.dt-column-order {
|
|
584
|
+
right: 0.25rem;
|
|
585
|
+
}
|
|
586
|
+
table.dataTable.table-sm > thead > tr th.dt-type-date span.dt-column-order, table.dataTable.table-sm > thead > tr th.dt-type-numeric span.dt-column-order,
|
|
587
|
+
table.dataTable.table-sm > thead > tr td.dt-type-date span.dt-column-order,
|
|
588
|
+
table.dataTable.table-sm > thead > tr td.dt-type-numeric span.dt-column-order {
|
|
589
|
+
left: 0.25rem;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
div.dt-scroll-head table.table-bordered {
|
|
593
|
+
border-bottom-width: 0;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
div.table-responsive > div.dt-container > div.row {
|
|
597
|
+
margin: 0;
|
|
598
|
+
}
|
|
599
|
+
div.table-responsive > div.dt-container > div.row > div[class^=col-]:first-child {
|
|
600
|
+
padding-left: 0;
|
|
601
|
+
}
|
|
602
|
+
div.table-responsive > div.dt-container > div.row > div[class^=col-]:last-child {
|
|
603
|
+
padding-right: 0;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
:root[data-bs-theme=dark] {
|
|
607
|
+
--dt-row-hover: 255, 255, 255;
|
|
608
|
+
--dt-row-stripe: 255, 255, 255;
|
|
609
|
+
--dt-column-ordering: 255, 255, 255;
|
|
610
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--dtcc-button_background: transparent;--dtcc-button_border: none;--dtcc-button_border-radius: 3px;--dtcc-button_opacity: 0.4;--dtcc-button_padding: 3px;--dtcc-button_disabled-opacity: 0.6;--dtcc-button_empty-opacity: 0.8;--dtcc-button_hover-border: none;--dtcc-button_hover-background: rgb(var(--bs-tertiary-bg-rgb));--dtcc-button_hover-opacity: 0.9;--dtcc-button-icon_color: var(--bs-body-color);--dtcc-button-icon_size: 16px;--dtcc-button-icon_margin: 0.75em;--dtcc-spacer_border: var(--bs-border-width) solid var(--bs-border-color);--dtcc-spacer_margin: 0.5em;--dtcc-title_background: rgb(var(--bs-tertiary-bg-rgb));--dtcc-title_border-left: none;--dtcc-title_border-right: none;--dtcc-title_border-top: none;--dtcc-title_border-bottom: ;--dtcc-title_margin: 0;--dtcc-title_padding: 0.5em 0;--dtcc-title_text-align: center;--dtcc-search-icon_color: var(--bs-body-color);--dtcc-search-icon_hover-background: rgb(var(--bs-tertiary-bg-rgb));--dtcc-search-icon_opacity: 0.4;--dtcc-search-icon_size: 16px;--dtcc-search-input_border: var(--bs-border-width) solid var(--bs-border-color);--dtcc-search-input_background-color: var(--bs-body-bg);--dtcc-search-input_background: var(--bs-body-bg);--dtcc-search-input_border-radius: var(--bs-border-radius);--dtcc-search-input_padding: .25rem .5rem;--dtcc-search-input_flexCalc: 28px;--dtcc-search-clear_right: 15px;--dtcc-search-clear_bottom: 5px;--dtcc-search-input_margin-top: 0.5em;--dtcc-search-input_padding-right: 32px;--dtcc-list-buttons_max-height: 300px;--dtcc-list-buttons_background: rgb(var(--bs-secondary-bg-rgb))}:root .dropdown-menu{--dtcc-dropdown_background: var(--bs-dropdown-bg);--dtcc-dropdown_border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);--dtcc-dropdown_border-radius: var(--bs-dropdown-border-radius);--dtcc-dropdown_box-shadow: var(--bs-dropdown-box-shadow);--dtcc-dropdown_margin: 3px 0 0 0;--dtcc-dropdown_padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);--dtcc-dropdown_width: 250px;--dtcc-dropdown_z-index: var(--bs-dropdown-zindex);--dtcc-dropdown-button_background: transparent;--dtcc-dropdown-button_border: none;--dtcc-dropdown-button_color: var(--bs-dropdown-link-color);--dtcc-dropdown-button_padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);--dtcc-dropdown-button_hover-background: var(--bs-dropdown-link-hover-bg);--dtcc-dropdown-icon_vertical-align: top;--dtcc-dropdown-search_padding: 0.5em 1em}table.dataTable div.dt-column-header span.dt-column-title:empty+span.dtcc{flex-grow:1;margin-left:auto}table.dataTable .dt-type-numeric div.dt-column-header span.dt-column-title:empty+span.dtcc,table.dataTable .dt-type-date div.dt-column-header span.dt-column-title:empty+span.dtcc,table.dataTable .dt-right div.dt-column-header span.dt-column-title:empty+span.dtcc{margin-right:auto;margin-left:0}table.dataTable>thead>tr.dtcc-row_no-bottom-border>*{border-bottom:none !important}table.dataTable>thead>tr.dtcc-row_no-top-padding>*{padding-top:0 !important}table.dataTable span.dtcc{font-weight:normal;white-space:nowrap;display:inline-flex;align-items:center}table.dataTable span.dtcc button.dtcc-button{display:inline-flex;padding:var(--dtcc-button_padding);border:var(--dtcc-button_border);border-radius:var(--dtcc-button_border-radius);background:var(--dtcc-button_background);cursor:pointer;opacity:var(--dtcc-button_opacity)}table.dataTable span.dtcc button.dtcc-button:hover{border:var(--dtcc-button_hover-border);background:var(--dtcc-button_hover-background);opacity:var(--dtcc-button_hover-opacity)}table.dataTable span.dtcc button.dtcc-button.dtcc-button_disabled{cursor:initial;opacity:var(--dtcc-button_disabled-opacity)}table.dataTable span.dtcc button.dtcc-button>span.dtcc-button-state{display:none}table.dataTable span.dtcc button.dtcc-button>span.dtcc-button-extra{display:none}table.dataTable span.dtcc button.dtcc-button_active{opacity:1}table.dataTable span.dtcc input{box-sizing:border-box;width:100%}table.dataTable span.dtcc span.dtcc-button-icon{display:inline-block;box-sizing:content-box;color:var(--dtcc-button-icon_color);vertical-align:middle;line-height:var(--dtcc-button-icon_size);height:var(--dtcc-button-icon_size)}table.dataTable span.dtcc span.dtcc-button-icon svg{width:var(--dtcc-button-icon_size);height:var(--dtcc-button-icon_size);vertical-align:initial}table.dataTable span.dtcc span.dtcc-button-text{display:none}table.dataTable span.dtcc div.dtcc-spacer{display:inline-block;margin:0 var(--dtcc-spacer_margin);padding-left:.5em;border-left:var(--dtcc-spacer_border);vertical-align:middle;white-space:nowrap;cursor:initial}table.dataTable span.dtcc div.dtcc-spacer:empty{width:1px;height:1em;padding-left:0}table.dataTable span.dtcc div.dtcc-search{flex-grow:1}table.dataTable span.dtcc div.dtcc-search div.dtcc-search-title{margin-bottom:.25em;text-align:left}table.dataTable span.dtcc div.dtcc-search:empty{display:none}table.dataTable span.dtcc div.dtcc-search.dtcc-search_active>div div.dtcc-search-type-icon svg{opacity:1}table.dataTable span.dtcc div.dtcc-search:not(.dtcc-search_active) span.dtcc-search-clear{display:none}table.dataTable span.dtcc div.dtcc-search>div{position:relative}table.dataTable span.dtcc div.dtcc-search>div div.dtcc-search-type-icon{display:flex;position:absolute;top:0;align-items:center;justify-content:center;width:30px;height:100%}table.dataTable span.dtcc div.dtcc-search>div div.dtcc-search-type-icon svg{width:var(--dtcc-search-icon_size);height:var(--dtcc-search-icon_size);color:var(--dtcc-search-icon_color);opacity:var(--dtcc-search-icon_opacity);vertical-align:initial}table.dataTable span.dtcc div.dtcc-search>div div.dtcc-search-type-icon:hover{background-color:var(--dtcc-search-icon_hover-background)}table.dataTable span.dtcc div.dtcc-search>div select{position:absolute;top:0;width:30px;height:100%;cursor:pointer;opacity:0;background-color:var(--dtcc-search-input_background)}table.dataTable span.dtcc div.dtcc-search>div span.dtcc-search-clear{display:flex;position:absolute;top:0;align-items:center;justify-content:center;width:14px;height:100%;cursor:pointer}table.dataTable span.dtcc div.dtcc-search>div div.dtcc-search-icon{display:none}table.dataTable span.dtcc div.dtcc-search>div input{padding:var(--dtcc-search-input_padding);border:var(--dtcc-search-input_border);border-radius:var(--dtcc-search-input_border-radius);background-color:var(--dtcc-search-input_background);color:inherit}table.dataTable span.dtcc div.dtcc-searchText>div div.dtcc-search-type-icon{right:0;z-index:1}table.dataTable span.dtcc div.dtcc-searchText>div select{right:0;z-index:2;padding:0}table.dataTable span.dtcc div.dtcc-searchText>div span.dtcc-search-clear{right:28px;z-index:1}table.dataTable span.dtcc div.dtcc-searchText>div input{padding-right:46px}table.dataTable span.dtcc div.dtcc-searchNumber>div div.dtcc-search-type-icon,table.dataTable span.dtcc div.dtcc-searchDateTime>div div.dtcc-search-type-icon{left:0;z-index:1}table.dataTable span.dtcc div.dtcc-searchNumber>div select,table.dataTable span.dtcc div.dtcc-searchDateTime>div select{left:0;z-index:2;padding:0}table.dataTable span.dtcc div.dtcc-searchNumber>div span.dtcc-search-clear,table.dataTable span.dtcc div.dtcc-searchDateTime>div span.dtcc-search-clear{left:28px}table.dataTable span.dtcc div.dtcc-searchNumber>div input,table.dataTable span.dtcc div.dtcc-searchDateTime>div input{padding-left:46px;text-align:right}div.dtcc-dropdown{display:block;box-sizing:border-box;z-index:var(--dtcc-dropdown_z-index);position:absolute;width:var(--dtcc-dropdown_width);margin:var(--dtcc-dropdown_margin);padding:var(--dtcc-dropdown_padding);overflow:hidden;border:var(--dtcc-dropdown_border);border-radius:var(--dtcc-dropdown_border-radius);background:var(--dtcc-dropdown_background);box-shadow:var(--dtcc-dropdown_box-shadow)}div.dtcc-dropdown button.dtcc-button{display:flex;position:relative;align-items:center;width:100%;padding:var(--dtcc-dropdown-button_padding);border:var(--dtcc-dropdown-button_border);background:var(--dtcc-dropdown-button_background);color:var(--dtcc-dropdown-button_color);text-align:left;cursor:pointer}div.dtcc-dropdown button.dtcc-button:focus{outline-offset:-2px}div.dtcc-dropdown button.dtcc-button:hover{background:var(--dtcc-dropdown-button_hover-background)}div.dtcc-dropdown button.dtcc-button.dtcc-button_disabled{cursor:initial;opacity:var(--dtcc-button_disabled-opacity)}div.dtcc-dropdown button.dtcc-button.dtcc-button_empty span.dtcc-button-text{opacity:var(--dtcc-button_empty-opacity);font-style:italic}div.dtcc-dropdown button.dtcc-button>span.dtcc-button-state{display:block;width:var(--dtcc-button-icon_size);height:var(--dtcc-button-icon_size);margin:0 0 0 var(--dtcc-button-icon_margin)}div.dtcc-dropdown button.dtcc-button>span.dtcc-button-state:empty{display:none}div.dtcc-dropdown button.dtcc-button>span.dtcc-button-state svg{width:var(--dtcc-button-icon_size);height:var(--dtcc-button-icon_size);vertical-align:initial}div.dtcc-dropdown button.dtcc-button>span.dtcc-button-extra:empty{display:none}div.dtcc-dropdown button.dtcc-button span.dtcc-button-icon{width:var(--dtcc-button-icon_size);height:var(--dtcc-button-icon_size);margin:0 var(--dtcc-button-icon_margin) 0 0}div.dtcc-dropdown button.dtcc-button span.dtcc-button-icon svg{width:var(--dtcc-button-icon_size);height:var(--dtcc-button-icon_size);vertical-align:var(--dtcc-dropdown-icon_vertical-align)}div.dtcc-dropdown button.dtcc-button span.dtcc-button-text{flex-grow:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}div.dtcc-dropdown div.dtcc-spacer{margin:var(--dtcc-spacer_margin) 0;padding:0;border-bottom:var(--dtcc-spacer_border);border-left:none}div.dtcc-dropdown div.dtcc-title{margin:var(--dtcc-title_margin);padding:var(--dtcc-title_padding);border-top:var(--dtcc-title_border-top);border-right:var(--dtcc-title_border-right);border-bottom:var(--dtcc-title_border-bottom);border-left:var(--dtcc-title_border-left);background:var(--dtcc-title_background);text-align:var(--dtcc-title_text-align)}div.dtcc-dropdown div.dtcc-search{padding:var(--dtcc-dropdown-search_padding)}div.dtcc-dropdown div.dtcc-search>div{display:flex;position:relative;flex-wrap:wrap;align-items:center;border:var(--dtcc-dropdown-button_border);background:var(--dtcc-dropdown-button_background);color:var(--dtcc-dropdown-button_color)}div.dtcc-dropdown div.dtcc-search>div div{flex:0 0 var(--dtcc-button-icon_size);width:var(--dtcc-button-icon_size);height:var(--dtcc-button-icon_size);margin:0 var(--dtcc-button-icon_margin) 0 0}div.dtcc-dropdown div.dtcc-search>div div svg{width:var(--dtcc-search-icon_size);height:var(--dtcc-search-icon_size);color:var(--dtcc-search-icon_color);vertical-align:var(--dtcc-dropdown-icon_vertical-align)}div.dtcc-dropdown div.dtcc-search>div select,div.dtcc-dropdown div.dtcc-search>div input{box-sizing:border-box;flex:1 1 calc(100% - var(--dtcc-search-input_flexCalc));width:100%;min-width:0;padding:var(--dtcc-search-input_padding);border:var(--dtcc-search-input_border);border-radius:var(--dtcc-search-input_border-radius);background-color:var(--dtcc-search-input_background-color)}div.dtcc-dropdown div.dtcc-search>div select option,div.dtcc-dropdown div.dtcc-search>div input option{background-color:var(--dtcc-search-input_background-color)}div.dtcc-dropdown div.dtcc-search>div input,div.dtcc-dropdown div.dtcc-search>div div.dtcc-search-icon{margin-top:var(--dtcc-search-input_margin-top)}div.dtcc-dropdown div.dtcc-search>div input{padding-right:var(--dtcc-search-input_padding-right)}div.dtcc-dropdown div.dtcc-search>div span.dtcc-search-clear{position:absolute;right:var(--dtcc-search-clear_right);bottom:var(--dtcc-search-clear_bottom);width:14px;cursor:pointer}div.dtcc-dropdown div.dtcc-search:not(.dtcc-search_active) span.dtcc-search-clear{display:none}div.dtcc-dropdown div.dtcc-list div.dtcc-list-title,div.dtcc-dropdown div.dtcc-list div.dtcc-list-empty{padding:var(--dtcc-dropdown-button_padding);font-style:italic}div.dtcc-dropdown div.dtcc-list div.dtcc-list-title:empty,div.dtcc-dropdown div.dtcc-list div.dtcc-list-empty:empty{display:none}div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls{display:grid;padding:var(--dtcc-dropdown-button_padding);gap:.5em}div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls:empty{display:none}div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls button.dtcc-list-selectAll,div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls button.dtcc-list-selectNone{width:100%;padding:0;border:none;background-color:transparent;color:inherit;font-size:80%;text-align:center;cursor:pointer}div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls button.dtcc-list-selectAll:hover,div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls button.dtcc-list-selectNone:hover{text-decoration:underline}div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls button.dtcc-list-selectAll span,div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls button.dtcc-list-selectNone span{display:inline-block;padding-left:.25em}div.dtcc-dropdown div.dtcc-list div.dtcc-list-controls input.dtcc-list-search{box-sizing:border-box;grid-column:1/3;width:100%;padding:var(--dtcc-search-input_padding);border:var(--dtcc-search-input_border);border-radius:var(--dtcc-search-input_border-radius);background-color:var(--dtcc-search-input_background-color)}div.dtcc-dropdown div.dtcc-list div.dtcc-list-buttons{max-height:var(--dtcc-list-buttons_max-height);overflow:auto;background:var(--dtcc-list-buttons_background)}div.dtcc-dropdown div.dtcc-list span.dtcc-button-icon:empty{display:none}
|