@limetech/lime-elements 38.37.1 → 38.38.0
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.
- package/CHANGELOG.md +14 -0
- package/dist/cjs/lime-elements.cjs.js +1 -1
- package/dist/cjs/limel-table.cjs.entry.js +26535 -20435
- package/dist/cjs/limel-table.cjs.entry.js.map +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/table/columns.js.map +1 -1
- package/dist/collection/components/table/table-selection.js +3 -0
- package/dist/collection/components/table/table-selection.js.map +1 -1
- package/dist/collection/components/table/table.css +406 -163
- package/dist/collection/components/table/table.js +94 -44
- package/dist/collection/components/table/table.js.map +1 -1
- package/dist/esm/lime-elements.js +1 -1
- package/dist/esm/limel-table.entry.js +26535 -20435
- package/dist/esm/limel-table.entry.js.map +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/lime-elements.esm.js.map +1 -1
- package/dist/lime-elements/p-f6d8811f.entry.js +2 -0
- package/dist/lime-elements/p-f6d8811f.entry.js.map +1 -0
- package/dist/types/components/table/columns.d.ts +7 -11
- package/dist/types/components/table/table-selection.d.ts +4 -4
- package/dist/types/components/table/table.d.ts +15 -5
- package/dist/types/components.d.ts +12 -0
- package/package.json +3 -3
- package/dist/lime-elements/p-c869fbb2.entry.js +0 -2
- package/dist/lime-elements/p-c869fbb2.entry.js.map +0 -1
|
@@ -99,13 +99,13 @@
|
|
|
99
99
|
font-size: 14px;
|
|
100
100
|
text-align: left;
|
|
101
101
|
overflow: hidden;
|
|
102
|
-
-webkit-transform:
|
|
103
|
-
-moz-transform:
|
|
104
|
-
-ms-transform:
|
|
105
|
-
-o-transform:
|
|
106
|
-
transform:
|
|
102
|
+
-webkit-transform: translateZ(0);
|
|
103
|
+
-moz-transform: translateZ(0);
|
|
104
|
+
-ms-transform: translateZ(0);
|
|
105
|
+
-o-transform: translateZ(0);
|
|
106
|
+
transform: translateZ(0);
|
|
107
107
|
}
|
|
108
|
-
.tabulator[tabulator-layout=fitDataFill] .tabulator-
|
|
108
|
+
.tabulator[tabulator-layout=fitDataFill] .tabulator-tableholder .tabulator-table {
|
|
109
109
|
min-width: 100%;
|
|
110
110
|
}
|
|
111
111
|
.tabulator[tabulator-layout=fitDataTable] {
|
|
@@ -114,6 +114,9 @@
|
|
|
114
114
|
.tabulator.tabulator-block-select {
|
|
115
115
|
user-select: none;
|
|
116
116
|
}
|
|
117
|
+
.tabulator.tabulator-ranges .tabulator-cell:not(.tabulator-editing) {
|
|
118
|
+
user-select: none;
|
|
119
|
+
}
|
|
117
120
|
.tabulator .tabulator-header {
|
|
118
121
|
position: relative;
|
|
119
122
|
box-sizing: border-box;
|
|
@@ -128,14 +131,24 @@
|
|
|
128
131
|
-khtml-user-select: none;
|
|
129
132
|
-webkit-user-select: none;
|
|
130
133
|
-o-user-select: none;
|
|
134
|
+
outline: none;
|
|
131
135
|
}
|
|
132
136
|
.tabulator .tabulator-header.tabulator-header-hidden {
|
|
133
137
|
display: none;
|
|
134
138
|
}
|
|
135
|
-
.tabulator .tabulator-header .tabulator-
|
|
139
|
+
.tabulator .tabulator-header .tabulator-header-contents {
|
|
140
|
+
position: relative;
|
|
141
|
+
overflow: hidden;
|
|
142
|
+
}
|
|
143
|
+
.tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {
|
|
136
144
|
display: inline-block;
|
|
145
|
+
}
|
|
146
|
+
.tabulator .tabulator-header .tabulator-col {
|
|
147
|
+
display: inline-flex;
|
|
137
148
|
position: relative;
|
|
138
149
|
box-sizing: border-box;
|
|
150
|
+
flex-direction: column;
|
|
151
|
+
justify-content: flex-start;
|
|
139
152
|
border-right: 1px solid #aaa;
|
|
140
153
|
background: #e6e6e6;
|
|
141
154
|
text-align: left;
|
|
@@ -148,15 +161,23 @@
|
|
|
148
161
|
background: #cdcdcd;
|
|
149
162
|
pointer-events: none;
|
|
150
163
|
}
|
|
164
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-range-highlight {
|
|
165
|
+
background-color: #D6D6D6;
|
|
166
|
+
color: #000000;
|
|
167
|
+
}
|
|
168
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-range-selected {
|
|
169
|
+
background-color: #3876ca;
|
|
170
|
+
color: #FFFFFF;
|
|
171
|
+
}
|
|
151
172
|
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
|
152
173
|
box-sizing: border-box;
|
|
153
174
|
position: relative;
|
|
154
175
|
padding: 4px;
|
|
155
176
|
}
|
|
156
|
-
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-
|
|
177
|
+
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-popup-button {
|
|
157
178
|
padding: 0 8px;
|
|
158
179
|
}
|
|
159
|
-
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-
|
|
180
|
+
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-popup-button:hover {
|
|
160
181
|
cursor: pointer;
|
|
161
182
|
opacity: 0.6;
|
|
162
183
|
}
|
|
@@ -171,6 +192,10 @@
|
|
|
171
192
|
text-overflow: ellipsis;
|
|
172
193
|
vertical-align: bottom;
|
|
173
194
|
}
|
|
195
|
+
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title.tabulator-col-title-wrap {
|
|
196
|
+
white-space: normal;
|
|
197
|
+
text-overflow: initial;
|
|
198
|
+
}
|
|
174
199
|
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-title-editor {
|
|
175
200
|
box-sizing: border-box;
|
|
176
201
|
width: 100%;
|
|
@@ -178,7 +203,7 @@
|
|
|
178
203
|
padding: 1px;
|
|
179
204
|
background: #fff;
|
|
180
205
|
}
|
|
181
|
-
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-header-
|
|
206
|
+
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-header-popup-button + .tabulator-title-editor {
|
|
182
207
|
width: calc(100% - 22px);
|
|
183
208
|
}
|
|
184
209
|
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
|
|
@@ -203,9 +228,6 @@
|
|
|
203
228
|
overflow: hidden;
|
|
204
229
|
margin-right: -1px;
|
|
205
230
|
}
|
|
206
|
-
.tabulator .tabulator-header .tabulator-col:first-child .tabulator-col-resize-handle.prev {
|
|
207
|
-
display: none;
|
|
208
|
-
}
|
|
209
231
|
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
|
|
210
232
|
position: relative;
|
|
211
233
|
box-sizing: border-box;
|
|
@@ -226,28 +248,48 @@
|
|
|
226
248
|
.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
|
|
227
249
|
padding-right: 25px;
|
|
228
250
|
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
251
|
+
@media (hover: hover) and (pointer: fine) {
|
|
252
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
|
|
253
|
+
cursor: pointer;
|
|
254
|
+
background-color: #cdcdcd;
|
|
255
|
+
}
|
|
232
256
|
}
|
|
233
257
|
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=none] .tabulator-col-content .tabulator-col-sorter {
|
|
234
258
|
color: #bbb;
|
|
235
259
|
}
|
|
260
|
+
@media (hover: hover) and (pointer: fine) {
|
|
261
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=none] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
|
|
262
|
+
cursor: pointer;
|
|
263
|
+
border-bottom: 6px solid #555;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
236
266
|
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=none] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
|
|
237
267
|
border-top: none;
|
|
238
268
|
border-bottom: 6px solid #bbb;
|
|
239
269
|
}
|
|
240
|
-
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=
|
|
270
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=ascending] .tabulator-col-content .tabulator-col-sorter {
|
|
241
271
|
color: #666;
|
|
242
272
|
}
|
|
243
|
-
|
|
273
|
+
@media (hover: hover) and (pointer: fine) {
|
|
274
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=ascending] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
|
|
275
|
+
cursor: pointer;
|
|
276
|
+
border-bottom: 6px solid #555;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=ascending] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
|
|
244
280
|
border-top: none;
|
|
245
281
|
border-bottom: 6px solid #666;
|
|
246
282
|
}
|
|
247
|
-
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=
|
|
283
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=descending] .tabulator-col-content .tabulator-col-sorter {
|
|
248
284
|
color: #666;
|
|
249
285
|
}
|
|
250
|
-
|
|
286
|
+
@media (hover: hover) and (pointer: fine) {
|
|
287
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=descending] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
|
|
288
|
+
cursor: pointer;
|
|
289
|
+
border-top: 6px solid #555;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=descending] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
|
|
251
293
|
border-bottom: none;
|
|
252
294
|
border-top: 6px solid #666;
|
|
253
295
|
color: #666;
|
|
@@ -278,9 +320,9 @@
|
|
|
278
320
|
bottom: auto;
|
|
279
321
|
}
|
|
280
322
|
.tabulator .tabulator-header .tabulator-frozen {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
z-index:
|
|
323
|
+
position: sticky;
|
|
324
|
+
left: 0;
|
|
325
|
+
z-index: 11;
|
|
284
326
|
}
|
|
285
327
|
.tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {
|
|
286
328
|
border-right: 2px solid #aaa;
|
|
@@ -290,11 +332,10 @@
|
|
|
290
332
|
}
|
|
291
333
|
.tabulator .tabulator-header .tabulator-calcs-holder {
|
|
292
334
|
box-sizing: border-box;
|
|
293
|
-
|
|
335
|
+
display: inline-block;
|
|
294
336
|
background: #f3f3f3 !important;
|
|
295
337
|
border-top: 1px solid #aaa;
|
|
296
338
|
border-bottom: 1px solid #aaa;
|
|
297
|
-
overflow: hidden;
|
|
298
339
|
}
|
|
299
340
|
.tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
|
|
300
341
|
background: #f3f3f3 !important;
|
|
@@ -303,40 +344,42 @@
|
|
|
303
344
|
display: none;
|
|
304
345
|
}
|
|
305
346
|
.tabulator .tabulator-header .tabulator-frozen-rows-holder {
|
|
306
|
-
|
|
347
|
+
display: inline-block;
|
|
307
348
|
}
|
|
308
349
|
.tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
|
|
309
350
|
display: none;
|
|
310
351
|
}
|
|
311
|
-
.tabulator .tabulator-
|
|
352
|
+
.tabulator .tabulator-tableholder {
|
|
312
353
|
position: relative;
|
|
313
354
|
width: 100%;
|
|
314
355
|
white-space: nowrap;
|
|
315
356
|
overflow: auto;
|
|
316
357
|
-webkit-overflow-scrolling: touch;
|
|
317
358
|
}
|
|
318
|
-
.tabulator .tabulator-
|
|
359
|
+
.tabulator .tabulator-tableholder:focus {
|
|
319
360
|
outline: none;
|
|
320
361
|
}
|
|
321
|
-
.tabulator .tabulator-
|
|
362
|
+
.tabulator .tabulator-tableholder .tabulator-placeholder {
|
|
322
363
|
box-sizing: border-box;
|
|
323
364
|
display: flex;
|
|
324
365
|
align-items: center;
|
|
366
|
+
justify-content: center;
|
|
367
|
+
min-width: 100%;
|
|
325
368
|
width: 100%;
|
|
326
369
|
}
|
|
327
|
-
.tabulator .tabulator-
|
|
370
|
+
.tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode=virtual] {
|
|
328
371
|
min-height: 100%;
|
|
329
|
-
min-width: 100%;
|
|
330
372
|
}
|
|
331
|
-
.tabulator .tabulator-
|
|
373
|
+
.tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {
|
|
332
374
|
display: inline-block;
|
|
333
|
-
|
|
375
|
+
text-align: center;
|
|
334
376
|
padding: 10px;
|
|
335
377
|
color: #ccc;
|
|
336
378
|
font-weight: bold;
|
|
337
379
|
font-size: 20px;
|
|
380
|
+
white-space: normal;
|
|
338
381
|
}
|
|
339
|
-
.tabulator .tabulator-
|
|
382
|
+
.tabulator .tabulator-tableholder .tabulator-table {
|
|
340
383
|
position: relative;
|
|
341
384
|
display: inline-block;
|
|
342
385
|
background-color: #fff;
|
|
@@ -344,21 +387,45 @@
|
|
|
344
387
|
overflow: visible;
|
|
345
388
|
color: #333;
|
|
346
389
|
}
|
|
347
|
-
.tabulator .tabulator-
|
|
390
|
+
.tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {
|
|
348
391
|
font-weight: bold;
|
|
349
392
|
background: #e2e2e2 !important;
|
|
350
393
|
}
|
|
351
|
-
.tabulator .tabulator-
|
|
394
|
+
.tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-top {
|
|
352
395
|
border-bottom: 2px solid #aaa;
|
|
353
396
|
}
|
|
354
|
-
.tabulator .tabulator-
|
|
397
|
+
.tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {
|
|
355
398
|
border-top: 2px solid #aaa;
|
|
356
399
|
}
|
|
400
|
+
.tabulator .tabulator-tableholder .tabulator-range-overlay {
|
|
401
|
+
position: absolute;
|
|
402
|
+
inset: 0;
|
|
403
|
+
z-index: 10;
|
|
404
|
+
pointer-events: none;
|
|
405
|
+
}
|
|
406
|
+
.tabulator .tabulator-tableholder .tabulator-range-overlay .tabulator-range {
|
|
407
|
+
position: absolute;
|
|
408
|
+
box-sizing: border-box;
|
|
409
|
+
border: 1px solid #2975DD;
|
|
410
|
+
}
|
|
411
|
+
.tabulator .tabulator-tableholder .tabulator-range-overlay .tabulator-range.tabulator-range-active::after {
|
|
412
|
+
content: "";
|
|
413
|
+
position: absolute;
|
|
414
|
+
right: -3px;
|
|
415
|
+
bottom: -3px;
|
|
416
|
+
width: 6px;
|
|
417
|
+
height: 6px;
|
|
418
|
+
background-color: #2975DD;
|
|
419
|
+
border-radius: 999px;
|
|
420
|
+
}
|
|
421
|
+
.tabulator .tabulator-tableholder .tabulator-range-overlay .tabulator-range-cell-active {
|
|
422
|
+
position: absolute;
|
|
423
|
+
box-sizing: border-box;
|
|
424
|
+
border: 2px solid #2975DD;
|
|
425
|
+
}
|
|
357
426
|
.tabulator .tabulator-footer {
|
|
358
|
-
padding: 5px 10px;
|
|
359
427
|
border-top: 1px solid #999;
|
|
360
428
|
background-color: #e6e6e6;
|
|
361
|
-
text-align: right;
|
|
362
429
|
color: #555;
|
|
363
430
|
font-weight: bold;
|
|
364
431
|
white-space: nowrap;
|
|
@@ -368,10 +435,39 @@
|
|
|
368
435
|
-webkit-user-select: none;
|
|
369
436
|
-o-user-select: none;
|
|
370
437
|
}
|
|
438
|
+
.tabulator .tabulator-footer .tabulator-footer-contents {
|
|
439
|
+
display: flex;
|
|
440
|
+
flex-direction: row;
|
|
441
|
+
align-items: center;
|
|
442
|
+
justify-content: space-between;
|
|
443
|
+
padding: 5px 10px;
|
|
444
|
+
}
|
|
445
|
+
.tabulator .tabulator-footer .tabulator-footer-contents:empty {
|
|
446
|
+
display: none;
|
|
447
|
+
}
|
|
448
|
+
.tabulator .tabulator-footer .tabulator-spreadsheet-tabs {
|
|
449
|
+
margin-top: -5px;
|
|
450
|
+
overflow-x: auto;
|
|
451
|
+
}
|
|
452
|
+
.tabulator .tabulator-footer .tabulator-spreadsheet-tabs .tabulator-spreadsheet-tab {
|
|
453
|
+
display: inline-block;
|
|
454
|
+
padding: 5px;
|
|
455
|
+
border: #999 1px solid;
|
|
456
|
+
border-top: none;
|
|
457
|
+
border-bottom-left-radius: 5px;
|
|
458
|
+
border-bottom-right-radius: 5px;
|
|
459
|
+
font-size: 0.9em;
|
|
460
|
+
}
|
|
461
|
+
.tabulator .tabulator-footer .tabulator-spreadsheet-tabs .tabulator-spreadsheet-tab:hover {
|
|
462
|
+
cursor: pointer;
|
|
463
|
+
opacity: 0.7;
|
|
464
|
+
}
|
|
465
|
+
.tabulator .tabulator-footer .tabulator-spreadsheet-tabs .tabulator-spreadsheet-tab.tabulator-spreadsheet-tab-active {
|
|
466
|
+
background: #fff;
|
|
467
|
+
}
|
|
371
468
|
.tabulator .tabulator-footer .tabulator-calcs-holder {
|
|
372
469
|
box-sizing: border-box;
|
|
373
|
-
width:
|
|
374
|
-
margin: -5px -10px 5px -10px;
|
|
470
|
+
width: 100%;
|
|
375
471
|
text-align: left;
|
|
376
472
|
background: #f3f3f3 !important;
|
|
377
473
|
border-bottom: 1px solid #aaa;
|
|
@@ -379,6 +475,7 @@
|
|
|
379
475
|
overflow: hidden;
|
|
380
476
|
}
|
|
381
477
|
.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
|
|
478
|
+
display: inline-block;
|
|
382
479
|
background: #f3f3f3 !important;
|
|
383
480
|
}
|
|
384
481
|
.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
|
|
@@ -388,7 +485,15 @@
|
|
|
388
485
|
margin-bottom: -5px;
|
|
389
486
|
border-bottom: none;
|
|
390
487
|
}
|
|
488
|
+
.tabulator .tabulator-footer > * + .tabulator-page-counter {
|
|
489
|
+
margin-left: 10px;
|
|
490
|
+
}
|
|
491
|
+
.tabulator .tabulator-footer .tabulator-page-counter {
|
|
492
|
+
font-weight: normal;
|
|
493
|
+
}
|
|
391
494
|
.tabulator .tabulator-footer .tabulator-paginator {
|
|
495
|
+
flex: 1;
|
|
496
|
+
text-align: right;
|
|
392
497
|
color: #555;
|
|
393
498
|
font-family: inherit;
|
|
394
499
|
font-weight: inherit;
|
|
@@ -418,26 +523,50 @@
|
|
|
418
523
|
.tabulator .tabulator-footer .tabulator-page:disabled {
|
|
419
524
|
opacity: 0.5;
|
|
420
525
|
}
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
526
|
+
@media (hover: hover) and (pointer: fine) {
|
|
527
|
+
.tabulator .tabulator-footer .tabulator-page:not(disabled):hover {
|
|
528
|
+
cursor: pointer;
|
|
529
|
+
background: rgba(0, 0, 0, 0.2);
|
|
530
|
+
color: #fff;
|
|
531
|
+
}
|
|
425
532
|
}
|
|
426
533
|
.tabulator .tabulator-col-resize-handle {
|
|
534
|
+
position: relative;
|
|
535
|
+
display: inline-block;
|
|
536
|
+
width: 6px;
|
|
537
|
+
margin-left: -3px;
|
|
538
|
+
margin-right: -3px;
|
|
539
|
+
z-index: 11;
|
|
540
|
+
vertical-align: middle;
|
|
541
|
+
}
|
|
542
|
+
@media (hover: hover) and (pointer: fine) {
|
|
543
|
+
.tabulator .tabulator-col-resize-handle:hover {
|
|
544
|
+
cursor: ew-resize;
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
.tabulator .tabulator-col-resize-handle:last-of-type {
|
|
548
|
+
width: 3px;
|
|
549
|
+
margin-right: 0;
|
|
550
|
+
}
|
|
551
|
+
.tabulator .tabulator-col-resize-guide {
|
|
427
552
|
position: absolute;
|
|
428
|
-
right: 0;
|
|
429
553
|
top: 0;
|
|
430
|
-
|
|
431
|
-
|
|
554
|
+
width: 4px;
|
|
555
|
+
height: 100%;
|
|
556
|
+
margin-left: -0.5px;
|
|
557
|
+
background-color: #999;
|
|
558
|
+
opacity: 0.5;
|
|
432
559
|
}
|
|
433
|
-
.tabulator .tabulator-
|
|
560
|
+
.tabulator .tabulator-row-resize-guide {
|
|
561
|
+
position: absolute;
|
|
434
562
|
left: 0;
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
563
|
+
width: 100%;
|
|
564
|
+
height: 4px;
|
|
565
|
+
margin-top: -0.5px;
|
|
566
|
+
background-color: #999;
|
|
567
|
+
opacity: 0.5;
|
|
439
568
|
}
|
|
440
|
-
.tabulator .tabulator-
|
|
569
|
+
.tabulator .tabulator-alert {
|
|
441
570
|
position: absolute;
|
|
442
571
|
display: flex;
|
|
443
572
|
align-items: center;
|
|
@@ -449,7 +578,7 @@
|
|
|
449
578
|
background: rgba(0, 0, 0, 0.4);
|
|
450
579
|
text-align: center;
|
|
451
580
|
}
|
|
452
|
-
.tabulator .tabulator-
|
|
581
|
+
.tabulator .tabulator-alert .tabulator-alert-msg {
|
|
453
582
|
display: inline-block;
|
|
454
583
|
margin: 0 auto;
|
|
455
584
|
padding: 10px 20px;
|
|
@@ -458,11 +587,11 @@
|
|
|
458
587
|
font-weight: bold;
|
|
459
588
|
font-size: 16px;
|
|
460
589
|
}
|
|
461
|
-
.tabulator .tabulator-
|
|
590
|
+
.tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {
|
|
462
591
|
border: 4px solid #333;
|
|
463
592
|
color: #000;
|
|
464
593
|
}
|
|
465
|
-
.tabulator .tabulator-
|
|
594
|
+
.tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {
|
|
466
595
|
border: 4px solid #D00;
|
|
467
596
|
color: #590000;
|
|
468
597
|
}
|
|
@@ -476,16 +605,20 @@
|
|
|
476
605
|
.tabulator-row.tabulator-row-even {
|
|
477
606
|
background-color: #EFEFEF;
|
|
478
607
|
}
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
608
|
+
@media (hover: hover) and (pointer: fine) {
|
|
609
|
+
.tabulator-row.tabulator-selectable:hover {
|
|
610
|
+
background-color: #bbb;
|
|
611
|
+
cursor: pointer;
|
|
612
|
+
}
|
|
482
613
|
}
|
|
483
614
|
.tabulator-row.tabulator-selected {
|
|
484
615
|
background-color: #9ABCEA;
|
|
485
616
|
}
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
617
|
+
@media (hover: hover) and (pointer: fine) {
|
|
618
|
+
.tabulator-row.tabulator-selected:hover {
|
|
619
|
+
background-color: #769BCC;
|
|
620
|
+
cursor: pointer;
|
|
621
|
+
}
|
|
489
622
|
}
|
|
490
623
|
.tabulator-row.tabulator-row-moving {
|
|
491
624
|
border: 1px solid #000;
|
|
@@ -498,6 +631,18 @@
|
|
|
498
631
|
pointer-events: none;
|
|
499
632
|
z-index: 15;
|
|
500
633
|
}
|
|
634
|
+
.tabulator-row.tabulator-range-highlight .tabulator-cell.tabulator-range-row-header {
|
|
635
|
+
background-color: #D6D6D6;
|
|
636
|
+
color: #000000;
|
|
637
|
+
}
|
|
638
|
+
.tabulator-row.tabulator-range-highlight.tabulator-range-selected .tabulator-cell.tabulator-range-row-header {
|
|
639
|
+
background-color: #3876ca;
|
|
640
|
+
color: #FFFFFF;
|
|
641
|
+
}
|
|
642
|
+
.tabulator-row.tabulator-range-selected .tabulator-cell.tabulator-range-row-header {
|
|
643
|
+
background-color: #3876ca;
|
|
644
|
+
color: #FFFFFF;
|
|
645
|
+
}
|
|
501
646
|
.tabulator-row .tabulator-row-resize-handle {
|
|
502
647
|
position: absolute;
|
|
503
648
|
right: 0;
|
|
@@ -509,20 +654,10 @@
|
|
|
509
654
|
top: 0;
|
|
510
655
|
bottom: auto;
|
|
511
656
|
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
display: inline-block;
|
|
517
|
-
position: absolute;
|
|
518
|
-
background-color: inherit;
|
|
519
|
-
z-index: 10;
|
|
520
|
-
}
|
|
521
|
-
.tabulator-row .tabulator-frozen.tabulator-frozen-left {
|
|
522
|
-
border-right: 2px solid #aaa;
|
|
523
|
-
}
|
|
524
|
-
.tabulator-row .tabulator-frozen.tabulator-frozen-right {
|
|
525
|
-
border-left: 2px solid #aaa;
|
|
657
|
+
@media (hover: hover) and (pointer: fine) {
|
|
658
|
+
.tabulator-row .tabulator-row-resize-handle:hover {
|
|
659
|
+
cursor: ns-resize;
|
|
660
|
+
}
|
|
526
661
|
}
|
|
527
662
|
.tabulator-row .tabulator-responsive-collapse {
|
|
528
663
|
box-sizing: border-box;
|
|
@@ -552,6 +687,25 @@
|
|
|
552
687
|
white-space: nowrap;
|
|
553
688
|
overflow: hidden;
|
|
554
689
|
text-overflow: ellipsis;
|
|
690
|
+
outline: none;
|
|
691
|
+
}
|
|
692
|
+
.tabulator-row .tabulator-cell.tabulator-row-header {
|
|
693
|
+
border-right: 1px solid #999;
|
|
694
|
+
border-bottom: 1px solid #aaa;
|
|
695
|
+
background: #e6e6e6;
|
|
696
|
+
}
|
|
697
|
+
.tabulator-row .tabulator-cell.tabulator-frozen {
|
|
698
|
+
display: inline-block;
|
|
699
|
+
position: sticky;
|
|
700
|
+
left: 0;
|
|
701
|
+
background-color: inherit;
|
|
702
|
+
z-index: 11;
|
|
703
|
+
}
|
|
704
|
+
.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
|
|
705
|
+
border-right: 2px solid #aaa;
|
|
706
|
+
}
|
|
707
|
+
.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {
|
|
708
|
+
border-left: 2px solid #aaa;
|
|
555
709
|
}
|
|
556
710
|
.tabulator-row .tabulator-cell.tabulator-editing {
|
|
557
711
|
border: 1px solid #1D68CD;
|
|
@@ -561,6 +715,7 @@
|
|
|
561
715
|
.tabulator-row .tabulator-cell.tabulator-editing input, .tabulator-row .tabulator-cell.tabulator-editing select {
|
|
562
716
|
border: 1px;
|
|
563
717
|
background: transparent;
|
|
718
|
+
outline: none;
|
|
564
719
|
}
|
|
565
720
|
.tabulator-row .tabulator-cell.tabulator-validation-fail {
|
|
566
721
|
border: 1px solid #dd0000;
|
|
@@ -570,9 +725,6 @@
|
|
|
570
725
|
background: transparent;
|
|
571
726
|
color: #dd0000;
|
|
572
727
|
}
|
|
573
|
-
.tabulator-row .tabulator-cell:first-child .tabulator-col-resize-handle.prev {
|
|
574
|
-
display: none;
|
|
575
|
-
}
|
|
576
728
|
.tabulator-row .tabulator-cell.tabulator-row-handle {
|
|
577
729
|
display: inline-flex;
|
|
578
730
|
align-items: center;
|
|
@@ -591,6 +743,13 @@
|
|
|
591
743
|
margin-top: 2px;
|
|
592
744
|
background: #666;
|
|
593
745
|
}
|
|
746
|
+
.tabulator-row .tabulator-cell.tabulator-range-selected:not(.tabulator-range-only-cell-selected):not(.tabulator-range-row-header) {
|
|
747
|
+
background-color: #9ABCEA;
|
|
748
|
+
}
|
|
749
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-branch-empty {
|
|
750
|
+
display: inline-block;
|
|
751
|
+
width: 7px;
|
|
752
|
+
}
|
|
594
753
|
.tabulator-row .tabulator-cell .tabulator-data-tree-branch {
|
|
595
754
|
display: inline-block;
|
|
596
755
|
vertical-align: middle;
|
|
@@ -615,9 +774,11 @@
|
|
|
615
774
|
background: rgba(0, 0, 0, 0.1);
|
|
616
775
|
overflow: hidden;
|
|
617
776
|
}
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
777
|
+
@media (hover: hover) and (pointer: fine) {
|
|
778
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
|
|
779
|
+
cursor: pointer;
|
|
780
|
+
background: rgba(0, 0, 0, 0.2);
|
|
781
|
+
}
|
|
621
782
|
}
|
|
622
783
|
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
|
|
623
784
|
display: inline-block;
|
|
@@ -667,8 +828,11 @@
|
|
|
667
828
|
font-weight: bold;
|
|
668
829
|
font-size: 1.1em;
|
|
669
830
|
}
|
|
670
|
-
|
|
671
|
-
|
|
831
|
+
@media (hover: hover) and (pointer: fine) {
|
|
832
|
+
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {
|
|
833
|
+
opacity: 0.7;
|
|
834
|
+
cursor: pointer;
|
|
835
|
+
}
|
|
672
836
|
}
|
|
673
837
|
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-close {
|
|
674
838
|
display: initial;
|
|
@@ -676,6 +840,9 @@
|
|
|
676
840
|
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-open {
|
|
677
841
|
display: none;
|
|
678
842
|
}
|
|
843
|
+
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle svg {
|
|
844
|
+
stroke: #fff;
|
|
845
|
+
}
|
|
679
846
|
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle .tabulator-responsive-collapse-toggle-close {
|
|
680
847
|
display: none;
|
|
681
848
|
}
|
|
@@ -696,9 +863,11 @@
|
|
|
696
863
|
font-weight: bold;
|
|
697
864
|
min-width: 100%;
|
|
698
865
|
}
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
866
|
+
@media (hover: hover) and (pointer: fine) {
|
|
867
|
+
.tabulator-row.tabulator-group:hover {
|
|
868
|
+
cursor: pointer;
|
|
869
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
870
|
+
}
|
|
702
871
|
}
|
|
703
872
|
.tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
|
|
704
873
|
margin-right: 10px;
|
|
@@ -741,7 +910,23 @@
|
|
|
741
910
|
color: #d00;
|
|
742
911
|
}
|
|
743
912
|
|
|
744
|
-
.tabulator-
|
|
913
|
+
.tabulator-toggle {
|
|
914
|
+
box-sizing: border-box;
|
|
915
|
+
display: flex;
|
|
916
|
+
flex-direction: row;
|
|
917
|
+
border: 1px solid #ccc;
|
|
918
|
+
background: #dcdcdc;
|
|
919
|
+
}
|
|
920
|
+
.tabulator-toggle.tabulator-toggle-on {
|
|
921
|
+
background: #1c6cc2;
|
|
922
|
+
}
|
|
923
|
+
.tabulator-toggle .tabulator-toggle-switch {
|
|
924
|
+
box-sizing: border-box;
|
|
925
|
+
border: 1px solid #ccc;
|
|
926
|
+
background: #fff;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.tabulator-popup-container {
|
|
745
930
|
position: absolute;
|
|
746
931
|
display: inline-block;
|
|
747
932
|
box-sizing: border-box;
|
|
@@ -753,6 +938,21 @@
|
|
|
753
938
|
-webkit-overflow-scrolling: touch;
|
|
754
939
|
z-index: 10000;
|
|
755
940
|
}
|
|
941
|
+
|
|
942
|
+
.tabulator-popup {
|
|
943
|
+
padding: 5px;
|
|
944
|
+
border-radius: 3px;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.tabulator-tooltip {
|
|
948
|
+
max-width: min(500px, 100%);
|
|
949
|
+
padding: 3px 5px;
|
|
950
|
+
border-radius: 2px;
|
|
951
|
+
box-shadow: none;
|
|
952
|
+
font-size: 12px;
|
|
953
|
+
pointer-events: none;
|
|
954
|
+
}
|
|
955
|
+
|
|
756
956
|
.tabulator-menu .tabulator-menu-item {
|
|
757
957
|
position: relative;
|
|
758
958
|
box-sizing: border-box;
|
|
@@ -762,9 +962,11 @@
|
|
|
762
962
|
.tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {
|
|
763
963
|
opacity: 0.5;
|
|
764
964
|
}
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
965
|
+
@media (hover: hover) and (pointer: fine) {
|
|
966
|
+
.tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {
|
|
967
|
+
cursor: pointer;
|
|
968
|
+
background: #EFEFEF;
|
|
969
|
+
}
|
|
768
970
|
}
|
|
769
971
|
.tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {
|
|
770
972
|
padding-right: 25px;
|
|
@@ -787,49 +989,58 @@
|
|
|
787
989
|
border-top: 1px solid #aaa;
|
|
788
990
|
}
|
|
789
991
|
|
|
790
|
-
.tabulator-edit-
|
|
791
|
-
position: absolute;
|
|
792
|
-
display: inline-block;
|
|
793
|
-
box-sizing: border-box;
|
|
992
|
+
.tabulator-edit-list {
|
|
794
993
|
max-height: 200px;
|
|
795
|
-
background: #fff;
|
|
796
|
-
border: 1px solid #aaa;
|
|
797
994
|
font-size: 14px;
|
|
798
995
|
overflow-y: auto;
|
|
799
996
|
-webkit-overflow-scrolling: touch;
|
|
800
|
-
z-index: 10000;
|
|
801
997
|
}
|
|
802
|
-
.tabulator-edit-
|
|
998
|
+
.tabulator-edit-list .tabulator-edit-list-item {
|
|
803
999
|
padding: 4px;
|
|
804
1000
|
color: #333;
|
|
1001
|
+
outline: none;
|
|
805
1002
|
}
|
|
806
|
-
.tabulator-edit-
|
|
1003
|
+
.tabulator-edit-list .tabulator-edit-list-item.active {
|
|
807
1004
|
color: #fff;
|
|
808
1005
|
background: #1D68CD;
|
|
809
1006
|
}
|
|
810
|
-
.tabulator-edit-
|
|
1007
|
+
.tabulator-edit-list .tabulator-edit-list-item.active.focused {
|
|
811
1008
|
outline: 1px solid rgba(255, 255, 255, 0.5);
|
|
812
1009
|
}
|
|
813
|
-
.tabulator-edit-
|
|
1010
|
+
.tabulator-edit-list .tabulator-edit-list-item.focused {
|
|
814
1011
|
outline: 1px solid #1D68CD;
|
|
815
1012
|
}
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
1013
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1014
|
+
.tabulator-edit-list .tabulator-edit-list-item:hover {
|
|
1015
|
+
cursor: pointer;
|
|
1016
|
+
color: #fff;
|
|
1017
|
+
background: #1D68CD;
|
|
1018
|
+
}
|
|
820
1019
|
}
|
|
821
|
-
.tabulator-edit-
|
|
1020
|
+
.tabulator-edit-list .tabulator-edit-list-placeholder {
|
|
822
1021
|
padding: 4px;
|
|
823
1022
|
color: #333;
|
|
824
1023
|
text-align: center;
|
|
825
1024
|
}
|
|
826
|
-
.tabulator-edit-
|
|
1025
|
+
.tabulator-edit-list .tabulator-edit-list-group {
|
|
827
1026
|
border-bottom: 1px solid #aaa;
|
|
828
1027
|
padding: 4px;
|
|
829
1028
|
padding-top: 6px;
|
|
830
1029
|
color: #333;
|
|
831
1030
|
font-weight: bold;
|
|
832
1031
|
}
|
|
1032
|
+
.tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2 {
|
|
1033
|
+
padding-left: 12px;
|
|
1034
|
+
}
|
|
1035
|
+
.tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3 {
|
|
1036
|
+
padding-left: 20px;
|
|
1037
|
+
}
|
|
1038
|
+
.tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4 {
|
|
1039
|
+
padding-left: 28px;
|
|
1040
|
+
}
|
|
1041
|
+
.tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5 {
|
|
1042
|
+
padding-left: 36px;
|
|
1043
|
+
}
|
|
833
1044
|
|
|
834
1045
|
.tabulator.tabulator-ltr {
|
|
835
1046
|
direction: ltr;
|
|
@@ -852,10 +1063,21 @@
|
|
|
852
1063
|
padding-right: 0;
|
|
853
1064
|
padding-left: 25px;
|
|
854
1065
|
}
|
|
855
|
-
.tabulator.tabulator-rtl .tabulator-header .tabulator-col .tabulator-col-content .tabulator-
|
|
1066
|
+
.tabulator.tabulator-rtl .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
|
|
856
1067
|
left: 8px;
|
|
857
1068
|
right: initial;
|
|
858
1069
|
}
|
|
1070
|
+
.tabulator.tabulator-rtl .tabulator-tableholder .tabulator-range-overlay .tabulator-range.tabulator-range-active::after {
|
|
1071
|
+
content: "";
|
|
1072
|
+
position: absolute;
|
|
1073
|
+
left: -3px;
|
|
1074
|
+
right: initial;
|
|
1075
|
+
bottom: -3px;
|
|
1076
|
+
width: 6px;
|
|
1077
|
+
height: 6px;
|
|
1078
|
+
background-color: #2975DD;
|
|
1079
|
+
border-radius: 999px;
|
|
1080
|
+
}
|
|
859
1081
|
.tabulator.tabulator-rtl .tabulator-row .tabulator-cell {
|
|
860
1082
|
border-right: initial;
|
|
861
1083
|
border-left: 1px solid #aaa;
|
|
@@ -872,14 +1094,19 @@
|
|
|
872
1094
|
margin-right: initial;
|
|
873
1095
|
margin-left: 5px;
|
|
874
1096
|
}
|
|
875
|
-
.tabulator.tabulator-rtl .tabulator-
|
|
876
|
-
|
|
877
|
-
left: 0;
|
|
878
|
-
right: auto;
|
|
1097
|
+
.tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
|
|
1098
|
+
border-left: 2px solid #aaa;
|
|
879
1099
|
}
|
|
880
|
-
.tabulator.tabulator-rtl .tabulator-
|
|
881
|
-
right:
|
|
882
|
-
|
|
1100
|
+
.tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {
|
|
1101
|
+
border-right: 2px solid #aaa;
|
|
1102
|
+
}
|
|
1103
|
+
.tabulator.tabulator-rtl .tabulator-row .tabulator-col-resize-handle:last-of-type {
|
|
1104
|
+
width: 3px;
|
|
1105
|
+
margin-left: 0;
|
|
1106
|
+
margin-right: -3px;
|
|
1107
|
+
}
|
|
1108
|
+
.tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {
|
|
1109
|
+
text-align: initial;
|
|
883
1110
|
}
|
|
884
1111
|
|
|
885
1112
|
.tabulator-print-fullscreen {
|
|
@@ -920,9 +1147,11 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
|
|
|
920
1147
|
font-weight: bold;
|
|
921
1148
|
min-width: 100%;
|
|
922
1149
|
}
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
1150
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1151
|
+
.tabulator-print-table .tabulator-print-table-group:hover {
|
|
1152
|
+
cursor: pointer;
|
|
1153
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
1154
|
+
}
|
|
926
1155
|
}
|
|
927
1156
|
.tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {
|
|
928
1157
|
margin-right: 10px;
|
|
@@ -977,9 +1206,11 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
|
|
|
977
1206
|
background: rgba(0, 0, 0, 0.1);
|
|
978
1207
|
overflow: hidden;
|
|
979
1208
|
}
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
1209
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1210
|
+
.tabulator-print-table .tabulator-data-tree-control:hover {
|
|
1211
|
+
cursor: pointer;
|
|
1212
|
+
background: rgba(0, 0, 0, 0.2);
|
|
1213
|
+
}
|
|
983
1214
|
}
|
|
984
1215
|
.tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
|
|
985
1216
|
display: inline-block;
|
|
@@ -1028,7 +1259,7 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
|
|
|
1028
1259
|
--table-row-background-color--hover: var(
|
|
1029
1260
|
--lime-elevated-surface-background-color
|
|
1030
1261
|
);
|
|
1031
|
-
--table-row-background-color--active: var(--
|
|
1262
|
+
--table-row-background-color--active: var(--mdc-theme-primary);
|
|
1032
1263
|
--table-arrow-color: var(--contrast-800);
|
|
1033
1264
|
--table-arrow-color--active: var(
|
|
1034
1265
|
--lime-primary-color,
|
|
@@ -1054,7 +1285,7 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
|
|
|
1054
1285
|
.tabulator .tabulator-header {
|
|
1055
1286
|
flex-shrink: 0;
|
|
1056
1287
|
}
|
|
1057
|
-
.tabulator .tabulator-
|
|
1288
|
+
.tabulator .tabulator-tableholder {
|
|
1058
1289
|
isolation: isolate;
|
|
1059
1290
|
flex-grow: 1;
|
|
1060
1291
|
height: unset !important;
|
|
@@ -1079,7 +1310,7 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
|
|
|
1079
1310
|
.tabulator .tabulator-header {
|
|
1080
1311
|
color: var(--table-text-color);
|
|
1081
1312
|
}
|
|
1082
|
-
.tabulator .tabulator-
|
|
1313
|
+
.tabulator .tabulator-tableholder .tabulator-table {
|
|
1083
1314
|
color: var(--table-text-color);
|
|
1084
1315
|
background-color: transparent;
|
|
1085
1316
|
}
|
|
@@ -1095,7 +1326,7 @@ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
|
|
|
1095
1326
|
background-color: rgb(var(--table-header-background-color));
|
|
1096
1327
|
border-right-color: rgb(var(--contrast-200));
|
|
1097
1328
|
}
|
|
1098
|
-
.tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
|
|
1329
|
+
.tabulator .tabulator-header .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
|
|
1099
1330
|
background-color: rgb(var(--table-header-background-color--hover));
|
|
1100
1331
|
}
|
|
1101
1332
|
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
|
@@ -1174,39 +1405,32 @@ limel-chip {
|
|
|
1174
1405
|
* Nothing in this file may output any CSS
|
|
1175
1406
|
* without being explicitly called by outside code.
|
|
1176
1407
|
*/
|
|
1177
|
-
.tabulator-col-sorter {
|
|
1178
|
-
|
|
1179
|
-
right: 0 !important;
|
|
1180
|
-
position: relative !important;
|
|
1181
|
-
justify-content: center;
|
|
1408
|
+
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
|
|
1409
|
+
position: relative;
|
|
1182
1410
|
cursor: pointer;
|
|
1411
|
+
transition: opacity 0.2s ease;
|
|
1412
|
+
right: 0;
|
|
1183
1413
|
}
|
|
1184
|
-
|
|
1414
|
+
|
|
1415
|
+
.tabulator-sortable[aria-sort=none] .tabulator-col-sorter {
|
|
1185
1416
|
opacity: 0;
|
|
1186
1417
|
}
|
|
1187
|
-
|
|
1418
|
+
.tabulator-sortable[aria-sort=none]:hover .tabulator-col-sorter {
|
|
1188
1419
|
opacity: 1;
|
|
1189
1420
|
}
|
|
1190
|
-
[aria-sort=
|
|
1191
|
-
|
|
1192
|
-
content: "";
|
|
1193
|
-
width: 0.125rem;
|
|
1194
|
-
height: 0.4rem;
|
|
1195
|
-
background-color: var(--table-arrow-color--active);
|
|
1421
|
+
.tabulator-sortable[aria-sort=none]:hover .tabulator-col-sorter .tabulator-arrow {
|
|
1422
|
+
animation: indicate-sortable-unsorted-column 2s ease forwards;
|
|
1196
1423
|
}
|
|
1197
|
-
|
|
1198
|
-
.tabulator-sortable[aria-sort=desc]:hover .tabulator-col-sorter, .tabulator-sortable[aria-sort=asc]:hover .tabulator-col-sorter {
|
|
1424
|
+
.tabulator-sortable[aria-sort=desc] .tabulator-col-sorter, .tabulator-sortable[aria-sort=asc] .tabulator-col-sorter {
|
|
1199
1425
|
opacity: 1;
|
|
1200
|
-
animation: indicate-sortable-sorted-column 0.5s ease;
|
|
1201
1426
|
}
|
|
1202
|
-
.tabulator-sortable[aria-sort=
|
|
1427
|
+
.tabulator-sortable[aria-sort=desc]:hover .tabulator-col-sorter, .tabulator-sortable[aria-sort=asc]:hover .tabulator-col-sorter {
|
|
1203
1428
|
opacity: 1;
|
|
1204
|
-
|
|
1205
|
-
.tabulator-sortable[aria-sort=none]:hover .tabulator-col-sorter .tabulator-arrow {
|
|
1206
|
-
animation: indicate-sortable-unsorted-column 2s ease forwards;
|
|
1429
|
+
animation: indicate-sortable-sorted-column 0.5s ease;
|
|
1207
1430
|
}
|
|
1208
1431
|
|
|
1209
1432
|
.tabulator-arrow {
|
|
1433
|
+
rotate: 180deg;
|
|
1210
1434
|
transition: border 0.2s ease;
|
|
1211
1435
|
border-left: 0.25rem solid transparent !important;
|
|
1212
1436
|
border-right: 0.25rem solid transparent !important;
|
|
@@ -1222,14 +1446,14 @@ limel-chip {
|
|
|
1222
1446
|
}
|
|
1223
1447
|
.tabulator#tabulator-table .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=desc] .tabulator-arrow {
|
|
1224
1448
|
height: 0;
|
|
1225
|
-
transform: translate3d(0, -0.2rem, 0)
|
|
1449
|
+
transform: translate3d(0, -0.2rem, 0);
|
|
1226
1450
|
border-top-width: 0.25rem;
|
|
1227
1451
|
border-bottom-width: 0;
|
|
1228
1452
|
border-top-color: var(--table-arrow-color--active);
|
|
1229
1453
|
}
|
|
1230
1454
|
.tabulator#tabulator-table .tabulator-header .tabulator-col.tabulator-sortable[aria-sort=asc] .tabulator-arrow {
|
|
1231
1455
|
height: 0;
|
|
1232
|
-
transform: translate3d(0, 0.2rem, 0)
|
|
1456
|
+
transform: translate3d(0, 0.2rem, 0);
|
|
1233
1457
|
border-top-width: 0;
|
|
1234
1458
|
border-bottom-width: 0.25rem;
|
|
1235
1459
|
border-bottom-color: var(--table-arrow-color--active);
|
|
@@ -1608,9 +1832,21 @@ button.tabulator-page[data-page=first]:not([disabled]):hover:after, button.tabul
|
|
|
1608
1832
|
position: absolute;
|
|
1609
1833
|
inset: 0;
|
|
1610
1834
|
min-height: 0.125rem;
|
|
1611
|
-
transition: color
|
|
1835
|
+
transition: color var(--limel-clickable-transition-speed, 0.4s) ease, box-shadow var(--limel-clickable-transform-speed, 0.4s) ease, transform var(--limel-clickable-transform-speed, 0.4s) var(--limel-clickable-transform-timing-function, ease);
|
|
1612
1836
|
background-color: rgb(var(--limel-table-row-background-color));
|
|
1613
1837
|
}
|
|
1838
|
+
.tabulator-row:active .interactive-feedback {
|
|
1839
|
+
--limel-clickable-transform-timing-function: cubic-bezier(
|
|
1840
|
+
0.83,
|
|
1841
|
+
-0.15,
|
|
1842
|
+
0.49,
|
|
1843
|
+
1.16
|
|
1844
|
+
);
|
|
1845
|
+
}
|
|
1846
|
+
.tabulator-row:hover .interactive-feedback, .tabulator-row:active .interactive-feedback {
|
|
1847
|
+
--limel-clickable-transition-speed: 0.2s;
|
|
1848
|
+
--limel-clickable-transform-speed: 0.16s;
|
|
1849
|
+
}
|
|
1614
1850
|
|
|
1615
1851
|
.tabulator-row:not(.tabulator-calcs) {
|
|
1616
1852
|
background-color: transparent;
|
|
@@ -1632,16 +1868,9 @@ button.tabulator-page[data-page=first]:not([disabled]):hover:after, button.tabul
|
|
|
1632
1868
|
pointer-events: auto;
|
|
1633
1869
|
}
|
|
1634
1870
|
.tabulator-row:not(.tabulator-calcs).tabulator-selectable:hover {
|
|
1871
|
+
background-color: var(--table-row-background-color--hover);
|
|
1635
1872
|
z-index: 2;
|
|
1636
1873
|
}
|
|
1637
|
-
.tabulator-row:not(.tabulator-calcs).tabulator-selectable.active {
|
|
1638
|
-
--limel-table-row-background-color: var(
|
|
1639
|
-
--table-row-background-color--active
|
|
1640
|
-
);
|
|
1641
|
-
}
|
|
1642
|
-
.tabulator-row:not(.tabulator-calcs).tabulator-selectable.active .interactive-feedback {
|
|
1643
|
-
box-shadow: var(--button-shadow-inset-pressed);
|
|
1644
|
-
}
|
|
1645
1874
|
.tabulator-row:not(.tabulator-calcs).tabulator-selectable.active:before {
|
|
1646
1875
|
content: "";
|
|
1647
1876
|
display: inline-block;
|
|
@@ -1659,7 +1888,20 @@ button.tabulator-page[data-page=first]:not([disabled]):hover:after, button.tabul
|
|
|
1659
1888
|
}
|
|
1660
1889
|
:host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable:active .interactive-feedback {
|
|
1661
1890
|
box-shadow: var(--button-shadow-pressed);
|
|
1662
|
-
transform: translate3d(0, 0.
|
|
1891
|
+
transform: translate3d(0, 0.05rem, 0);
|
|
1892
|
+
}
|
|
1893
|
+
:host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable.active {
|
|
1894
|
+
--limel-table-row-background-color: var(
|
|
1895
|
+
--table-row-background-color--active
|
|
1896
|
+
);
|
|
1897
|
+
}
|
|
1898
|
+
:host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable.active .interactive-feedback {
|
|
1899
|
+
opacity: 0.2;
|
|
1900
|
+
background-color: var(--table-row-background-color--active);
|
|
1901
|
+
box-shadow: var(--button-shadow-inset-pressed);
|
|
1902
|
+
}
|
|
1903
|
+
:host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable.active .interactive-feedback:hover {
|
|
1904
|
+
opacity: 0.3;
|
|
1663
1905
|
}
|
|
1664
1906
|
:host(.has-interactive-rows) .tabulator-row:not(.tabulator-calcs).tabulator-selectable:not(.active) .interactive-feedback:hover {
|
|
1665
1907
|
background-color: var(--table-row-background-color--hover);
|
|
@@ -1704,7 +1946,7 @@ button.tabulator-page[data-page=first]:not([disabled]):hover:after, button.tabul
|
|
|
1704
1946
|
:host(.has-pagination-on-top) .tabulator .tabulator-header {
|
|
1705
1947
|
order: 2;
|
|
1706
1948
|
}
|
|
1707
|
-
:host(.has-pagination-on-top) .tabulator .tabulator-
|
|
1949
|
+
:host(.has-pagination-on-top) .tabulator .tabulator-tableholder {
|
|
1708
1950
|
order: 3;
|
|
1709
1951
|
}
|
|
1710
1952
|
:host(.has-pagination-on-top) .tabulator .tabulator-footer {
|
|
@@ -1715,7 +1957,7 @@ button.tabulator-page[data-page=first]:not([disabled]):hover:after, button.tabul
|
|
|
1715
1957
|
position: absolute;
|
|
1716
1958
|
bottom: 0;
|
|
1717
1959
|
}
|
|
1718
|
-
:host(.has-pagination-on-top):has(.tabulator-calcs-holder) .tabulator-
|
|
1960
|
+
:host(.has-pagination-on-top):has(.tabulator-calcs-holder) .tabulator-tableholder {
|
|
1719
1961
|
margin-bottom: 1.5rem;
|
|
1720
1962
|
}
|
|
1721
1963
|
:host(.has-pagination-on-top) .select-all {
|
|
@@ -1873,13 +2115,14 @@ button.tabulator-page[data-page=first]:not([disabled]):hover:after, button.tabul
|
|
|
1873
2115
|
|
|
1874
2116
|
.tabulator .tabulator-footer {
|
|
1875
2117
|
transition: transform 0.5s ease-out, opacity 0.35s ease;
|
|
1876
|
-
padding-top: 0;
|
|
1877
|
-
padding-bottom: 0;
|
|
1878
2118
|
color: var(--table-text-color);
|
|
1879
2119
|
background-color: rgb(var(--table-header-background-color--hover));
|
|
1880
2120
|
border: none;
|
|
1881
2121
|
user-select: auto;
|
|
1882
2122
|
}
|
|
2123
|
+
.tabulator .tabulator-footer .tabulator-footer-contents {
|
|
2124
|
+
padding: 0 0.25rem;
|
|
2125
|
+
}
|
|
1883
2126
|
.tabulator .tabulator-footer .tabulator-calcs-holder {
|
|
1884
2127
|
border-color: rgb(var(--contrast-500));
|
|
1885
2128
|
background: rgb(var(--contrast-500)) !important;
|