@genesislcap/grid-tabulator 14.101.2

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.
Files changed (70) hide show
  1. package/README.md +8 -0
  2. package/custom-elements-manifest.config.js +14 -0
  3. package/dist/custom-elements.json +1956 -0
  4. package/dist/dts/cell/index.d.ts +2 -0
  5. package/dist/dts/cell/index.d.ts.map +1 -0
  6. package/dist/dts/cell-renderers/index.d.ts +2 -0
  7. package/dist/dts/cell-renderers/index.d.ts.map +1 -0
  8. package/dist/dts/column/index.d.ts +2 -0
  9. package/dist/dts/column/index.d.ts.map +1 -0
  10. package/dist/dts/datasource/client-side.datasource.d.ts +472 -0
  11. package/dist/dts/datasource/client-side.datasource.d.ts.map +1 -0
  12. package/dist/dts/datasource/index.d.ts +2 -0
  13. package/dist/dts/datasource/index.d.ts.map +1 -0
  14. package/dist/dts/external/fonts.d.ts +7 -0
  15. package/dist/dts/external/fonts.d.ts.map +1 -0
  16. package/dist/dts/external/index.d.ts +4 -0
  17. package/dist/dts/external/index.d.ts.map +1 -0
  18. package/dist/dts/external/tabulator-theme-simple-css.d.ts +2 -0
  19. package/dist/dts/external/tabulator-theme-simple-css.d.ts.map +1 -0
  20. package/dist/dts/grid-tabulator.components.d.ts +16 -0
  21. package/dist/dts/grid-tabulator.components.d.ts.map +1 -0
  22. package/dist/dts/grid-tabulator.d.ts +397 -0
  23. package/dist/dts/grid-tabulator.d.ts.map +1 -0
  24. package/dist/dts/grid-tabulator.definitions.d.ts +7 -0
  25. package/dist/dts/grid-tabulator.definitions.d.ts.map +1 -0
  26. package/dist/dts/grid-tabulator.styles.d.ts +3 -0
  27. package/dist/dts/grid-tabulator.styles.d.ts.map +1 -0
  28. package/dist/dts/grid-tabulator.template.d.ts +3 -0
  29. package/dist/dts/grid-tabulator.template.d.ts.map +1 -0
  30. package/dist/dts/grid-tabulator.types.d.ts +26 -0
  31. package/dist/dts/grid-tabulator.types.d.ts.map +1 -0
  32. package/dist/dts/index.d.ts +14 -0
  33. package/dist/dts/index.d.ts.map +1 -0
  34. package/dist/dts/index.federated.d.ts +1 -0
  35. package/dist/dts/index.federated.d.ts.map +1 -0
  36. package/dist/dts/style/colors.d.ts +2 -0
  37. package/dist/dts/style/colors.d.ts.map +1 -0
  38. package/dist/dts/style/index.d.ts +3 -0
  39. package/dist/dts/style/index.d.ts.map +1 -0
  40. package/dist/dts/style/tokens.d.ts +2 -0
  41. package/dist/dts/style/tokens.d.ts.map +1 -0
  42. package/dist/dts/utils/index.d.ts +2 -0
  43. package/dist/dts/utils/index.d.ts.map +1 -0
  44. package/dist/dts/utils/logger.d.ts +2 -0
  45. package/dist/dts/utils/logger.d.ts.map +1 -0
  46. package/dist/esm/cell/index.js +1 -0
  47. package/dist/esm/cell-renderers/index.js +1 -0
  48. package/dist/esm/column/index.js +1 -0
  49. package/dist/esm/datasource/client-side.datasource.js +526 -0
  50. package/dist/esm/datasource/index.js +1 -0
  51. package/dist/esm/external/fonts.js +16 -0
  52. package/dist/esm/external/index.js +6 -0
  53. package/dist/esm/external/tabulator-theme-simple-css.js +1379 -0
  54. package/dist/esm/grid-tabulator.components.js +29 -0
  55. package/dist/esm/grid-tabulator.definitions.js +77 -0
  56. package/dist/esm/grid-tabulator.js +192 -0
  57. package/dist/esm/grid-tabulator.styles.js +14 -0
  58. package/dist/esm/grid-tabulator.template.js +6 -0
  59. package/dist/esm/grid-tabulator.types.js +77 -0
  60. package/dist/esm/index.federated.js +1 -0
  61. package/dist/esm/index.js +13 -0
  62. package/dist/esm/style/colors.js +3 -0
  63. package/dist/esm/style/index.js +2 -0
  64. package/dist/esm/style/tokens.js +4 -0
  65. package/dist/esm/utils/index.js +1 -0
  66. package/dist/esm/utils/logger.js +2 -0
  67. package/externals.js +5 -0
  68. package/genx.config.ts +14 -0
  69. package/license.txt +46 -0
  70. package/package.json +63 -0
@@ -0,0 +1,1379 @@
1
+ import { css } from '@microsoft/fast-element';
2
+ export const tabulatorThemeSimpleCSS = css `
3
+ .tabulator {
4
+ position: relative;
5
+ border: 1px solid #999;
6
+ background-color: #fff;
7
+ font-size: 14px;
8
+ text-align: left;
9
+ overflow: hidden;
10
+ -webkit-transform: translateZ(0);
11
+ -moz-transform: translateZ(0);
12
+ -ms-transform: translateZ(0);
13
+ -o-transform: translateZ(0);
14
+ transform: translateZ(0);
15
+ }
16
+
17
+ .tabulator[tabulator-layout='fitDataFill'] .tabulator-tableholder .tabulator-table {
18
+ min-width: 100%;
19
+ }
20
+
21
+ .tabulator[tabulator-layout='fitDataTable'] {
22
+ display: inline-block;
23
+ }
24
+
25
+ .tabulator.tabulator-block-select {
26
+ user-select: none;
27
+ }
28
+
29
+ .tabulator .tabulator-header {
30
+ position: relative;
31
+ box-sizing: border-box;
32
+ width: 100%;
33
+ border-bottom: 1px solid #999;
34
+ background-color: #fff;
35
+ color: #555;
36
+ font-weight: bold;
37
+ white-space: nowrap;
38
+ overflow: hidden;
39
+ -moz-user-select: none;
40
+ -khtml-user-select: none;
41
+ -webkit-user-select: none;
42
+ -o-user-select: none;
43
+ }
44
+
45
+ .tabulator .tabulator-header.tabulator-header-hidden {
46
+ display: none;
47
+ }
48
+
49
+ .tabulator .tabulator-header .tabulator-header-contents {
50
+ position: relative;
51
+ overflow: hidden;
52
+ }
53
+
54
+ .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {
55
+ display: inline-block;
56
+ }
57
+
58
+ .tabulator .tabulator-header .tabulator-col {
59
+ display: inline-flex;
60
+ position: relative;
61
+ box-sizing: border-box;
62
+ flex-direction: column;
63
+ justify-content: flex-start;
64
+ border-right: 1px solid #ddd;
65
+ background: #fff;
66
+ text-align: left;
67
+ vertical-align: bottom;
68
+ overflow: hidden;
69
+ }
70
+
71
+ .tabulator .tabulator-header .tabulator-col.tabulator-moving {
72
+ position: absolute;
73
+ border: 1px solid #999;
74
+ background: #e6e6e6;
75
+ pointer-events: none;
76
+ }
77
+
78
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
79
+ box-sizing: border-box;
80
+ position: relative;
81
+ padding: 4px;
82
+ }
83
+
84
+ .tabulator
85
+ .tabulator-header
86
+ .tabulator-col
87
+ .tabulator-col-content
88
+ .tabulator-header-popup-button {
89
+ padding: 0 8px;
90
+ }
91
+
92
+ .tabulator
93
+ .tabulator-header
94
+ .tabulator-col
95
+ .tabulator-col-content
96
+ .tabulator-header-popup-button:hover {
97
+ cursor: pointer;
98
+ opacity: 0.6;
99
+ }
100
+
101
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {
102
+ position: relative;
103
+ }
104
+
105
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
106
+ box-sizing: border-box;
107
+ width: 100%;
108
+ white-space: nowrap;
109
+ overflow: hidden;
110
+ text-overflow: ellipsis;
111
+ vertical-align: bottom;
112
+ }
113
+
114
+ .tabulator
115
+ .tabulator-header
116
+ .tabulator-col
117
+ .tabulator-col-content
118
+ .tabulator-col-title.tabulator-col-title-wrap {
119
+ white-space: normal;
120
+ text-overflow: initial;
121
+ }
122
+
123
+ .tabulator
124
+ .tabulator-header
125
+ .tabulator-col
126
+ .tabulator-col-content
127
+ .tabulator-col-title
128
+ .tabulator-title-editor {
129
+ box-sizing: border-box;
130
+ width: 100%;
131
+ border: 1px solid #999;
132
+ padding: 1px;
133
+ background: #fff;
134
+ }
135
+
136
+ .tabulator
137
+ .tabulator-header
138
+ .tabulator-col
139
+ .tabulator-col-content
140
+ .tabulator-col-title
141
+ .tabulator-header-popup-button
142
+ + .tabulator-title-editor {
143
+ width: calc(100% - 22px);
144
+ }
145
+
146
+ .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
147
+ display: flex;
148
+ align-items: center;
149
+ position: absolute;
150
+ top: 0;
151
+ bottom: 0;
152
+ right: 4px;
153
+ }
154
+
155
+ .tabulator
156
+ .tabulator-header
157
+ .tabulator-col
158
+ .tabulator-col-content
159
+ .tabulator-col-sorter
160
+ .tabulator-arrow {
161
+ width: 0;
162
+ height: 0;
163
+ border-left: 6px solid transparent;
164
+ border-right: 6px solid transparent;
165
+ border-bottom: 6px solid #bbb;
166
+ }
167
+
168
+ .tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
169
+ position: relative;
170
+ display: flex;
171
+ border-top: 1px solid #ddd;
172
+ overflow: hidden;
173
+ margin-right: -1px;
174
+ }
175
+
176
+ .tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
177
+ position: relative;
178
+ box-sizing: border-box;
179
+ margin-top: 2px;
180
+ width: 100%;
181
+ text-align: center;
182
+ }
183
+
184
+ .tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {
185
+ height: auto !important;
186
+ }
187
+
188
+ .tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {
189
+ margin-top: 3px;
190
+ }
191
+
192
+ .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {
193
+ width: 0;
194
+ height: 0;
195
+ }
196
+
197
+ .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
198
+ padding-right: 25px;
199
+ }
200
+
201
+ @media (hover: hover) and (pointer: fine) {
202
+ .tabulator
203
+ .tabulator-header
204
+ .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
205
+ cursor: pointer;
206
+ background-color: #e6e6e6;
207
+ }
208
+ }
209
+
210
+ .tabulator
211
+ .tabulator-header
212
+ .tabulator-col.tabulator-sortable[aria-sort='none']
213
+ .tabulator-col-content
214
+ .tabulator-col-sorter {
215
+ color: #bbb;
216
+ }
217
+
218
+ @media (hover: hover) and (pointer: fine) {
219
+ .tabulator
220
+ .tabulator-header
221
+ .tabulator-col.tabulator-sortable[aria-sort='none']
222
+ .tabulator-col-content
223
+ .tabulator-col-sorter.tabulator-col-sorter-element
224
+ .tabulator-arrow:hover {
225
+ cursor: pointer;
226
+ border-bottom: 6px solid #555;
227
+ }
228
+ }
229
+
230
+ .tabulator
231
+ .tabulator-header
232
+ .tabulator-col.tabulator-sortable[aria-sort='none']
233
+ .tabulator-col-content
234
+ .tabulator-col-sorter
235
+ .tabulator-arrow {
236
+ border-top: none;
237
+ border-bottom: 6px solid #bbb;
238
+ }
239
+
240
+ .tabulator
241
+ .tabulator-header
242
+ .tabulator-col.tabulator-sortable[aria-sort='ascending']
243
+ .tabulator-col-content
244
+ .tabulator-col-sorter {
245
+ color: #666;
246
+ }
247
+
248
+ @media (hover: hover) and (pointer: fine) {
249
+ .tabulator
250
+ .tabulator-header
251
+ .tabulator-col.tabulator-sortable[aria-sort='ascending']
252
+ .tabulator-col-content
253
+ .tabulator-col-sorter.tabulator-col-sorter-element
254
+ .tabulator-arrow:hover {
255
+ cursor: pointer;
256
+ border-bottom: 6px solid #555;
257
+ }
258
+ }
259
+
260
+ .tabulator
261
+ .tabulator-header
262
+ .tabulator-col.tabulator-sortable[aria-sort='ascending']
263
+ .tabulator-col-content
264
+ .tabulator-col-sorter
265
+ .tabulator-arrow {
266
+ border-top: none;
267
+ border-bottom: 6px solid #666;
268
+ }
269
+
270
+ .tabulator
271
+ .tabulator-header
272
+ .tabulator-col.tabulator-sortable[aria-sort='descending']
273
+ .tabulator-col-content
274
+ .tabulator-col-sorter {
275
+ color: #666;
276
+ }
277
+
278
+ @media (hover: hover) and (pointer: fine) {
279
+ .tabulator
280
+ .tabulator-header
281
+ .tabulator-col.tabulator-sortable[aria-sort='descending']
282
+ .tabulator-col-content
283
+ .tabulator-col-sorter.tabulator-col-sorter-element
284
+ .tabulator-arrow:hover {
285
+ cursor: pointer;
286
+ border-top: 6px solid #555;
287
+ }
288
+ }
289
+
290
+ .tabulator
291
+ .tabulator-header
292
+ .tabulator-col.tabulator-sortable[aria-sort='descending']
293
+ .tabulator-col-content
294
+ .tabulator-col-sorter
295
+ .tabulator-arrow {
296
+ border-bottom: none;
297
+ border-top: 6px solid #666;
298
+ color: #666;
299
+ }
300
+
301
+ .tabulator
302
+ .tabulator-header
303
+ .tabulator-col.tabulator-col-vertical
304
+ .tabulator-col-content
305
+ .tabulator-col-title {
306
+ writing-mode: vertical-rl;
307
+ text-orientation: mixed;
308
+ display: flex;
309
+ align-items: center;
310
+ justify-content: center;
311
+ }
312
+
313
+ .tabulator
314
+ .tabulator-header
315
+ .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip
316
+ .tabulator-col-title {
317
+ transform: rotate(180deg);
318
+ }
319
+
320
+ .tabulator
321
+ .tabulator-header
322
+ .tabulator-col.tabulator-col-vertical.tabulator-sortable
323
+ .tabulator-col-title {
324
+ padding-right: 0;
325
+ padding-top: 20px;
326
+ }
327
+
328
+ .tabulator
329
+ .tabulator-header
330
+ .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip
331
+ .tabulator-col-title {
332
+ padding-right: 0;
333
+ padding-bottom: 20px;
334
+ }
335
+
336
+ .tabulator
337
+ .tabulator-header
338
+ .tabulator-col.tabulator-col-vertical.tabulator-sortable
339
+ .tabulator-col-sorter {
340
+ justify-content: center;
341
+ left: 0;
342
+ right: 0;
343
+ top: 4px;
344
+ bottom: auto;
345
+ }
346
+
347
+ .tabulator .tabulator-header .tabulator-frozen {
348
+ position: sticky;
349
+ left: 0;
350
+ z-index: 11;
351
+ }
352
+
353
+ .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {
354
+ border-right: 2px solid #ddd;
355
+ }
356
+
357
+ .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {
358
+ border-left: 2px solid #ddd;
359
+ }
360
+
361
+ .tabulator .tabulator-header .tabulator-calcs-holder {
362
+ box-sizing: border-box;
363
+ background: white !important;
364
+ border-top: 1px solid #ddd;
365
+ border-bottom: 1px solid #ddd;
366
+ }
367
+
368
+ .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
369
+ background: white !important;
370
+ }
371
+
372
+ .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
373
+ display: none;
374
+ }
375
+
376
+ .tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
377
+ display: none;
378
+ }
379
+
380
+ .tabulator .tabulator-tableholder {
381
+ position: relative;
382
+ width: 100%;
383
+ white-space: nowrap;
384
+ overflow: auto;
385
+ -webkit-overflow-scrolling: touch;
386
+ }
387
+
388
+ .tabulator .tabulator-tableholder:focus {
389
+ outline: none;
390
+ }
391
+
392
+ .tabulator .tabulator-tableholder .tabulator-placeholder {
393
+ box-sizing: border-box;
394
+ display: flex;
395
+ align-items: center;
396
+ justify-content: center;
397
+ width: 100%;
398
+ }
399
+
400
+ .tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode='virtual'] {
401
+ min-height: 100%;
402
+ min-width: 100%;
403
+ }
404
+
405
+ .tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {
406
+ display: inline-block;
407
+ text-align: center;
408
+ padding: 10px;
409
+ color: #ccc;
410
+ font-weight: bold;
411
+ font-size: 20px;
412
+ white-space: normal;
413
+ }
414
+
415
+ .tabulator .tabulator-tableholder .tabulator-table {
416
+ position: relative;
417
+ display: inline-block;
418
+ background-color: #fff;
419
+ white-space: nowrap;
420
+ overflow: visible;
421
+ color: #333;
422
+ }
423
+
424
+ .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {
425
+ font-weight: bold;
426
+ background: #f2f2f2 !important;
427
+ }
428
+
429
+ .tabulator
430
+ .tabulator-tableholder
431
+ .tabulator-table
432
+ .tabulator-row.tabulator-calcs.tabulator-calcs-top {
433
+ border-bottom: 2px solid #ddd;
434
+ }
435
+
436
+ .tabulator
437
+ .tabulator-tableholder
438
+ .tabulator-table
439
+ .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {
440
+ border-top: 2px solid #ddd;
441
+ }
442
+
443
+ .tabulator .tabulator-footer {
444
+ border-top: 1px solid #999;
445
+ background-color: #fff;
446
+ color: #555;
447
+ font-weight: bold;
448
+ white-space: nowrap;
449
+ user-select: none;
450
+ -moz-user-select: none;
451
+ -khtml-user-select: none;
452
+ -webkit-user-select: none;
453
+ -o-user-select: none;
454
+ }
455
+
456
+ .tabulator .tabulator-footer .tabulator-footer-contents {
457
+ display: flex;
458
+ flex-direction: row;
459
+ align-items: center;
460
+ justify-content: space-between;
461
+ padding: 5px 10px;
462
+ }
463
+
464
+ .tabulator .tabulator-footer .tabulator-footer-contents:empty {
465
+ display: none;
466
+ }
467
+
468
+ .tabulator .tabulator-footer .tabulator-calcs-holder {
469
+ box-sizing: border-box;
470
+ width: 100%;
471
+ text-align: left;
472
+ background: white !important;
473
+ border-bottom: 1px solid #ddd;
474
+ border-top: 1px solid #ddd;
475
+ overflow: hidden;
476
+ }
477
+
478
+ .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
479
+ display: inline-block;
480
+ background: white !important;
481
+ }
482
+
483
+ .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
484
+ display: none;
485
+ }
486
+
487
+ .tabulator .tabulator-footer .tabulator-calcs-holder:only-child {
488
+ margin-bottom: -5px;
489
+ border-bottom: none;
490
+ }
491
+
492
+ .tabulator .tabulator-footer > * + .tabulator-page-counter {
493
+ margin-left: 10px;
494
+ }
495
+
496
+ .tabulator .tabulator-footer .tabulator-page-counter {
497
+ font-weight: normal;
498
+ }
499
+
500
+ .tabulator .tabulator-footer .tabulator-paginator {
501
+ flex: 1;
502
+ text-align: right;
503
+ color: #555;
504
+ font-family: inherit;
505
+ font-weight: inherit;
506
+ font-size: inherit;
507
+ }
508
+
509
+ .tabulator .tabulator-footer .tabulator-page-size {
510
+ display: inline-block;
511
+ margin: 0 5px;
512
+ padding: 2px 5px;
513
+ border: 1px solid #aaa;
514
+ border-radius: 3px;
515
+ }
516
+
517
+ .tabulator .tabulator-footer .tabulator-pages {
518
+ margin: 0 7px;
519
+ }
520
+
521
+ .tabulator .tabulator-footer .tabulator-page {
522
+ display: inline-block;
523
+ margin: 0 2px;
524
+ padding: 2px 5px;
525
+ border: 1px solid #aaa;
526
+ border-radius: 3px;
527
+ background: rgba(255, 255, 255, 0.2);
528
+ }
529
+
530
+ .tabulator .tabulator-footer .tabulator-page.active {
531
+ color: #d00;
532
+ }
533
+
534
+ .tabulator .tabulator-footer .tabulator-page:disabled {
535
+ opacity: 0.5;
536
+ }
537
+
538
+ @media (hover: hover) and (pointer: fine) {
539
+ .tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {
540
+ cursor: pointer;
541
+ background: rgba(0, 0, 0, 0.2);
542
+ color: #fff;
543
+ }
544
+ }
545
+
546
+ .tabulator .tabulator-col-resize-handle {
547
+ position: relative;
548
+ display: inline-block;
549
+ width: 6px;
550
+ margin-left: -3px;
551
+ margin-right: -3px;
552
+ z-index: 10;
553
+ vertical-align: middle;
554
+ }
555
+
556
+ @media (hover: hover) and (pointer: fine) {
557
+ .tabulator .tabulator-col-resize-handle:hover {
558
+ cursor: ew-resize;
559
+ }
560
+ }
561
+
562
+ .tabulator .tabulator-col-resize-handle:last-of-type {
563
+ width: 3px;
564
+ margin-right: 0;
565
+ }
566
+
567
+ .tabulator .tabulator-alert {
568
+ position: absolute;
569
+ display: flex;
570
+ align-items: center;
571
+ top: 0;
572
+ left: 0;
573
+ z-index: 100;
574
+ height: 100%;
575
+ width: 100%;
576
+ background: rgba(0, 0, 0, 0.4);
577
+ text-align: center;
578
+ }
579
+
580
+ .tabulator .tabulator-alert .tabulator-alert-msg {
581
+ display: inline-block;
582
+ margin: 0 auto;
583
+ padding: 10px 20px;
584
+ border-radius: 10px;
585
+ background: #fff;
586
+ font-weight: bold;
587
+ font-size: 16px;
588
+ }
589
+
590
+ .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {
591
+ border: 4px solid #333;
592
+ color: #000;
593
+ }
594
+
595
+ .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {
596
+ border: 4px solid #d00;
597
+ color: #590000;
598
+ }
599
+
600
+ .tabulator-row {
601
+ position: relative;
602
+ box-sizing: border-box;
603
+ min-height: 22px;
604
+ background-color: #fff;
605
+ }
606
+
607
+ .tabulator-row.tabulator-row-even {
608
+ background-color: #fff;
609
+ }
610
+
611
+ @media (hover: hover) and (pointer: fine) {
612
+ .tabulator-row.tabulator-selectable:hover {
613
+ background-color: #bbb;
614
+ cursor: pointer;
615
+ }
616
+ }
617
+
618
+ .tabulator-row.tabulator-selected {
619
+ background-color: #9abcea;
620
+ }
621
+
622
+ @media (hover: hover) and (pointer: fine) {
623
+ .tabulator-row.tabulator-selected:hover {
624
+ background-color: #769bcc;
625
+ cursor: pointer;
626
+ }
627
+ }
628
+
629
+ .tabulator-row.tabulator-row-moving {
630
+ border: 1px solid #000;
631
+ background: #fff;
632
+ }
633
+
634
+ .tabulator-row.tabulator-moving {
635
+ position: absolute;
636
+ border-top: 1px solid #ddd;
637
+ border-bottom: 1px solid #ddd;
638
+ pointer-events: none;
639
+ z-index: 15;
640
+ }
641
+
642
+ .tabulator-row .tabulator-row-resize-handle {
643
+ position: absolute;
644
+ right: 0;
645
+ bottom: 0;
646
+ left: 0;
647
+ height: 5px;
648
+ }
649
+
650
+ .tabulator-row .tabulator-row-resize-handle.prev {
651
+ top: 0;
652
+ bottom: auto;
653
+ }
654
+
655
+ @media (hover: hover) and (pointer: fine) {
656
+ .tabulator-row .tabulator-row-resize-handle:hover {
657
+ cursor: ns-resize;
658
+ }
659
+ }
660
+
661
+ .tabulator-row .tabulator-responsive-collapse {
662
+ box-sizing: border-box;
663
+ padding: 5px;
664
+ border-top: 1px solid #ddd;
665
+ border-bottom: 1px solid #ddd;
666
+ }
667
+
668
+ .tabulator-row .tabulator-responsive-collapse:empty {
669
+ display: none;
670
+ }
671
+
672
+ .tabulator-row .tabulator-responsive-collapse table {
673
+ font-size: 14px;
674
+ }
675
+
676
+ .tabulator-row .tabulator-responsive-collapse table tr td {
677
+ position: relative;
678
+ }
679
+
680
+ .tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {
681
+ padding-right: 10px;
682
+ }
683
+
684
+ .tabulator-row .tabulator-cell {
685
+ display: inline-block;
686
+ position: relative;
687
+ box-sizing: border-box;
688
+ padding: 4px;
689
+ border-right: 1px solid #ddd;
690
+ vertical-align: middle;
691
+ white-space: nowrap;
692
+ overflow: hidden;
693
+ text-overflow: ellipsis;
694
+ }
695
+
696
+ .tabulator-row .tabulator-cell.tabulator-frozen {
697
+ display: inline-block;
698
+ position: sticky;
699
+ left: 0;
700
+ background-color: inherit;
701
+ z-index: 11;
702
+ }
703
+
704
+ .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
705
+ border-right: 2px solid #ddd;
706
+ }
707
+
708
+ .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {
709
+ border-left: 2px solid #ddd;
710
+ }
711
+
712
+ .tabulator-row .tabulator-cell.tabulator-editing {
713
+ border: 1px solid #1d68cd;
714
+ outline: none;
715
+ padding: 0;
716
+ }
717
+
718
+ .tabulator-row .tabulator-cell.tabulator-editing input,
719
+ .tabulator-row .tabulator-cell.tabulator-editing select {
720
+ border: 1px;
721
+ background: transparent;
722
+ outline: none;
723
+ }
724
+
725
+ .tabulator-row .tabulator-cell.tabulator-validation-fail {
726
+ border: 1px solid #dd0000;
727
+ }
728
+
729
+ .tabulator-row .tabulator-cell.tabulator-validation-fail input,
730
+ .tabulator-row .tabulator-cell.tabulator-validation-fail select {
731
+ border: 1px;
732
+ background: transparent;
733
+ color: #dd0000;
734
+ }
735
+
736
+ .tabulator-row .tabulator-cell.tabulator-row-handle {
737
+ display: inline-flex;
738
+ align-items: center;
739
+ justify-content: center;
740
+ -moz-user-select: none;
741
+ -khtml-user-select: none;
742
+ -webkit-user-select: none;
743
+ -o-user-select: none;
744
+ }
745
+
746
+ .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
747
+ width: 80%;
748
+ }
749
+
750
+ .tabulator-row
751
+ .tabulator-cell.tabulator-row-handle
752
+ .tabulator-row-handle-box
753
+ .tabulator-row-handle-bar {
754
+ width: 100%;
755
+ height: 3px;
756
+ margin-top: 2px;
757
+ background: #666;
758
+ }
759
+
760
+ .tabulator-row .tabulator-cell .tabulator-data-tree-branch-empty {
761
+ display: inline-block;
762
+ width: 7px;
763
+ }
764
+
765
+ .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
766
+ display: inline-block;
767
+ vertical-align: middle;
768
+ height: 9px;
769
+ width: 7px;
770
+ margin-top: -9px;
771
+ margin-right: 5px;
772
+ border-bottom-left-radius: 1px;
773
+ border-left: 2px solid #ddd;
774
+ border-bottom: 2px solid #ddd;
775
+ }
776
+
777
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control {
778
+ display: inline-flex;
779
+ justify-content: center;
780
+ align-items: center;
781
+ vertical-align: middle;
782
+ height: 11px;
783
+ width: 11px;
784
+ margin-right: 5px;
785
+ border: 1px solid #333;
786
+ border-radius: 2px;
787
+ background: rgba(0, 0, 0, 0.1);
788
+ overflow: hidden;
789
+ }
790
+
791
+ @media (hover: hover) and (pointer: fine) {
792
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
793
+ cursor: pointer;
794
+ background: rgba(0, 0, 0, 0.2);
795
+ }
796
+ }
797
+
798
+ .tabulator-row
799
+ .tabulator-cell
800
+ .tabulator-data-tree-control
801
+ .tabulator-data-tree-control-collapse {
802
+ display: inline-block;
803
+ position: relative;
804
+ height: 7px;
805
+ width: 1px;
806
+ background: transparent;
807
+ }
808
+
809
+ .tabulator-row
810
+ .tabulator-cell
811
+ .tabulator-data-tree-control
812
+ .tabulator-data-tree-control-collapse:after {
813
+ position: absolute;
814
+ content: '';
815
+ left: -3px;
816
+ top: 3px;
817
+ height: 1px;
818
+ width: 7px;
819
+ background: #333;
820
+ }
821
+
822
+ .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {
823
+ display: inline-block;
824
+ position: relative;
825
+ height: 7px;
826
+ width: 1px;
827
+ background: #333;
828
+ }
829
+
830
+ .tabulator-row
831
+ .tabulator-cell
832
+ .tabulator-data-tree-control
833
+ .tabulator-data-tree-control-expand:after {
834
+ position: absolute;
835
+ content: '';
836
+ left: -3px;
837
+ top: 3px;
838
+ height: 1px;
839
+ width: 7px;
840
+ background: #333;
841
+ }
842
+
843
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {
844
+ display: inline-flex;
845
+ align-items: center;
846
+ justify-content: center;
847
+ -moz-user-select: none;
848
+ -khtml-user-select: none;
849
+ -webkit-user-select: none;
850
+ -o-user-select: none;
851
+ height: 15px;
852
+ width: 15px;
853
+ border-radius: 20px;
854
+ background: #666;
855
+ color: #fff;
856
+ font-weight: bold;
857
+ font-size: 1.1em;
858
+ }
859
+
860
+ @media (hover: hover) and (pointer: fine) {
861
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {
862
+ opacity: 0.7;
863
+ cursor: pointer;
864
+ }
865
+ }
866
+
867
+ .tabulator-row
868
+ .tabulator-cell
869
+ .tabulator-responsive-collapse-toggle.open
870
+ .tabulator-responsive-collapse-toggle-close {
871
+ display: initial;
872
+ }
873
+
874
+ .tabulator-row
875
+ .tabulator-cell
876
+ .tabulator-responsive-collapse-toggle.open
877
+ .tabulator-responsive-collapse-toggle-open {
878
+ display: none;
879
+ }
880
+
881
+ .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle svg {
882
+ stroke: #fff;
883
+ }
884
+
885
+ .tabulator-row
886
+ .tabulator-cell
887
+ .tabulator-responsive-collapse-toggle
888
+ .tabulator-responsive-collapse-toggle-close {
889
+ display: none;
890
+ }
891
+
892
+ .tabulator-row .tabulator-cell .tabulator-traffic-light {
893
+ display: inline-block;
894
+ height: 14px;
895
+ width: 14px;
896
+ border-radius: 14px;
897
+ }
898
+
899
+ .tabulator-row.tabulator-group {
900
+ box-sizing: border-box;
901
+ border-bottom: 1px solid #999;
902
+ border-right: 1px solid #ddd;
903
+ border-top: 1px solid #999;
904
+ padding: 5px;
905
+ padding-left: 10px;
906
+ background: #ccc;
907
+ font-weight: bold;
908
+ min-width: 100%;
909
+ }
910
+
911
+ @media (hover: hover) and (pointer: fine) {
912
+ .tabulator-row.tabulator-group:hover {
913
+ cursor: pointer;
914
+ background-color: rgba(0, 0, 0, 0.1);
915
+ }
916
+ }
917
+
918
+ .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
919
+ margin-right: 10px;
920
+ border-left: 6px solid transparent;
921
+ border-right: 6px solid transparent;
922
+ border-top: 6px solid #666;
923
+ border-bottom: 0;
924
+ }
925
+
926
+ .tabulator-row.tabulator-group.tabulator-group-level-1 {
927
+ padding-left: 30px;
928
+ }
929
+
930
+ .tabulator-row.tabulator-group.tabulator-group-level-2 {
931
+ padding-left: 50px;
932
+ }
933
+
934
+ .tabulator-row.tabulator-group.tabulator-group-level-3 {
935
+ padding-left: 70px;
936
+ }
937
+
938
+ .tabulator-row.tabulator-group.tabulator-group-level-4 {
939
+ padding-left: 90px;
940
+ }
941
+
942
+ .tabulator-row.tabulator-group.tabulator-group-level-5 {
943
+ padding-left: 110px;
944
+ }
945
+
946
+ .tabulator-row.tabulator-group .tabulator-group-toggle {
947
+ display: inline-block;
948
+ }
949
+
950
+ .tabulator-row.tabulator-group .tabulator-arrow {
951
+ display: inline-block;
952
+ width: 0;
953
+ height: 0;
954
+ margin-right: 16px;
955
+ border-top: 6px solid transparent;
956
+ border-bottom: 6px solid transparent;
957
+ border-right: 0;
958
+ border-left: 6px solid #666;
959
+ vertical-align: middle;
960
+ }
961
+
962
+ .tabulator-row.tabulator-group span {
963
+ margin-left: 10px;
964
+ color: #d00;
965
+ }
966
+
967
+ .tabulator-popup-container {
968
+ position: absolute;
969
+ display: inline-block;
970
+ box-sizing: border-box;
971
+ background: #fff;
972
+ border: 1px solid #ddd;
973
+ box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
974
+ font-size: 14px;
975
+ overflow-y: auto;
976
+ -webkit-overflow-scrolling: touch;
977
+ z-index: 10000;
978
+ }
979
+
980
+ .tabulator-popup {
981
+ padding: 5px;
982
+ border-radius: 3px;
983
+ }
984
+
985
+ .tabulator-tooltip {
986
+ max-width: Min(500px, 100%);
987
+ padding: 3px 5px;
988
+ border-radius: 2px;
989
+ box-shadow: none;
990
+ font-size: 12px;
991
+ pointer-events: none;
992
+ }
993
+
994
+ .tabulator-menu .tabulator-menu-item {
995
+ position: relative;
996
+ box-sizing: border-box;
997
+ padding: 5px 10px;
998
+ user-select: none;
999
+ }
1000
+
1001
+ .tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {
1002
+ opacity: 0.5;
1003
+ }
1004
+
1005
+ @media (hover: hover) and (pointer: fine) {
1006
+ .tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {
1007
+ cursor: pointer;
1008
+ background: #fff;
1009
+ }
1010
+ }
1011
+
1012
+ .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {
1013
+ padding-right: 25px;
1014
+ }
1015
+
1016
+ .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu::after {
1017
+ display: inline-block;
1018
+ position: absolute;
1019
+ top: calc(5px + 0.4em);
1020
+ right: 10px;
1021
+ height: 7px;
1022
+ width: 7px;
1023
+ content: '';
1024
+ border-width: 1px 1px 0 0;
1025
+ border-style: solid;
1026
+ border-color: #ddd;
1027
+ vertical-align: top;
1028
+ transform: rotate(45deg);
1029
+ }
1030
+
1031
+ .tabulator-menu .tabulator-menu-separator {
1032
+ border-top: 1px solid #ddd;
1033
+ }
1034
+
1035
+ .tabulator-edit-list {
1036
+ max-height: 200px;
1037
+ font-size: 14px;
1038
+ overflow-y: auto;
1039
+ -webkit-overflow-scrolling: touch;
1040
+ }
1041
+
1042
+ .tabulator-edit-list .tabulator-edit-list-item {
1043
+ padding: 4px;
1044
+ color: #333;
1045
+ outline: none;
1046
+ }
1047
+
1048
+ .tabulator-edit-list .tabulator-edit-list-item.active {
1049
+ color: #fff;
1050
+ background: #1d68cd;
1051
+ }
1052
+
1053
+ .tabulator-edit-list .tabulator-edit-list-item.active.focused {
1054
+ outline: 1px solid rgba(255, 255, 255, 0.5);
1055
+ }
1056
+
1057
+ .tabulator-edit-list .tabulator-edit-list-item.focused {
1058
+ outline: 1px solid #1d68cd;
1059
+ }
1060
+
1061
+ @media (hover: hover) and (pointer: fine) {
1062
+ .tabulator-edit-list .tabulator-edit-list-item:hover {
1063
+ cursor: pointer;
1064
+ color: #fff;
1065
+ background: #1d68cd;
1066
+ }
1067
+ }
1068
+
1069
+ .tabulator-edit-list .tabulator-edit-list-placeholder {
1070
+ padding: 4px;
1071
+ color: #333;
1072
+ text-align: center;
1073
+ }
1074
+
1075
+ .tabulator-edit-list .tabulator-edit-list-group {
1076
+ border-bottom: 1px solid #ddd;
1077
+ padding: 4px;
1078
+ padding-top: 6px;
1079
+ color: #333;
1080
+ font-weight: bold;
1081
+ }
1082
+
1083
+ .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2,
1084
+ .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2 {
1085
+ padding-left: 12px;
1086
+ }
1087
+
1088
+ .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3,
1089
+ .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3 {
1090
+ padding-left: 20px;
1091
+ }
1092
+
1093
+ .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4,
1094
+ .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4 {
1095
+ padding-left: 28px;
1096
+ }
1097
+
1098
+ .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5,
1099
+ .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5 {
1100
+ padding-left: 36px;
1101
+ }
1102
+
1103
+ .tabulator.tabulator-ltr {
1104
+ direction: ltr;
1105
+ }
1106
+
1107
+ .tabulator.tabulator-rtl {
1108
+ text-align: initial;
1109
+ direction: rtl;
1110
+ }
1111
+
1112
+ .tabulator.tabulator-rtl .tabulator-header .tabulator-col {
1113
+ text-align: initial;
1114
+ border-left: 1px solid #ddd;
1115
+ border-right: initial;
1116
+ }
1117
+
1118
+ .tabulator.tabulator-rtl
1119
+ .tabulator-header
1120
+ .tabulator-col.tabulator-col-group
1121
+ .tabulator-col-group-cols {
1122
+ margin-right: initial;
1123
+ margin-left: -1px;
1124
+ }
1125
+
1126
+ .tabulator.tabulator-rtl
1127
+ .tabulator-header
1128
+ .tabulator-col.tabulator-sortable
1129
+ .tabulator-col-title {
1130
+ padding-right: 0;
1131
+ padding-left: 25px;
1132
+ }
1133
+
1134
+ .tabulator.tabulator-rtl
1135
+ .tabulator-header
1136
+ .tabulator-col
1137
+ .tabulator-col-content
1138
+ .tabulator-col-sorter {
1139
+ left: 8px;
1140
+ right: initial;
1141
+ }
1142
+
1143
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell {
1144
+ border-right: initial;
1145
+ border-left: 1px solid #ddd;
1146
+ }
1147
+
1148
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
1149
+ margin-right: initial;
1150
+ margin-left: 5px;
1151
+ border-bottom-left-radius: initial;
1152
+ border-bottom-right-radius: 1px;
1153
+ border-left: initial;
1154
+ border-right: 2px solid #ddd;
1155
+ }
1156
+
1157
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-control {
1158
+ margin-right: initial;
1159
+ margin-left: 5px;
1160
+ }
1161
+
1162
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
1163
+ border-left: 2px solid #ddd;
1164
+ }
1165
+
1166
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {
1167
+ border-right: 2px solid #ddd;
1168
+ }
1169
+
1170
+ .tabulator.tabulator-rtl .tabulator-row .tabulator-col-resize-handle:last-of-type {
1171
+ width: 3px;
1172
+ margin-left: 0;
1173
+ margin-right: -3px;
1174
+ }
1175
+
1176
+ .tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {
1177
+ text-align: initial;
1178
+ }
1179
+
1180
+ .tabulator-print-fullscreen {
1181
+ position: absolute;
1182
+ top: 0;
1183
+ bottom: 0;
1184
+ left: 0;
1185
+ right: 0;
1186
+ z-index: 10000;
1187
+ }
1188
+
1189
+ body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
1190
+ display: none !important;
1191
+ }
1192
+
1193
+ .tabulator-print-table {
1194
+ border-collapse: collapse;
1195
+ }
1196
+
1197
+ .tabulator-print-table .tabulator-data-tree-branch {
1198
+ display: inline-block;
1199
+ vertical-align: middle;
1200
+ height: 9px;
1201
+ width: 7px;
1202
+ margin-top: -9px;
1203
+ margin-right: 5px;
1204
+ border-bottom-left-radius: 1px;
1205
+ border-left: 2px solid #ddd;
1206
+ border-bottom: 2px solid #ddd;
1207
+ }
1208
+
1209
+ .tabulator-print-table .tabulator-print-table-group {
1210
+ box-sizing: border-box;
1211
+ border-bottom: 1px solid #999;
1212
+ border-right: 1px solid #ddd;
1213
+ border-top: 1px solid #999;
1214
+ padding: 5px;
1215
+ padding-left: 10px;
1216
+ background: #ccc;
1217
+ font-weight: bold;
1218
+ min-width: 100%;
1219
+ }
1220
+
1221
+ @media (hover: hover) and (pointer: fine) {
1222
+ .tabulator-print-table .tabulator-print-table-group:hover {
1223
+ cursor: pointer;
1224
+ background-color: rgba(0, 0, 0, 0.1);
1225
+ }
1226
+ }
1227
+
1228
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {
1229
+ margin-right: 10px;
1230
+ border-left: 6px solid transparent;
1231
+ border-right: 6px solid transparent;
1232
+ border-top: 6px solid #666;
1233
+ border-bottom: 0;
1234
+ }
1235
+
1236
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-1 td {
1237
+ padding-left: 30px !important;
1238
+ }
1239
+
1240
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-2 td {
1241
+ padding-left: 50px !important;
1242
+ }
1243
+
1244
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-3 td {
1245
+ padding-left: 70px !important;
1246
+ }
1247
+
1248
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-4 td {
1249
+ padding-left: 90px !important;
1250
+ }
1251
+
1252
+ .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-5 td {
1253
+ padding-left: 110px !important;
1254
+ }
1255
+
1256
+ .tabulator-print-table .tabulator-print-table-group .tabulator-group-toggle {
1257
+ display: inline-block;
1258
+ }
1259
+
1260
+ .tabulator-print-table .tabulator-print-table-group .tabulator-arrow {
1261
+ display: inline-block;
1262
+ width: 0;
1263
+ height: 0;
1264
+ margin-right: 16px;
1265
+ border-top: 6px solid transparent;
1266
+ border-bottom: 6px solid transparent;
1267
+ border-right: 0;
1268
+ border-left: 6px solid #666;
1269
+ vertical-align: middle;
1270
+ }
1271
+
1272
+ .tabulator-print-table .tabulator-print-table-group span {
1273
+ margin-left: 10px;
1274
+ color: #d00;
1275
+ }
1276
+
1277
+ .tabulator-print-table .tabulator-data-tree-control {
1278
+ display: inline-flex;
1279
+ justify-content: center;
1280
+ align-items: center;
1281
+ vertical-align: middle;
1282
+ height: 11px;
1283
+ width: 11px;
1284
+ margin-right: 5px;
1285
+ border: 1px solid #333;
1286
+ border-radius: 2px;
1287
+ background: rgba(0, 0, 0, 0.1);
1288
+ overflow: hidden;
1289
+ }
1290
+
1291
+ @media (hover: hover) and (pointer: fine) {
1292
+ .tabulator-print-table .tabulator-data-tree-control:hover {
1293
+ cursor: pointer;
1294
+ background: rgba(0, 0, 0, 0.2);
1295
+ }
1296
+ }
1297
+
1298
+ .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
1299
+ display: inline-block;
1300
+ position: relative;
1301
+ height: 7px;
1302
+ width: 1px;
1303
+ background: transparent;
1304
+ }
1305
+
1306
+ .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
1307
+ position: absolute;
1308
+ content: '';
1309
+ left: -3px;
1310
+ top: 3px;
1311
+ height: 1px;
1312
+ width: 7px;
1313
+ background: #333;
1314
+ }
1315
+
1316
+ .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {
1317
+ display: inline-block;
1318
+ position: relative;
1319
+ height: 7px;
1320
+ width: 1px;
1321
+ background: #333;
1322
+ }
1323
+
1324
+ .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
1325
+ position: absolute;
1326
+ content: '';
1327
+ left: -3px;
1328
+ top: 3px;
1329
+ height: 1px;
1330
+ width: 7px;
1331
+ background: #333;
1332
+ }
1333
+
1334
+ .tabulator {
1335
+ border: none;
1336
+ background-color: #fff;
1337
+ }
1338
+
1339
+ .tabulator .tabulator-header .tabulator-calcs-holder {
1340
+ background: #f2f2f2 !important;
1341
+ border-bottom: 1px solid #999;
1342
+ }
1343
+
1344
+ .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
1345
+ background: #f2f2f2 !important;
1346
+ }
1347
+
1348
+ .tabulator .tabulator-tableholder .tabulator-placeholder span {
1349
+ color: #000;
1350
+ }
1351
+
1352
+ .tabulator .tabulator-footer .tabulator-calcs-holder {
1353
+ background: #f2f2f2 !important;
1354
+ border-bottom: 1px solid #fff;
1355
+ }
1356
+
1357
+ .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
1358
+ background: #f2f2f2 !important;
1359
+ }
1360
+
1361
+ .tabulator-row {
1362
+ border-bottom: 1px solid #ddd;
1363
+ }
1364
+
1365
+ .tabulator-row .tabulator-cell:last-of-type {
1366
+ border-right: none;
1367
+ }
1368
+
1369
+ .tabulator-row.tabulator-group span {
1370
+ color: #666;
1371
+ }
1372
+
1373
+ .tabulator-print-table .tabulator-print-table-group span {
1374
+ margin-left: 10px;
1375
+ color: #666;
1376
+ }
1377
+
1378
+ /*# sourceMappingURL=tabulator_simple.css.map */
1379
+ `;