@vuu-ui/vuu-table 0.8.9-debug → 0.8.10-debug

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/index.css CHANGED
@@ -20,1908 +20,6 @@
20
20
  height: var(--columnResizer-height, calc(100% + 1px));
21
21
  }
22
22
 
23
- /* ../vuu-layout/src/dock-layout/Drawer.css */
24
- .vuuDrawer {
25
- --drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);
26
- --vuu-close-icon-svg: var(--svg-chevron-double-right);
27
- transition: flex-basis;
28
- transition-duration: var(--drawer-transition-duration);
29
- position: relative;
30
- z-index: 1;
31
- flex-basis: 0;
32
- flex-grow: 1;
33
- flex-shrink: 1;
34
- min-width: 0;
35
- min-height: 0;
36
- display: flex;
37
- }
38
- .vuuDrawer-peekaboo {
39
- flex-basis: var(--drawer-peek-size);
40
- flex-grow: 0;
41
- flex-shrink: 0;
42
- }
43
- .vuuDrawer-inline.vuuDrawer-open {
44
- flex-basis: var(--drawer-size);
45
- flex-grow: 0;
46
- flex-shrink: 0;
47
- }
48
- .vuuDrawer-liner {
49
- background-color: var(--drawer-bg);
50
- overflow: hidden;
51
- position: relative;
52
- }
53
- .vuuDrawer-content {
54
- height: 100%;
55
- overflow: hidden;
56
- position: absolute;
57
- top: 0;
58
- right: var(--drawer-peek-size);
59
- transition: right;
60
- transition-duration: var(--drawer-transition-duration);
61
- width: 100%;
62
- flex: 1 1 100%;
63
- }
64
- .vuuDrawer-open .vuuDrawer-content {
65
- right: 0;
66
- }
67
- .vuuDrawer-left {
68
- border-right: var(--drawer-leading-edge-border);
69
- }
70
- .vuuDrawer-right {
71
- border-left: var(--drawer-leading-edge-border);
72
- }
73
- .vuuDrawer-top {
74
- border-bottom: var(--drawer-leading-edge-border);
75
- }
76
- .vuuDrawer-bottom {
77
- border-top: var(--drawer-leading-edge-border);
78
- }
79
- .vuuDrawer-left .vuuDrawer-liner,
80
- .vuuDrawer-right .vuuDrawer-liner {
81
- height: 100%;
82
- transition: width;
83
- }
84
- .vuuDrawer-top .vuuDrawer-liner,
85
- .vuuDrawer-bottom .vuuDrawer-liner {
86
- width: 100%;
87
- transition: height;
88
- }
89
- .vuuDrawer-inline .vuuDrawer-liner {
90
- width: 100%;
91
- height: 100%;
92
- }
93
- .vuuDrawer-over .vuuDrawer-liner {
94
- position: absolute;
95
- transition-duration: 0.4s;
96
- }
97
- .vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner {
98
- top: 0;
99
- left: 0;
100
- width: 0;
101
- }
102
- .vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner {
103
- top: 0;
104
- right: 0;
105
- width: 0;
106
- }
107
- .vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner {
108
- height: 0;
109
- top: 0;
110
- left: 0;
111
- }
112
- .vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner {
113
- bottom: 0;
114
- height: 0;
115
- left: 0;
116
- }
117
- .vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
118
- .vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
119
- width: var(--drawer-peek-size);
120
- }
121
- .vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
122
- .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
123
- height: var(--drawer-peek-size);
124
- }
125
- .vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
126
- .vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
127
- width: var(--drawer-size);
128
- }
129
- .vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
130
- .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
131
- height: var(--drawer-size);
132
- }
133
- .vuuDrawer-top,
134
- .vuuDrawer-left {
135
- order: 0;
136
- }
137
- .vuuDrawer-bottom,
138
- .vuuDrawer-right {
139
- order: 99;
140
- }
141
- .vuuDrawer-left,
142
- .vuuDrawer-right {
143
- flex-direction: column;
144
- }
145
- .vuuToggleButton-container {
146
- --saltButton-height: 28px;
147
- --saltButton-width: 28px;
148
- --vuu-icon-size: 12px;
149
- flex: 0 0 28px;
150
- }
151
- .vuuDrawer-open {
152
- --vuu-close-icon-svg: var(--svg-chevron-double-left);
153
- }
154
-
155
- /* ../vuu-layout/src/dock-layout/DockLayout.css */
156
- .vuuDockLayout {
157
- --chest-bg: var(--hw-chest-bg, inherit);
158
- --drawer-bg: var(--hw-drawer-bg, inherit);
159
- --drawer-size: var(--hw-drawer-size, 200px);
160
- --drawer-peek-size: var(--hw-drawer-peek-size, 32px);
161
- --drawer-transition-duration: var(--hw-drawer-transition-duration, 0.4s);
162
- background-color: var(--chest-bg);
163
- display: flex;
164
- }
165
- .vuuDockLayout-horizontal {
166
- flex-direction: row;
167
- }
168
- .vuuDockLayout-vertical {
169
- flex-direction: column;
170
- }
171
- .vuuDockLayout-content {
172
- background-color: var(--chest-bg);
173
- flex-grow: 1;
174
- flex-shrink: 1;
175
- overflow: hidden;
176
- display: flex;
177
- align-items: center;
178
- justify-content: center;
179
- }
180
- .vuuDockLayout-horizontal .vuuDockLayout-content {
181
- flex-basis: 100%;
182
- }
183
- .vuuDockLayout-vertical .vuuDockLayout-content {
184
- flex-basis: 100%;
185
- }
186
-
187
- /* ../vuu-layout/src/Component.css */
188
-
189
- /* ../vuu-layout/src/drag-drop/DropMenu.css */
190
- .vuuDropMenu {
191
- margin-left: -50%;
192
- margin-bottom: -50%;
193
- background-color: white;
194
- border: solid 1px var(--grey40);
195
- display: inline-flex;
196
- justify-content: center;
197
- align-items: center;
198
- padding: 3px;
199
- border-radius: 3px;
200
- }
201
- .vuuDropMenu-left,
202
- .vuuDropMenu-right {
203
- flex-direction: column;
204
- }
205
- .vuuDropMenu-bottom {
206
- transform: translate(0, -30px);
207
- }
208
- .vuuDropMenu-right {
209
- transform: translate(-20px, 0);
210
- }
211
- .vuuDropMenu-item {
212
- --vuu-icon-size: 20px;
213
- width: 32px;
214
- height: 32px;
215
- background-color: var(--grey20);
216
- border-bottom: solid 1px var(--grey40);
217
- cursor: pointer;
218
- display: flex;
219
- align-items: center;
220
- justify-content: center;
221
- }
222
- .vuuDropMenu-item .Icon {
223
- transform: scale(1.25);
224
- transform-origin: center center;
225
- }
226
- .vuuDropMenu-left .vuuDropMenu-item .hwIcon {
227
- transform: scale(1.25) rotate(180deg);
228
- transform-origin: center center;
229
- }
230
- .vuuDropMenu-top .vuuDropMenu-item .hwIcon {
231
- transform: scale(1.25) rotate(270deg);
232
- transform-origin: center center;
233
- }
234
- .vuuDropMenu-bottom .vuuDropMenu-item .hwIcon {
235
- transform: scale(1.25) rotate(90deg);
236
- transform-origin: center center;
237
- }
238
- .vuuDropMenu-item .hwIcon-path {
239
- fill: grey;
240
- }
241
- .vuuDropMenu-item:hover {
242
- background-color: rgba(200, 200, 200, 0.5);
243
- }
244
- .vuuDropMenu-item:hover .hwIcon-path-2 {
245
- fill: blue;
246
- }
247
- .vuuDropMenu-item:last-child {
248
- border-bottom: none;
249
- }
250
-
251
- /* ../vuu-layout/src/drag-drop/DropTargetRenderer.css */
252
- #hw-drag-canvas {
253
- visibility: hidden;
254
- z-index: 10;
255
- position: absolute;
256
- top: 0px;
257
- left: 0;
258
- right: 0;
259
- bottom: 0;
260
- background-color: transparent;
261
- }
262
- #hw-drag-canvas > svg {
263
- position: absolute;
264
- }
265
- .drawing #hw-drag-canvas {
266
- visibility: visible;
267
- }
268
- path.drop-target {
269
- stroke: blue;
270
- stroke-width: 4px;
271
- fill: transparent;
272
- }
273
- path.drop-target.centre {
274
- stroke: red;
275
- }
276
- #vuu-drop-outline {
277
- fill: rgba(0, 0, 255, .3);
278
- stroke: none;
279
- stroke-dasharray: 4 2;
280
- }
281
- #hw-drop-guides {
282
- fill: none;
283
- stroke: rgba(0, 0, 0, 0.3);
284
- stroke-dasharray: 2 3;
285
- }
286
-
287
- /* ../vuu-layout/src/DraggableLayout.css */
288
- .DraggableLayout {
289
- display: inline-block;
290
- outline: none;
291
- }
292
- [data-dragging=true] {
293
- position: absolute !important;
294
- z-index: 100;
295
- }
296
- .vuuSimpleDraggableWrapper {
297
- background-color: white;
298
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
299
- }
300
- .vuuSimpleDraggableWrapper > * {
301
- height: 100%;
302
- width: 100%;
303
- }
304
-
305
- /* ../vuu-layout/src/placeholder/Placeholder.css */
306
- .vuuPlaceholder {
307
- flex-basis: 0;
308
- flex-grow: 1;
309
- flex-shrink: 1;
310
- }
311
- .vuuPlaceholder-shim {
312
- flex-grow: 0;
313
- flex-shrink: 0;
314
- }
315
-
316
- /* ../vuu-layout/src/flexbox/Splitter.css */
317
- .vuuSplitter {
318
- --splitter-background: var(--salt-separable-secondary-borderColor);
319
- --splitter-borderColor: var(--salt-separable-secondary-borderColor);
320
- --splitter-borderStyle: none;
321
- --splitter-borderWidth: 0;
322
- --splitter-size: 3px;
323
- align-items: center;
324
- background-color: var(--splitter-background);
325
- border-color: var(--splitter-borderColor);
326
- border-style: var(--splitter-borderStyle);
327
- border-width: var(--splitter-borderWidth);
328
- box-sizing: border-box;
329
- display: flex;
330
- justify-content: center;
331
- position: relative;
332
- outline: none;
333
- z-index: 1;
334
- }
335
- .vuuSplitter:hover {
336
- --splitter-background: var(--salt-separable-primary-borderColor);
337
- }
338
- .vuuSplitter-active {
339
- --splitter-background: var(--salt-separable-primary-borderColor);
340
- }
341
- .vuuSplitter-column {
342
- cursor: ns-resize;
343
- height: var(--splitter-size);
344
- }
345
- .vuuSplitter:not(.vuuSplitter-column) {
346
- cursor: ew-resize;
347
- width: var(--splitter-size);
348
- }
349
- .vuuSplitter:before {
350
- border: none;
351
- border-radius: 0;
352
- content: "";
353
- display: block;
354
- padding: 0;
355
- }
356
- .vuuSplitter-grab-zone {
357
- position: absolute;
358
- background-color: rgba(255, 0, 0, 0.01);
359
- cursor: inherit;
360
- }
361
- .vuuSplitter-column .vuuSplitter-grab-zone {
362
- left: 0;
363
- right: 0;
364
- top: -5px;
365
- bottom: -5px;
366
- }
367
- .vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
368
- left: -5px;
369
- right: -5px;
370
- top: 0;
371
- bottom: 0;
372
- }
373
- .vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
374
- background-color: rgba(255, 255, 255, .05);
375
- left: -150px;
376
- right: -150px;
377
- }
378
- .vuuSplitter:not(.vuuSplitter-column):before {
379
- width: 1px;
380
- height: 10px;
381
- background: linear-gradient(to bottom, var(--grey900) 10%, transparent 10%, transparent 30%, var(--grey900) 30%, var(--grey900) 40%, transparent 40%, transparent 60%, var(--grey900) 60%, var(--grey900) 70%, transparent 70%, transparent 90%, var(--grey900) 90%);
382
- }
383
- .vuuSplitter-active.vuuSplitter-column:before {
384
- background: linear-gradient(to right, #ffffff 10%, transparent 10%, transparent 30%, #ffffff 30%, #ffffff 40%, transparent 40%, transparent 60%, #ffffff 60%, #ffffff 70%, transparent 70%, transparent 90%, #ffffff 90%);
385
- }
386
- .vuuSplitter-active:not(.vuuSplitter-column):before {
387
- background: linear-gradient(to bottom, #ffffff 10%, transparent 10%, transparent 30%, #ffffff 30%, #ffffff 40%, transparent 40%, transparent 60%, #ffffff 60%, #ffffff 70%, transparent 70%, transparent 90%, #ffffff 90%);
388
- }
389
- .vuuSplitter-column:before {
390
- width: 10px;
391
- height: 1px;
392
- background: linear-gradient(to right, var(--grey900) 10%, transparent 10%, transparent 30%, var(--grey900) 30%, var(--grey900) 40%, transparent 40%, transparent 60%, var(--grey900) 60%, var(--grey900) 70%, transparent 70%, transparent 90%, var(--grey900) 90%);
393
- }
394
-
395
- /* ../vuu-layout/src/flexbox/Flexbox.css */
396
- :root {
397
- --hw-space-unit: 4px;
398
- --hw-flex-gap: 3;
399
- --hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
400
- }
401
- .hwFlexbox {
402
- background-color: var(--container1-background);
403
- box-sizing: border-box;
404
- display: flex;
405
- gap: calc(var(--spacing) * var(--space));
406
- min-height: 0;
407
- min-width: 0;
408
- overflow: hidden;
409
- }
410
- .hwFlexbox-column {
411
- flex-direction: column;
412
- }
413
- .hwFlexbox-row {
414
- flex-direction: row;
415
- }
416
- .hwFlexbox > .Splitter {
417
- flex-basis: auto;
418
- flex-grow: 0;
419
- flex-shrink: 0;
420
- }
421
- .hwFlexbox.full-page {
422
- height: 100vh;
423
- width: 100vw;
424
- }
425
- .flex-fill {
426
- border-color: red;
427
- flex: 0;
428
- flex-grow: 1;
429
- flex-shrink: 1;
430
- }
431
- .vuuView.flex-fill {
432
- border-color: red;
433
- }
434
-
435
- /* ../vuu-layout/src/flexbox/FluidGrid.css */
436
- :root {
437
- --hw-space-unit: 4px;
438
- --hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
439
- }
440
- .hwFluidGrid {
441
- --gap: var(--gutter-width);
442
- display: flex;
443
- gap: calc(var(--grid-gap) * var(--hw-space-unit));
444
- flex-wrap: wrap;
445
- padding: 0;
446
- }
447
- .hwFluidGrid > * {
448
- --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
449
- --gutter-count: calc(var(--parent-col-count) - 1);
450
- --total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
451
- --available-width: calc(100% - var(--total-gutter-width));
452
- flex-basis: 0;
453
- flex-grow: 1;
454
- flex-shrink: 1;
455
- position: relative;
456
- }
457
- .hwFluidGrid > *:after {
458
- content: "";
459
- position: absolute;
460
- top: 0;
461
- left: 0;
462
- right: 0;
463
- bottom: 0;
464
- border: dashed 2px blue;
465
- }
466
- .hwFluidGrid > [data-xs] {
467
- --internal-gutter-count: calc(var(--col-span) - 1);
468
- --percent-width: calc(var(--col-span) / var(--parent-col-count));
469
- --internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
470
- flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
471
- flex-grow: 0;
472
- }
473
- .hwFluidGrid > [data-xs="1"] {
474
- --col-span: 1;
475
- }
476
- .hwFluidGrid > [data-xs="2"] {
477
- --col-span: 2;
478
- }
479
- .hwFluidGrid > [data-xs="3"] {
480
- --col-span: 3;
481
- }
482
- .hwFluidGrid > [data-xs="4"] {
483
- --col-span: 4;
484
- }
485
- .hwFluidGrid > [data-xs="6"] {
486
- --col-span: 6;
487
- }
488
- .hwFluidGrid > [data-xs="8"] {
489
- --col-span: 8;
490
- }
491
- .hwFluidGrid > [data-xs="9"] {
492
- --col-span: 9;
493
- }
494
- .hwFluidGrid > [data-xs="10"] {
495
- --col-span: 10;
496
- }
497
- .hwFluidGrid > [data-xs="11"] {
498
- --col-span: 11;
499
- }
500
- .hwFluidGrid > [data-xs="12"] {
501
- --col-span: 12;
502
- }
503
- @media (min-width: 600px) {
504
- .hwFluidGrid > [data-sm="1"] {
505
- --col-span: 1;
506
- }
507
- .hwFluidGrid > [data-sm="2"] {
508
- --col-span: 2;
509
- }
510
- .hwFluidGrid > [data-sm="3"] {
511
- --col-span: 3;
512
- }
513
- .hwFluidGrid > [data-sm="4"] {
514
- --col-span: 4;
515
- }
516
- .hwFluidGrid > [data-sm="6"] {
517
- --col-span: 6;
518
- }
519
- .hwFluidGrid > [data-sm="8"] {
520
- --col-span: 8;
521
- }
522
- .hwFluidGrid > [data-sm="9"] {
523
- --col-span: 9;
524
- }
525
- .hwFluidGrid > [data-sm="10"] {
526
- --col-span: 10;
527
- }
528
- .hwFluidGrid > [data-sm="11"] {
529
- --col-span: 11;
530
- }
531
- .hwFluidGrid > [data-sm="12"] {
532
- --col-span: 12;
533
- }
534
- }
535
- .hwFluidGrid-show-grid {
536
- --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
537
- --grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
538
- --grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
539
- --grid-available-width: calc(100% - var(--grid-total-gutter-width));
540
- --grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
541
- --column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
542
- background: repeating-linear-gradient(to right, var(--hw-fluid-grid-col-bg) 0, var(--hw-fluid-grid-col-bg) var(--column-width), white var(--column-width), white calc(var(--column-width) + var(--gutter-width)));
543
- }
544
-
545
- /* ../vuu-layout/src/layout-view/View.css */
546
- .vuuView {
547
- border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
548
- border-width: var(--vuuView-borderWidth, 1px);
549
- border-style: var(--vuuView-borderStyle, none);
550
- display: flex;
551
- flex-direction: column;
552
- margin: var(--vuuView-margin, 0px);
553
- min-height: 50px;
554
- min-width: 50px;
555
- outline: none;
556
- overflow: hidden;
557
- position: relative;
558
- }
559
- .vuuView.focus-visible:after {
560
- content: "";
561
- position: absolute;
562
- top: 0;
563
- left: 0;
564
- right: 0;
565
- bottom: 0;
566
- border: dotted cornflowerblue 2px;
567
- }
568
- .vuuView.dragging {
569
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
570
- }
571
- .vuuView-main {
572
- display: flex;
573
- flex-direction: var(--vuuView-flexDirection, column);
574
- flex-wrap: var(--vuuView-flex-wrap, nowrap);
575
- flex: 1;
576
- overflow: hidden;
577
- position: relative;
578
- }
579
- .vuuView-main > * {
580
- flex-basis: auto;
581
- flex-grow: var(--vuuView-flex-grow, 1);
582
- flex-shrink: var(--vuuView-flex-shrink, 1);
583
- }
584
- .vuuView-collapsed .vuuView-main {
585
- display: none;
586
- }
587
- .vuuView-collapsed + .Splitter {
588
- display: none;
589
- }
590
- .vuuView-collapsed .Toolbar-vertical {
591
- border-right: solid 1px var(--grey40);
592
- }
593
- .vuuView-collapsed .Toolbar-vertical .toolbar-title {
594
- display: none;
595
- }
596
-
597
- /* ../vuu-layout/src/layout-header/Header.css */
598
- .vuuHeader {
599
- --saltButton-height: 24px;
600
- --saltButton-width: 24px;
601
- }
602
- .salt-density-high .vuuHeader {
603
- --saltToolbarField-marginTop: 0;
604
- }
605
-
606
- /* ../vuu-layout/src/measured-container/MeasuredContainer.css */
607
- .vuuMeasuredContainer {
608
- height: var(--vuuMeasuredContainer-height, var(--measured-css-height));
609
- width: var(--measured-css-width);
610
- }
611
-
612
- /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
613
- .vuuOverflowContainer {
614
- --item-gap: 2px;
615
- --overflow-direction: row;
616
- --overflow-width: 0px;
617
- --border-size: calc((var(--overflow-container-height) - 24px) / 2);
618
- background-color: var(--vuuOverflowContainer-background);
619
- height: var(--overflow-container-height);
620
- }
621
- .vuuOverflowContainer-horizontal {
622
- --item-align: center;
623
- --item-margin: 0 var(--item-gap) 0 var(--item-gap);
624
- }
625
- .vuuOverflowContainer-vertical {
626
- --item-align: stretch;
627
- --item-margin: var(--item-gap) 0 var(--item-gap) 0;
628
- --overflow-direction: column;
629
- }
630
- .vuuOverflowContainer-wrapContainer {
631
- align-items: var(--item-align);
632
- display: flex;
633
- flex-direction: var(--overflow-direction);
634
- flex-wrap: wrap;
635
- height: var(--overflow-container-height);
636
- min-width: 44px;
637
- overflow: hidden;
638
- position: relative;
639
- width: 100%;
640
- }
641
- .vuuOverflowContainer-wrapContainer.overflowed {
642
- --overflow-order: 2;
643
- --overflow-left: auto;
644
- --overflow-position: relative;
645
- --overflow-width: auto;
646
- }
647
- .vuuOverflowContainer-item {
648
- align-items: inherit;
649
- display: flex;
650
- order: 1;
651
- position: relative;
652
- height: var(--overflow-container-height);
653
- margin: var(--item-margin);
654
- }
655
- .vuuOverflowContainer-item[data-align=right] {
656
- margin-left: auto;
657
- }
658
- .vuuOverflowContainer-item.wrapped {
659
- --overflow-item-bg: #ccc;
660
- order: 3;
661
- }
662
- .vuuOverflowContainer-item.vuuDraggable-dragAway,
663
- .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
664
- display: none;
665
- }
666
- .vuuOverflowContainer-item.vuuDropTarget-settling {
667
- visibility: hidden;
668
- }
669
- .vuuOverflowContainer-OverflowIndicator {
670
- align-items: center;
671
- background-color: transparent;
672
- display: flex;
673
- height: var(--overflow-container-height);
674
- height: var(--overflow-container-height);
675
- order: var(--overflow-order, 99);
676
- overflow: hidden;
677
- left: var(--overflow-left, 100%);
678
- position: var(--overflow-position, absolute);
679
- width: var(--overflow-width);
680
- }
681
- .vuuDraggable-vuuOverflowContainer {
682
- align-items: center;
683
- display: flex;
684
- height: 44px;
685
- }
686
-
687
- /* ../vuu-layout/src/palette/Palette.css */
688
- .vuuPalette {
689
- --vuuList-borderStyle: none;
690
- }
691
- .vuuPalette-horizontal {
692
- align-items: center;
693
- display: flex;
694
- }
695
- .vuuPaletteItem {
696
- --vuu-icon-color: var(--salt-text-primary-foreground);
697
- --vuu-icon-left: 0;
698
- --vuu-icon-size: 16px;
699
- --vuu-icon-top: 11px;
700
- --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
701
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
702
- padding-left: 12px;
703
- font-size: 12px;
704
- font-weight: 600;
705
- }
706
- .vuuSimpleDraggableWrapper > .vuuPaletteItem {
707
- --vuu-icon-color: var(--salt-selectable-foreground);
708
- }
709
- .salt-theme .vuuPaletteItem {
710
- font-size: 11px;
711
- font-weight: normal;
712
- }
713
-
714
- /* ../vuu-layout/src/stack/Stack.css */
715
- .Tabs {
716
- display: flex;
717
- box-sizing: border-box;
718
- flex-direction: column;
719
- }
720
- .Tabs-horizontal {
721
- --vuu-tabs-border-style: none solid none none;
722
- flex-direction: row;
723
- }
724
- .Tabs .Toolbar:before {
725
- left: 0;
726
- width: 100%;
727
- bottom: 0;
728
- height: 1px;
729
- content: "";
730
- position: absolute;
731
- background: var(--grey60);
732
- }
733
- .vuuTabHeader {
734
- --saltTabs-activationIndicator-background: transparent;
735
- --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
736
- border-color: var(--salt-container-primary-borderColor);
737
- border-style: var(--vuu-tabs-border-style, none none solid none);
738
- border-width: 1px;
739
- }
740
- .vuuTabHeader + .hwFlexbox,
741
- .vuuTabHeader + * {
742
- flex: 1;
743
- }
744
- .vuuTabHeader + .vuuView > .vuuHeader {
745
- height: 0;
746
- overflow: hidden;
747
- }
748
- .Layout-svg-button {
749
- --spacing-medium: 5px;
750
- }
751
-
752
- /* ../vuu-layout/src/toolbar/Toolbar.css */
753
- .vuuToolbar {
754
- background: var(--vuuToolbar-background, inherit);
755
- height: var(--vuuToolbar-height, 36px);
756
- }
757
- .vuuToolbarItem {
758
- height: 100%;
759
- }
760
- .vuuToolbarItem.vuuFocusVisible {
761
- outline-color: var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));
762
- outline-style: dashed;
763
- outline-width: 1px;
764
- outline-offset: -1px;
765
- }
766
-
767
- /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
768
- [data-design-mode=true] .Component {
769
- filter: grayscale(100%);
770
- opacity: 0.4;
771
- }
772
- [data-design-mode=true] .Component:after {
773
- color: black;
774
- content: "Component";
775
- height: 12px;
776
- background-color: yellow;
777
- }
778
- .LayoutConfigurator {
779
- --margin-color: #f3cea5;
780
- --border-color: #fddda0;
781
- --padding-color: #c6d092;
782
- --content-color: #8cb6c0;
783
- display: flex;
784
- flex-direction: column;
785
- align-items: stretch;
786
- background-color: var(--margin-color);
787
- }
788
- .LayoutConfigurator .layout-outer {
789
- flex: 1 1 auto;
790
- display: flex;
791
- flex-direction: column;
792
- align-items: stretch;
793
- }
794
- .LayoutBox {
795
- --hw-control-font-size: 13px;
796
- --hw-text-input-bg: rgba(255, 255, 255, 0.3);
797
- --hwTextInput-padding: 3px;
798
- --hw-text-input-position: absolute;
799
- --hwTextInput-width: 30px;
800
- flex: 1 1 auto;
801
- }
802
- .LayoutBox > .layout-top {
803
- flex: 0 0 40px;
804
- padding-left: 12px;
805
- display: flex;
806
- flex-direction: row;
807
- align-items: center;
808
- position: relative;
809
- }
810
- .LayoutBox > .layout-bottom {
811
- flex: 0 0 40px;
812
- position: relative;
813
- display: flex;
814
- flex-direction: row;
815
- align-items: center;
816
- }
817
- .LayoutBox > .layout-inner > .layout-right,
818
- .LayoutBox > .layout-inner > .layout-left {
819
- flex: 0 0 40px;
820
- display: flex;
821
- flex-direction: column;
822
- justify-content: center;
823
- align-items: center;
824
- }
825
- .layout-top,
826
- .layout-bottom {
827
- --hw-text-input-margin: 0 0 0 -15px;
828
- }
829
- .layout-top > .layout-input,
830
- .layout-bottom > .layout-input {
831
- left: 50%;
832
- }
833
- .LayoutBox > .layout-inner {
834
- flex: 1 1 auto;
835
- display: flex;
836
- flex-direction: row;
837
- align-items: stretch;
838
- }
839
- .LayoutBox.layout-margin {
840
- background-color: var(--margin-color);
841
- border: dashed 2px black;
842
- }
843
- .LayoutBox.layout-border {
844
- background-color: var(--border-color);
845
- border: solid 2px black;
846
- }
847
- .LayoutBox.layout-padding {
848
- background-color: var(--padding-color);
849
- border: dashed 2px black;
850
- }
851
- .LayoutBox .layout-content {
852
- flex: 1 1 auto;
853
- background-color: var(--content-color);
854
- border: solid 2px #808080;
855
- }
856
- .LayoutBox .layout-title {
857
- color: #161616;
858
- font-size: 11px;
859
- left: 4px;
860
- line-height: 15px;
861
- position: absolute;
862
- top: 1px;
863
- }
864
-
865
- /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
866
- .hwLayoutTreeViewer {
867
- }
868
- .hwLayoutTreeNode {
869
- cursor: default;
870
- }
871
- .hwLayoutTreeNode:hover {
872
- background-color: rgba(255, 255, 255, 0.2);
873
- }
874
- .hwLayoutTreeNode[aria-selected=true] {
875
- background-color: cornflowerblue;
876
- color: white;
877
- }
878
-
879
- /* ../vuu-ui-controls/src/dropdown/Dropdown.css */
880
- .vuuDropdown {
881
- --saltIcon-margin: 2px 0 0 8px;
882
- --saltButton-borderStyle: solid;
883
- --saltButton-borderColor: var(--salt-editable-borderColor);
884
- --saltButton-borderWidth: 1px;
885
- --saltButton-borderRadius: 6px;
886
- --saltButton-height: var(--vuuDropdown-height, auto);
887
- display: inline-block;
888
- line-height: 0;
889
- position: relative;
890
- width: var(--vuuDropdown-width, auto);
891
- }
892
- .vuuDropdown-fullWidth {
893
- width: 100%;
894
- }
895
- .vuuDropdown-popup {
896
- background: var(--salt-container-primary-background);
897
- z-index: calc(var(--salt-zIndex-flyover) - 1);
898
- }
899
- .vuuDropdown-popup-component {
900
- --vuuList-borderStyle: none;
901
- }
902
- .vuuDropdownButton {
903
- width: 100%;
904
- }
905
-
906
- /* ../vuu-ui-controls/src/dropdown/DropdownButton.css */
907
- .vuuDropdownButton {
908
- --saltButton-background-hover: var(--salt-actionable-secondary-background);
909
- --saltButton-background-active: var(--salt-actionable-secondary-background);
910
- --saltButton-fontWeight: var(--salt-text-fontWeight-strong);
911
- --saltButton-textAlign: left;
912
- --saltButton-textTransform: none;
913
- --saltButton-width: 100%;
914
- --vuu-icon-size: 16px;
915
- }
916
- .vuuDropdownButton:active {
917
- --saltIcon-color: var(--salt-actionable-secondary-foreground);
918
- --saltButton-text-color-active: var(--salt-actionable-secondary-foreground);
919
- }
920
- .vuuDropdownButton-fullwidth {
921
- width: 100%;
922
- }
923
- .vuuDropdownButton-content {
924
- align-items: center;
925
- flex: 1;
926
- width: 100%;
927
- display: flex;
928
- white-space: nowrap;
929
- }
930
- .vuuDropdownButton-buttonLabel {
931
- display: inline-block;
932
- letter-spacing: 0;
933
- overflow: hidden;
934
- text-overflow: ellipsis;
935
- width: 100%;
936
- }
937
- .vuuDropdownButton-formField.saltButton:focus,
938
- .vuuDropdownButton-formField.saltButton:focus-visible {
939
- outline: none;
940
- }
941
-
942
- /* ../vuu-ui-controls/src/list/Highlighter.css */
943
- .saltHighlighter-highlight {
944
- font-weight: var(--salt-text-fontWeight-strong);
945
- }
946
-
947
- /* ../vuu-ui-controls/src/list/CheckboxIcon.css */
948
- .vuuCheckboxIcon {
949
- --vuu-icon-size: 12px;
950
- --vuu-icon-left: -1px;
951
- --vuu-icon-top: -1px;
952
- --vuu-icon-svg: var(--vuu-svg-tick);
953
- border-style: solid;
954
- border-color: var(--vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor));
955
- border-radius: var(--vuuCheckboxIcon-borderRadius, 3px);
956
- border-width: 1px;
957
- display: inline-block;
958
- height: var(--vuuCheckboxIcon-size, 12px);
959
- position: relative;
960
- width: var(--vuuCheckboxIcon-size, 12px);
961
- }
962
- .vuuCheckboxIcon-checked {
963
- background-color: var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));
964
- border-color: var(--vuuCheckboxIcon-borderColor-checked, var(--salt-selectable-borderColor-selected));
965
- }
966
- .vuuCheckboxIcon-checked:after {
967
- content: "";
968
- background-color: white;
969
- left: var(--vuu-icon-left, auto);
970
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
971
- -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
972
- mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
973
- mask-repeat: no-repeat;
974
- -webkit-mask-repeat: no-repeat;
975
- position: absolute;
976
- top: var(--vuu-icon-top, auto);
977
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
978
- }
979
-
980
- /* ../vuu-ui-controls/src/list/ListItem.css */
981
- .vuuListItem {
982
- --list-item-text-color: var(--salt-text-primary-foreground);
983
- --list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));
984
- --list-item-text-color-active: var(--salt-text-primary-foreground);
985
- --list-item-background-active: var(--salt-selectable-background-selected);
986
- --list-item-alignItems: center;
987
- }
988
- .vuuListItem.vuuHighlighted {
989
- --saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);
990
- --list-item-background: var(--salt-selectable-background-hover);
991
- }
992
- .vuuListItemHeader {
993
- font-weight: var(--salt-text-fontWeight-strong);
994
- }
995
- .vuuListItemHeader[data-sticky] {
996
- position: sticky;
997
- top: 0;
998
- z-index: 1;
999
- }
1000
- .vuuListItem {
1001
- color: var(--list-item-text-color);
1002
- cursor: var(--vuuList-item-cursor, pointer);
1003
- background: var(--vuuList-item-background, var(--list-item-background));
1004
- font-size: var(--salt-text-fontSize);
1005
- text-align: var(--salt-text-textAlign);
1006
- line-height: var(--salt-text-lineHeight);
1007
- height: var(--vuuList-item-height, var(--list-item-height, auto));
1008
- margin-bottom: var(--list-item-gap);
1009
- padding: 0 var(--vuuListItem-padding, var(--salt-size-unit));
1010
- left: 0;
1011
- right: 0;
1012
- display: flex;
1013
- position: relative;
1014
- align-items: var(--list-item-alignItems);
1015
- white-space: nowrap;
1016
- }
1017
- .vuuListItem:last-child {
1018
- margin-bottom: 0px;
1019
- }
1020
- .vuuListItem-checkbox {
1021
- --list-item-background-active: var(--salt-selectable-background);
1022
- --list-item-text-color-active: var(--salt-text-primary-foreground);
1023
- --list-item-text-padding: 0 0 0 var(--salt-size-unit);
1024
- }
1025
- .vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox) {
1026
- --list-item-background: var(--list-item-background-active);
1027
- color: var(--list-item-text-color-active);
1028
- }
1029
- .vuuListItem.vuuDisabled {
1030
- --list-item-text-color: var(--salt-text-primary-foreground-disabled);
1031
- cursor: var(--salt-selectable-cursor-disabled);
1032
- }
1033
- .vuuListItem.vuuFocusVisible {
1034
- outline-style: var(--salt-focused-outlineStyle);
1035
- outline-width: var(--salt-focused-outlineWidth);
1036
- outline-offset: -2px;
1037
- outline-color: var(--salt-focused-outlineColor);
1038
- }
1039
- .vuuListItem.vuuFocusVisible:after {
1040
- content: none;
1041
- }
1042
- .vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible {
1043
- outline-color: var(--list-item-selected-focus-outlineColor);
1044
- }
1045
- .vuuListItem-textWrapper {
1046
- flex: 1;
1047
- overflow: hidden;
1048
- padding: var(--list-item-text-padding, 0px);
1049
- white-space: nowrap;
1050
- text-overflow: ellipsis;
1051
- }
1052
- .vuuListItem-proxy {
1053
- position: absolute !important;
1054
- visibility: hidden;
1055
- }
1056
- .vuuDraggable-list-item {
1057
- --vuuList-item-height: 24px;
1058
- background-color: white;
1059
- }
1060
- .vuuListItem.vuuDraggable-dragAway {
1061
- display: none;
1062
- }
1063
-
1064
- /* ../vuu-ui-controls/src/drag-drop/Draggable.css */
1065
- .vuuDraggable {
1066
- background: transparent;
1067
- box-shadow: var(--salt-overlayable-shadow-drag);
1068
- cursor: var(--salt-draggable-grab-cursor-active);
1069
- position: absolute;
1070
- opacity: .95;
1071
- z-index: 2000;
1072
- }
1073
- .vuuDraggable-spacer {
1074
- display: var(--vuuDraggable-display, inline-block);
1075
- height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
1076
- transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
1077
- width: var(--vuuDraggable-spacer-width, 0);
1078
- }
1079
- .vuuDraggable-dropIndicatorPosition {
1080
- display: var(--saltDraggable-display, inline-block);
1081
- height: 0px;
1082
- width: 100%;
1083
- }
1084
- .vuuDraggable-dropIndicatorContainer {
1085
- transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
1086
- }
1087
- .vuuDraggable-dropIndicator {
1088
- background-color: var(--salt-palette-accent-background);
1089
- height: 2px;
1090
- width: 100%;
1091
- }
1092
- .vuuDraggable-dropIndicator:before {
1093
- content: "";
1094
- width: 6px;
1095
- height: 6px;
1096
- border-radius: 3px;
1097
- background-color: var(--salt-palette-accent-background);
1098
- position: absolute;
1099
- top: -2px;
1100
- left: -3px;
1101
- }
1102
- .vuuDraggable-settling {
1103
- transition-property: left, top;
1104
- transition-duration: .15s;
1105
- transition-timing-function: ease-out;
1106
- }
1107
- .vuuDraggable-spacer {
1108
- order: 1;
1109
- }
1110
-
1111
- /* ../vuu-ui-controls/src/list/List.css */
1112
- .vuuList {
1113
- --list-background: var(--salt-container-primary-background);
1114
- --list-borderStyle: var(--vuuList-borderStyle,var(--salt-container-borderStyle));
1115
- --list-borderWidth: var(--salt-size-border);
1116
- --list-height: auto;
1117
- --list-item-height: var(--salt-size-stackable);
1118
- --list-item-gap: 0px;
1119
- --list-maxHeight: 100%;
1120
- --vuuDraggable-display: block;
1121
- --vuuDraggable-spacer-height: 0;
1122
- --vuuDraggable-spacer-width: 100%;
1123
- --vuuDraggable-transitionProp: height;
1124
- --vuuMeasuredContainer-height: var(--computed-list-height);
1125
- background: var(--list-background);
1126
- border-color: var(--salt-container-primary-borderColor);
1127
- border-style: var(--list-borderStyle);
1128
- border-width: var(--list-borderWidth);
1129
- height: var(--saltList-height, var(--list-height));
1130
- max-height: var(--list-maxHeight);
1131
- outline: none;
1132
- position: relative;
1133
- user-select: none;
1134
- width: var(--saltList-width, auto);
1135
- }
1136
- .vuuList-contentSized {
1137
- box-sizing: content-box;
1138
- }
1139
- .vuuList-borderless {
1140
- --list-borderStyle: none;
1141
- }
1142
- .vuuList-viewport {
1143
- height: var(--computed-list-height, var(--measured-px-height));
1144
- overflow: auto;
1145
- width: var(--measured-px-width);
1146
- }
1147
- .vuuListItemHeader {
1148
- --saltList-item-background: var(--list-item-header-background);
1149
- color: var(--list-item-header-color);
1150
- }
1151
- .vuuListItemHeader[data-sticky=true] {
1152
- --saltList-item-background: var(--list-background);
1153
- position: sticky;
1154
- top: 0;
1155
- z-index: 1;
1156
- }
1157
- .vuuList-collapsible .vuuListItemHeader:after {
1158
- border-width: var(--checkbox-borderWidth);
1159
- border-color: var(--checkbox-borderColor);
1160
- content: var(--list-item-header-twisty-content);
1161
- -webkit-mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
1162
- mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
1163
- background: var(--list-item-header-twisty-color);
1164
- height: 12px;
1165
- left: var(--list-item-header-twisty-left);
1166
- right: var(--list-item-header-twisty-right);
1167
- margin-top: -8px;
1168
- position: absolute;
1169
- top: var(--list-item-header-twisty-top);
1170
- transition: transform 0.3s;
1171
- width: 12px;
1172
- }
1173
- .vuuListItemHeader[aria-expanded=false]:after {
1174
- transform: rotate(-90deg);
1175
- }
1176
- .vuuList-scrollingContentContainer {
1177
- box-sizing: inherit;
1178
- position: relative;
1179
- }
1180
- .vuuList-virtualized .vuuListItem {
1181
- line-height: 30px;
1182
- position: absolute;
1183
- top: 0;
1184
- left: 0;
1185
- right: 0;
1186
- will-change: transform;
1187
- }
1188
- .vuuList.saltFocusVisible:after {
1189
- inset: 2px;
1190
- }
1191
-
1192
- /* ../vuu-ui-controls/src/list/RadioIcon.css */
1193
- .vuuRadioIcon {
1194
- --vuu-icon-size: 12px;
1195
- --vuu-icon-left: -1px;
1196
- --vuu-icon-top: -1px;
1197
- --vuu-icon-svg: var(--vuu-svg-radio);
1198
- border-style: solid;
1199
- border-color: var(--vuuRadioIcon-borderColor, var(--salt-selectable-borderColor));
1200
- border-radius: 50%;
1201
- border-width: 1px;
1202
- display: inline-block;
1203
- height: var(--vuuRadioIcon-size, 12px);
1204
- position: relative;
1205
- width: var(--vuuRadioIcon-size, 12px);
1206
- }
1207
- .vuuRadioIcon-checked {
1208
- background-image: var(--vuu-svg-radio);
1209
- border: none;
1210
- background-repeat: no-repeat;
1211
- }
1212
- .vuuRadioIcon-checked:after {
1213
- content: "";
1214
- left: var(--vuu-icon-left, auto);
1215
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
1216
- -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
1217
- mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
1218
- mask-repeat: no-repeat;
1219
- -webkit-mask-repeat: no-repeat;
1220
- position: absolute;
1221
- top: var(--vuu-icon-top, auto);
1222
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
1223
- }
1224
-
1225
- /* ../vuu-ui-controls/src/list/ChevronIcon.css */
1226
- .vuuChevronIcon {
1227
- --vuu-icon-size: 14px;
1228
- --vuu-icon-left: -1px;
1229
- --vuu-icon-top: -1px;
1230
- height: var(--vuuChevronIcon-size, 14px);
1231
- position: relative;
1232
- width: var(--vuuChevronIcon-size, 14px);
1233
- cursor: pointer;
1234
- }
1235
- .vuuChevronIcon:after {
1236
- content: "";
1237
- background-color: #777C94;
1238
- left: var(--vuu-icon-left, auto);
1239
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
1240
- -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
1241
- mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
1242
- mask-repeat: no-repeat;
1243
- -webkit-mask-repeat: no-repeat;
1244
- position: absolute;
1245
- top: var(--vuu-icon-top, auto);
1246
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
1247
- }
1248
- .vuuChevronIcon.up {
1249
- --vuu-icon-svg: var(--vuu-svg-chevron-up);
1250
- }
1251
- .vuuChevronIcon.down {
1252
- --vuu-icon-svg: var(--vuu-svg-chevron-down);
1253
- }
1254
- .vuuChevronIcon.left {
1255
- --vuu-icon-svg: var(--vuu-svg-chevron-left);
1256
- }
1257
- .vuuChevronIcon.right {
1258
- --vuu-icon-svg: var(--vuu-svg-chevron-right);
1259
- }
1260
-
1261
- /* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
1262
- .vuuEditableLabel {
1263
- --editableLabel-padding: var(--vuuEditableLabel-padding, 6px);
1264
- --editableLabel-height: var(--vuuEditableLabel-height, 26px);
1265
- --saltInput-background: transparent;
1266
- --saltInput-height: calc(var(--editableLabel-height) - 4px);
1267
- --saltInput-minWidth: 14px;
1268
- color: inherit;
1269
- cursor: default;
1270
- display: flex;
1271
- flex-direction: column;
1272
- font-size: var(--salt-text-fontSize);
1273
- height: var(--editableLabel-height);
1274
- justify-content: center;
1275
- max-width: 170px;
1276
- outline: none;
1277
- overflow: hidden;
1278
- padding: 0 var(--editableLabel-padding);
1279
- position: relative;
1280
- text-overflow: ellipsis;
1281
- white-space: nowrap;
1282
- z-index: var(--salt-zIndex-default);
1283
- }
1284
- .vuuEditableLabel:before {
1285
- content: attr(data-text);
1286
- display: block;
1287
- height: 0px;
1288
- visibility: hidden;
1289
- white-space: pre-wrap;
1290
- }
1291
- .vuuEditableLabel .saltInput {
1292
- font-weight: var(--salt-text-fontWeight);
1293
- left: var(--editableLabel-padding, 0);
1294
- padding: 0;
1295
- outline-style: none;
1296
- position: absolute;
1297
- right: var(--editableLabel-padding, 0);
1298
- top: var(--saltEditableLabel-top, 2px);
1299
- width: auto;
1300
- }
1301
- .vuuEditableLabel .saltInput-activationIndicator {
1302
- display: none;
1303
- }
1304
- .vuuEditableLabel-input {
1305
- background-color: transparent;
1306
- border: none;
1307
- box-sizing: content-box;
1308
- color: inherit;
1309
- display: block;
1310
- flex: 1;
1311
- font: inherit;
1312
- height: 20px;
1313
- margin: 0;
1314
- min-width: 0;
1315
- outline: none;
1316
- padding: 0;
1317
- }
1318
- .vuuEditableLabel-label {
1319
- overflow: hidden;
1320
- text-overflow: ellipsis;
1321
- white-space: nowrap;
1322
- }
1323
-
1324
- /* ../vuu-ui-controls/src/expando-input/ExpandoInput.css */
1325
- .vuuExpandoInput {
1326
- --salt-editable-secondary-background: white;
1327
- --expandoInput-height: var(--vuuExpandoInput-height, 26px);
1328
- --expandoInput-padding: var(--vuuExpandoInput-padding, 6px);
1329
- --saltInput-height: calc(var(--vuuExpandoInput-height) - 4px);
1330
- --saltInput-minWidth: var(--vuuExpandoInput-minWidth, 8px);
1331
- border: var(--vuuExpandoInput-border, none);
1332
- border-radius: var(--vuuExpandoInput-borderRadius, 0);
1333
- color: inherit;
1334
- cursor: default;
1335
- display: inline-block;
1336
- font-size: var(--salt-text-fontSize);
1337
- height: var(--expandoInput-height);
1338
- min-width: calc(var(--saltInput-minWidth) + 2 * var(--expandoInput-padding));
1339
- outline: none;
1340
- padding: 0 var(--expandoInput-padding);
1341
- position: relative;
1342
- }
1343
- .vuuExpandoInput:before {
1344
- content: attr(data-text);
1345
- display: block;
1346
- height: 0px;
1347
- visibility: hidden;
1348
- white-space: pre-wrap;
1349
- }
1350
- .vuuExpandoInput .saltInput {
1351
- font-weight: var(--salt-text-fontWeight);
1352
- left: var(--expandoInput-padding, 0);
1353
- padding: 0;
1354
- outline-style: none;
1355
- position: absolute;
1356
- right: var(--expandoInput-padding, 0);
1357
- top: var(--vuuExpandoInput-top, 2px);
1358
- width: auto;
1359
- }
1360
- .vuuExpandoInput .saltInput-activationIndicator {
1361
- display: none;
1362
- }
1363
- .vuuExpandoInput-input {
1364
- background-color: transparent;
1365
- border: none;
1366
- box-sizing: content-box;
1367
- display: block;
1368
- flex: 1;
1369
- font: inherit;
1370
- height: 20px;
1371
- margin: 0;
1372
- min-width: 0;
1373
- outline: none;
1374
- padding: 0;
1375
- }
1376
-
1377
- /* ../vuu-ui-controls/src/inputs/Checkbox.css */
1378
- .vuuCheckbox {
1379
- display: flex;
1380
- height: 24px;
1381
- align-items: center;
1382
- gap: 6px;
1383
- color: var(--light-text-primary, #15171B);
1384
- font-feature-settings:
1385
- "ss02" on,
1386
- "ss01" on,
1387
- "salt" on,
1388
- "liga" off;
1389
- font-size: 12px;
1390
- font-weight: 400;
1391
- cursor: pointer;
1392
- }
1393
-
1394
- /* ../vuu-ui-controls/src/inputs/RadioButton.css */
1395
- .vuuRadioButton {
1396
- display: flex;
1397
- height: 24px;
1398
- align-items: center;
1399
- gap: 6px;
1400
- color: var(--light-text-primary, #15171B);
1401
- font-feature-settings:
1402
- "ss02" on,
1403
- "ss01" on,
1404
- "salt" on,
1405
- "liga" off;
1406
- font-size: 12px;
1407
- font-weight: 400;
1408
- cursor: pointer;
1409
- }
1410
- .radio {
1411
- position: relative;
1412
- height: 12px;
1413
- }
1414
- input[type=radio] {
1415
- position: absolute;
1416
- appearance: none;
1417
- width: 100%;
1418
- height: 100%;
1419
- border-radius: 50%;
1420
- margin: 0;
1421
- top: 0;
1422
- }
1423
-
1424
- /* ../vuu-ui-controls/src/instrument-search/SearchCell.css */
1425
- .vuuSearchCell {
1426
- --vuu-icon-left: 0;
1427
- --vuu-icon-size: 16px;
1428
- --vuu-icon-top: 0px;
1429
- align-items: center;
1430
- color: var(--background-cell-color);
1431
- display: flex;
1432
- gap: 4px;
1433
- padding: 0 8px 0 8px;
1434
- position: relative;
1435
- z-index: -1;
1436
- }
1437
-
1438
- /* ../vuu-ui-controls/src/instrument-search/InstrumentSearch.css */
1439
- .vuuInstrumentSearch {
1440
- height: 100%;
1441
- padding: var(--vuuInstrumentSearch-padding, 12px);
1442
- display: flex;
1443
- flex-direction: column;
1444
- }
1445
- .vuuInstrumentSearch-inputField {
1446
- --vuu-icon-size: 16px;
1447
- flex: 0 0 40px;
1448
- }
1449
- .vuuInstrumentSearch-list {
1450
- background-color: var(--salt-container-primary-background);
1451
- flex: 1 1 auto;
1452
- }
1453
- .vuuInstrumentSearch .vuuTableNextCell {
1454
- padding: 0;
1455
- }
1456
-
1457
- /* ../vuu-ui-controls/src/price-ticker/PriceTicker.css */
1458
- @property --price-ticker-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
1459
- .vuuPriceTicker {
1460
- align-items: center;
1461
- display: flex;
1462
- font-size: var(--vuuPriceTicker-fontSize, var(--salt-text-fontSize));
1463
- font-weight: var(--vuuPriceTicker-fontWeight, 700);
1464
- transition-property: color;
1465
- transition-duration: .3s;
1466
- }
1467
- .vuuPriceTicker.up1 {
1468
- --vuu-icon-color: var(--vuu-color-green-50);
1469
- color: var(--vuu-color-green-50);
1470
- animation-duration: 30s;
1471
- }
1472
- .vuuPriceTicker.up2 {
1473
- --vuu-icon-color: var(--vuu-color-green-50);
1474
- color: var(--vuu-color-green-50);
1475
- animation-duration: 30s;
1476
- }
1477
- .vuuPriceTicker.down1 {
1478
- --vuu-icon-transform: rotate(180deg);
1479
- --vuu-icon-color: var(--vuu-color-red-50);
1480
- color: var(--vuu-color-red-50);
1481
- animation-duration: 30s;
1482
- }
1483
- .vuuPriceTicker.down2 {
1484
- --vuu-icon-transform: rotate(180deg);
1485
- --vuu-icon-color: var(--vuu-color-red-50);
1486
- color: var(--vuu-color-red-50);
1487
- animation-duration: 30s;
1488
- }
1489
-
1490
- /* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
1491
- .vuuTabstrip {
1492
- --vuuOverflowContainer-background: transparent;
1493
- --tabstrip-dragging-display: none;
1494
- --tabstrip-display: inline-flex;
1495
- --tabstrip-background: transparent;
1496
- align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
1497
- display: flex;
1498
- font-size: var(--salt-text-fontSize);
1499
- font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
1500
- min-width: 28px;
1501
- position: relative;
1502
- overflow: visible;
1503
- width: var(--tabstrip-width);
1504
- }
1505
- .vuuTabstrip-horizontal {
1506
- --tabstrip-height: var(--vuuTabstrip-height, 28px);
1507
- --tabstrip-width: var(--vuuTabstrip-width, 100%);
1508
- --tab-height: var(--tabstrip-height);
1509
- --tab-width: auto;
1510
- --tab-thumb-height: 2px;
1511
- --tab-thumb-left: var(--tab-thumb-offset, 0);
1512
- --tab-thumb-top: auto;
1513
- --tab-thumb-width: var(--tab-thumb-size, 100%);
1514
- align-items: flex-start;
1515
- border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
1516
- }
1517
- .vuuTabstrip-vertical {
1518
- --tabstrip-height: var(--vuuTabstrip-height, 100%);
1519
- --tabstrip-width: var(--vuuTabstrip-width, 100px);
1520
- --tab-height: 50px;
1521
- --tab-width: 100%;
1522
- --tab-thumb-height: 0;
1523
- --tab-thumb-left: 0;
1524
- --tab-thumb-top: var(--tab-thumb-offset, 0);
1525
- --tab-thumb-width: 2px;
1526
- align-self: flex-start;
1527
- display: inline-flex;
1528
- }
1529
- .vuuTabstrip-draggingTab .vuuTab {
1530
- pointer-events: none;
1531
- }
1532
- .vuuTabstrip-addTabButton {
1533
- --saltButton-height: 20px;
1534
- --saltButton-width: 20px;
1535
- }
1536
- .vuuTabstrip-overflowMenu.vuuDropdown {
1537
- --saltIcon-margin: 2px 0 0 0px;
1538
- }
1539
- .vuuTabstrip-overflowMenu-open {
1540
- --saltButton-background: var(--salt-actionable-secondary-background-active);
1541
- --saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
1542
- }
1543
- .vuuTabstrip-overflowMenu-open .saltButton {
1544
- --saltIcon-color: var(--salt-actionable-secondary-foreground-active);
1545
- }
1546
- .vuuTabstrip-inner {
1547
- width: 100%;
1548
- align-items: center;
1549
- display: flex;
1550
- flex-basis: auto;
1551
- flex-grow: 0;
1552
- flex-shrink: 1;
1553
- flex-wrap: wrap;
1554
- justify-content: flex-start;
1555
- line-height: var(--tabstrip-height);
1556
- }
1557
- .vuuTabstrip-vertical .vuuTabstrip-inner {
1558
- flex-direction: column;
1559
- height: auto;
1560
- }
1561
- .vuuTabstrip-centered .vuuTabstrip-inner {
1562
- justify-content: center;
1563
- }
1564
- .vuuDraggable[class*=vuuTabstrip] {
1565
- --tabstrip-display: flex;
1566
- --tabstrip-height: 100%;
1567
- --tabstrip-dragging-display: block;
1568
- --tabs-tab-background: var(--salt-navigable-primary-background-hover);
1569
- --tabs-tab-before-content: "";
1570
- --tabs-tab-before-background: var(--salt-navigable-indicator-hover);
1571
- --tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
1572
- --tabs-tab-before-inset: var(--tab-activationIndicator-inset);
1573
- --tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
1574
- --tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
1575
- --tabs-tab-position: static;
1576
- font-size: 12px;
1577
- }
1578
- .vuuDraggable-tabstrip-horizontal {
1579
- --tab-thumb-height: 2px;
1580
- --tab-thumb-left: 0px;
1581
- --tabstrip-height: 28px;
1582
- line-height: var(--tabstrip-height);
1583
- }
1584
- .vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
1585
- --tabs-tab-before-background: var(--salt-navigable-indicator-active);
1586
- }
1587
- .vuuTabstrip-overflowMenu-dropTarget:after {
1588
- background: var(--salt-selectable-background-selected);
1589
- content: "";
1590
- position: absolute;
1591
- height: 2px;
1592
- left: 0;
1593
- right: 0;
1594
- bottom: 0;
1595
- }
1596
-
1597
- /* ../vuu-ui-controls/src/tabstrip/TabMenu.css */
1598
- .vuuTabMenu {
1599
- top: -2px;
1600
- }
1601
-
1602
- /* ../vuu-ui-controls/src/tabstrip/Tab.css */
1603
- .vuuTab {
1604
- --saltEditableLabel-padding: 0;
1605
- --saltEditableLabel-height: calc(var(--tabstrip-height) - 2px);
1606
- --saltInputLegacy-minWidth: 4em;
1607
- --saltEditableLabel-top: 2px;
1608
- --tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
1609
- --tab-cursor: pointer;
1610
- --tab-position: relative;
1611
- }
1612
- .vuuTab {
1613
- align-items: center;
1614
- align-self: stretch;
1615
- background: var(--tab-background);
1616
- border: none;
1617
- border-radius: var(--vuuTab-borderRadius, 0);
1618
- color: var(--salt-text-primary-foreground);
1619
- cursor: var(--vuuTab-cursor, var(--tab-cursor));
1620
- display: var(--tabstrip-display);
1621
- gap: 8px;
1622
- height: var(--vuuTabHeight, var(--tab-height));
1623
- letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
1624
- min-width: var(--vuuTab-minWidth, 40px);
1625
- outline: none;
1626
- padding: var(--vuuTab-padding, 0 24px);
1627
- position: var(--vuuTab-position, var(--tab-position));
1628
- user-select: none;
1629
- width: var(--tab-width);
1630
- }
1631
- .vuuTab {
1632
- margin: 0 var(--tab-spacing) 0 0;
1633
- }
1634
- .vuuTab-selected {
1635
- background: var(--vuuTab-background-selected, var(--tab-background));
1636
- color: var(--salt-text-primary-foreground);
1637
- font-weight: var(--salt-navigable-fontWeight-active);
1638
- }
1639
- .vuuTab-main {
1640
- align-items: center;
1641
- border: none;
1642
- color: inherit;
1643
- cursor: inherit;
1644
- display: flex;
1645
- font-family: inherit;
1646
- font-size: inherit;
1647
- font-weight: inherit;
1648
- height: calc(var(--tab-height) - var(--tab-thumb-height));
1649
- margin-bottom: var(--tab-thumb-height);
1650
- outline: none;
1651
- position: relative;
1652
- }
1653
- .vuuTab-closeable .vuuTab-main {
1654
- border-right: solid transparent var(--salt-size-unit);
1655
- }
1656
- .vuuTab .vuuTab-closeButton {
1657
- display: flex;
1658
- align-items: center;
1659
- justify-content: center;
1660
- }
1661
- .vuuTab-close-icon {
1662
- display: none;
1663
- }
1664
- .salt-density-touch .vuuTab-close-icon,
1665
- .salt-density-low .vuuTab-close-icon {
1666
- display: block;
1667
- }
1668
- .salt-density-touch .vuuTab-close-icon-small,
1669
- .salt-density-low .vuuTab-close-icon-small {
1670
- display: none;
1671
- }
1672
- .vuuTab .vuuTab-text {
1673
- display: inline-block;
1674
- position: relative;
1675
- overflow: hidden;
1676
- text-align: var(--salt-text-textAlign-embedded);
1677
- text-overflow: ellipsis;
1678
- top: var(--vuuTab-top, var(--tab-top, auto));
1679
- white-space: nowrap;
1680
- z-index: var(--salt-zIndex-default);
1681
- }
1682
- .vuuTab .vuuTab-text:before {
1683
- height: 0;
1684
- content: attr(data-text);
1685
- display: block;
1686
- visibility: hidden;
1687
- font-weight: var(--salt-navigable-fontWeight-active);
1688
- }
1689
- .vuuTab-editing:after {
1690
- content: "";
1691
- position: absolute;
1692
- top: 0;
1693
- left: 0;
1694
- right: 0;
1695
- bottom: 2px;
1696
- outline-color: var(--salt-focused-outlineColor);
1697
- outline-style: var(--salt-focused-outlineStyle);
1698
- outline-width: var(--salt-focused-outlineWidth);
1699
- outline-offset: -2px;
1700
- }
1701
- .vuuTab.vuuFocusVisible {
1702
- background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
1703
- outline-color: var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));
1704
- outline-style: dashed;
1705
- outline-width: 1px;
1706
- outline-offset: -1px;
1707
- }
1708
- .vuuTab:before {
1709
- content: var(--tab-before-content, none);
1710
- content: "";
1711
- background: var(--tab-before-background);
1712
- height: var(--tab-before-height);
1713
- inset: var(--tab-before-inset);
1714
- position: absolute;
1715
- width: var(--tab-before-width);
1716
- z-index: 1;
1717
- }
1718
- .vuuTabstrip-draggingTab .vuuTab-selected:before {
1719
- --tab-before-content: "";
1720
- --tab-before-background: var(--salt-navigable-indicator-color-active);
1721
- --tab-before-height: var(--tab-thumb-height);
1722
- --tab-before-inset: var(--tab-activationIndicator-inset);
1723
- --tab-before-width: var(--tab-activationIndicator-thumb-width);
1724
- }
1725
- .vuuTab-selected:before {
1726
- --tab-before-content: "";
1727
- background: var(--salt-navigable-indicator-active);
1728
- height: var(--tab-thumb-height);
1729
- position: absolute;
1730
- left: var(--tab-thumb-left);
1731
- bottom: 0px;
1732
- top: var(--tab-thumb-top, auto);
1733
- transition: var(--tab-thumb-transition, none);
1734
- width: var(--tab-thumb-width, 100%);
1735
- }
1736
- .vuuTab:hover:not(.vuuTab-closeHover) {
1737
- background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
1738
- }
1739
-
1740
- /* ../vuu-ui-controls/src/tree/Tree.css */
1741
- .vuuTree {
1742
- --tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));
1743
- --tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));
1744
- --tree-toggle-width: 12px;
1745
- --tree-icon-color: var(--vuuTree-icon-color, #4c505b);
1746
- --tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);
1747
- --tree-node-indent: 0px;
1748
- --list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, 0.1));
1749
- --list-item-height: var(--hw-list-item-height, 30px);
1750
- --list-item-padding: var(--hw-list-item-padding, 0 6px);
1751
- --list-item-header-bg: var(--hw-list-item-header-bg, black);
1752
- --list-item-header-color: var(--hw-list-item-header-color, white);
1753
- --list-item-header-font-weight: bold;
1754
- --list-item-header-twisty-color: black;
1755
- --list-item-header-twisty-content: "";
1756
- --list-item-header-twisty-top: 50%;
1757
- --list-item-header-twisty-left: -18px;
1758
- --list-item-header-twisty-right: auto;
1759
- --list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);
1760
- --list-item-selected-color: white;
1761
- --list-item-text-color: var(--hw-gray-800);
1762
- --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
1763
- list-style: none;
1764
- margin: 0;
1765
- padding: 0 1px;
1766
- font-size: var(--vuuTree-font-size, 14px);
1767
- max-height: inherit;
1768
- outline: none;
1769
- overflow-y: auto;
1770
- position: relative;
1771
- user-select: none;
1772
- }
1773
- .vuuTree-viewport {
1774
- --list-item-height: 30px;
1775
- box-sizing: border-box;
1776
- max-height: inherit;
1777
- overflow: auto;
1778
- }
1779
- .vuuTree-scrollingContentContainer {
1780
- box-sizing: inherit;
1781
- position: relative;
1782
- }
1783
- .vuuTree-scrollingContentContainer .vuuTreeNode {
1784
- line-height: 30px;
1785
- position: absolute;
1786
- top: 0;
1787
- left: 0;
1788
- right: 0;
1789
- will-change: transform;
1790
- }
1791
- .vuuTreeNode {
1792
- list-style: none;
1793
- }
1794
- .vuuTreeNode:not([aria-expanded]),
1795
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
1796
- --checkbox-border-color: black;
1797
- --checkbox-border-width: 1px;
1798
- --checkbox-tick: black;
1799
- --list-item-padding-left: 6px;
1800
- --svg-toggle: var(--tree-node-collapse);
1801
- align-items: center;
1802
- color: var(--list-item-text-color);
1803
- display: flex;
1804
- flex-wrap: nowrap;
1805
- height: var(--list-item-height);
1806
- line-height: var(--list-item-height);
1807
- padding: var(--list-item-padding);
1808
- padding-left: var(--padding-left);
1809
- position: relative;
1810
- cursor: default;
1811
- margin: 0;
1812
- white-space: nowrap;
1813
- }
1814
- .vuuTreeNode:not([aria-expanded]) {
1815
- --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
1816
- }
1817
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
1818
- --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
1819
- }
1820
- .vuuTreeNode-icon {
1821
- background-color: var(--tree-icon-color);
1822
- display: inline-block;
1823
- height: 18px;
1824
- margin-right: 6px;
1825
- -webkit-mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
1826
- mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
1827
- flex: 0 0 18px;
1828
- }
1829
- .vuuTreeNode[aria-expanded] {
1830
- flex-direction: column;
1831
- }
1832
- .vuuTreeNode[aria-expanded] {
1833
- flex-direction: column;
1834
- height: auto;
1835
- }
1836
- .vuuTreeNode > *[role=group] {
1837
- padding-left: 0px;
1838
- }
1839
- .vuuTreeNode {
1840
- padding-left: calc(var(--padding-left) + var(--tree-node-indent));
1841
- }
1842
- .vuuTreeNode[aria-level="2"] {
1843
- --tree-node-indent: 12px;
1844
- }
1845
- .vuuTreeNode[aria-level="3"] {
1846
- --tree-node-indent: 24px;
1847
- }
1848
- .vuuTreeNode[aria-level="4"] {
1849
- --tree-node-indent: 36px;
1850
- }
1851
- .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],
1852
- .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted] > div:first-child {
1853
- background-color: var(--list-hilited-bg);
1854
- }
1855
- .vuuTreeNode-toggle {
1856
- cursor: pointer;
1857
- }
1858
- .vuuTreeNode > .vuuTreeNode-toggle {
1859
- display: inline-block;
1860
- height: 100%;
1861
- left: 0;
1862
- position: absolute;
1863
- width: calc(var(--list-item-padding-left) + var(--tree-toggle-width));
1864
- }
1865
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label:after {
1866
- content: var(--list-item-header-twisty-content);
1867
- -webkit-mask: var(--svg-toggle) center center/8px 8px no-repeat;
1868
- mask: var(--svg-toggle) center center/8px 8px no-repeat;
1869
- background-color: var(--list-item-header-twisty-color);
1870
- height: 18px;
1871
- margin-top: -9px;
1872
- left: var(--tree-node-indent);
1873
- position: absolute;
1874
- top: var(--list-item-header-twisty-top);
1875
- transition: transform 0.3s;
1876
- width: 18px;
1877
- }
1878
- .vuuTreeNode[aria-selected=true] {
1879
- --list-item-header-twisty-color: var(--list-item-selected-color);
1880
- }
1881
- .vuuTreeNode:not(.focusVisible):focus {
1882
- background-color: rgba(0, 0, 0, 0.1);
1883
- }
1884
- .vuuTreeNode:not([aria-expanded]).focusVisible:before,
1885
- .vuuTreeNode[aria-expanded].focusVisible > div:first-child:before {
1886
- content: "";
1887
- position: absolute;
1888
- top: 0px;
1889
- left: var(--tree-focus-offset, 0px);
1890
- right: 0;
1891
- bottom: 0px;
1892
- border: dotted var(--focus-visible-border-color) 2px;
1893
- background-color: var(--list-hilited-bg);
1894
- }
1895
- .vuuTreeNode[aria-expanded=false] > *:first-child:after {
1896
- --svg-toggle: var(--tree-node-expand);
1897
- }
1898
- .vuuTreeNode[aria-expanded=true] > *:first-child:after {
1899
- transform: var(--tree-node-expanded-transform);
1900
- }
1901
- .vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],
1902
- .vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true] > div:first-child {
1903
- --checkbox-border-color: var(--list-item-selected-color);
1904
- --checkbox-tick: var(--list-item-selected-color);
1905
- --focus-visible-border-color: var(--list-item-selected-color);
1906
- background-color: var(--list-item-selected-bg);
1907
- color: var(--list-item-selected-color);
1908
- }
1909
- .with-checkbox .vuuTreeNode {
1910
- padding-left: 28px;
1911
- }
1912
- .with-checkbox .vuuTreeNode:before {
1913
- border-style: solid;
1914
- border-width: var(--checkbox-border-width);
1915
- border-color: var(--checkbox-border-color);
1916
- content: "";
1917
- height: 12px;
1918
- left: 3px;
1919
- margin-top: -7px;
1920
- position: absolute;
1921
- top: 50%;
1922
- width: 12px;
1923
- }
1924
-
1925
23
  /* src/table/TableCell.css */
1926
24
  .vuuTable {
1927
25
  --cell-outline-width: 2px;
@@ -2787,701 +885,6 @@ input[type=radio] {
2787
885
  --toggle-icon-transform: rotate(90deg);
2788
886
  }
2789
887
 
2790
- /* ../vuu-table-extras/src/cell-renderers/background-cell/BackgroundCell.css */
2791
- .vuuTable td:has(> .vuuBackgroundCellDeprecated) {
2792
- padding: 0;
2793
- text-align: right;
2794
- }
2795
- .vuuBackgroundCellDeprecated {
2796
- padding-right: var(--salt-size-unit);
2797
- position: relative;
2798
- z-index: -1;
2799
- }
2800
- .vuuBackgroundCellDeprecated-flasher {
2801
- color: transparent;
2802
- position: absolute;
2803
- left: 0;
2804
- right: 0;
2805
- top: 0;
2806
- bottom: 0;
2807
- z-index: -1;
2808
- }
2809
- .vuuBackgroundCellDeprecated-flasher {
2810
- text-align: left;
2811
- }
2812
- .vuuBackgroundCellDeprecated-flasher + .num {
2813
- padding-left: 8px;
2814
- }
2815
- .right .vuuBackgroundCellDeprecated-flasher {
2816
- text-align: right;
2817
- }
2818
- .right .vuuBackgroundCellDeprecated-flasher + .num {
2819
- padding-right: 8px;
2820
- }
2821
- .up1 > .vuuBackgroundCellDeprecated-flasher {
2822
- animation-duration: 30s;
2823
- animation-name: reactbgup1;
2824
- }
2825
- .up2 > .vuuBackgroundCellDeprecated-flasher {
2826
- animation-duration: 30s;
2827
- animation-name: reactbgup2;
2828
- }
2829
- .down1 > .vuuBackgroundCellDeprecated-flasher {
2830
- animation-duration: 30s;
2831
- animation-name: reactbgdown1;
2832
- }
2833
- .down2 > .vuuBackgroundCellDeprecated-flasher {
2834
- animation-duration: 30s;
2835
- animation-name: reactbgdown2;
2836
- }
2837
- .up1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2838
- animation-duration: 30s;
2839
- animation-name: reactarrowup1;
2840
- }
2841
- .up2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2842
- animation-duration: 30s;
2843
- animation-name: reactarrowup2;
2844
- }
2845
- .down1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2846
- animation-duration: 30s;
2847
- animation-name: reactarrowdown1;
2848
- }
2849
- .down2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2850
- animation-duration: 30s;
2851
- animation-name: reactarrowdown2;
2852
- }
2853
- .up1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2854
- animation-duration: 30s;
2855
- animation-name: reactbgarrowup1;
2856
- }
2857
- .up2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2858
- animation-duration: 30s;
2859
- animation-name: reactbgarrowup2;
2860
- }
2861
- .down1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2862
- animation-duration: 30s;
2863
- animation-name: reactbgarrowdown1;
2864
- }
2865
- .down2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2866
- animation-duration: 30s;
2867
- animation-name: reactbgarrowdown2;
2868
- }
2869
-
2870
- /* ../vuu-table-extras/src/cell-renderers/background-cell/FlashingBackground.css */
2871
- @keyframes reactbgup1 {
2872
- from {
2873
- background-color: green;
2874
- }
2875
- to {
2876
- background-color: transparent;
2877
- }
2878
- }
2879
- @keyframes reactbgup2 {
2880
- from {
2881
- background-color: green;
2882
- }
2883
- to {
2884
- background-color: transparent;
2885
- }
2886
- }
2887
- @keyframes reactbgdown1 {
2888
- from {
2889
- background-color: red;
2890
- }
2891
- to {
2892
- background-color: transparent;
2893
- }
2894
- }
2895
- @keyframes reactbgdown2 {
2896
- from {
2897
- background-color: red;
2898
- }
2899
- to {
2900
- background-color: transparent;
2901
- }
2902
- }
2903
- @keyframes reactarrowup1 {
2904
- from {
2905
- color: white;
2906
- }
2907
- to {
2908
- color: transparent;
2909
- }
2910
- }
2911
- @keyframes reactarrowup2 {
2912
- from {
2913
- color: white;
2914
- }
2915
- to {
2916
- color: transparent;
2917
- }
2918
- }
2919
- @keyframes reactarrowdown1 {
2920
- from {
2921
- color: white;
2922
- }
2923
- to {
2924
- color: transparent;
2925
- }
2926
- }
2927
- @keyframes reactarrowdown2 {
2928
- from {
2929
- color: white;
2930
- }
2931
- to {
2932
- color: transparent;
2933
- }
2934
- }
2935
- @keyframes reactbgarrowup1 {
2936
- 0% {
2937
- color: green;
2938
- background-color: green;
2939
- }
2940
- 20% {
2941
- color: green;
2942
- background-color: transparent;
2943
- }
2944
- 100% {
2945
- color: transparent;
2946
- background-color: transparent;
2947
- }
2948
- }
2949
- @keyframes reactbgarrowup2 {
2950
- 0% {
2951
- color: green;
2952
- background-color: green;
2953
- }
2954
- 20% {
2955
- color: green;
2956
- background-color: transparent;
2957
- }
2958
- 100% {
2959
- color: transparent;
2960
- background-color: transparent;
2961
- }
2962
- }
2963
- @keyframes reactbgarrowdown1 {
2964
- 0% {
2965
- color: red;
2966
- background-color: red;
2967
- }
2968
- 20% {
2969
- color: red;
2970
- background-color: transparent;
2971
- }
2972
- 100% {
2973
- color: transparent;
2974
- background-color: transparent;
2975
- }
2976
- }
2977
- @keyframes reactbgarrowdown2 {
2978
- 0% {
2979
- color: red;
2980
- background-color: red;
2981
- }
2982
- 20% {
2983
- color: red;
2984
- background-color: transparent;
2985
- }
2986
- 100% {
2987
- color: transparent;
2988
- background-color: transparent;
2989
- }
2990
- }
2991
-
2992
- /* ../vuu-table-extras/src/cell-renderers/progress-cell/ProgressCell.css */
2993
- .vuuProgressCell {
2994
- align-items: center;
2995
- display: flex;
2996
- }
2997
- .vuuProgressCell-track {
2998
- display: inline-block;
2999
- flex: auto 1 1;
3000
- height: 4px;
3001
- overflow: hidden;
3002
- position: relative;
3003
- }
3004
- .vuuProgressCell-bg {
3005
- background-color: var(--salt-measured-background);
3006
- display: inline-block;
3007
- height: 2px;
3008
- left: 0;
3009
- position: absolute;
3010
- top: 1px;
3011
- width: 100%;
3012
- }
3013
- .vuuProgressCell-bar {
3014
- background-color: var(--salt-measured-fill);
3015
- display: inline-block;
3016
- height: 100%;
3017
- left: 0;
3018
- position: absolute;
3019
- top: 0;
3020
- transform: translateX(var(--progress-bar-pct, -100%));
3021
- width: 100%;
3022
- }
3023
- .vuuProgressCell-text {
3024
- flex: 35px 0 0;
3025
- text-align: right;
3026
- }
3027
-
3028
- /* ../vuu-table-extras/src/cell-renderers-next/background-cell/BackgroundCell.css */
3029
- .vuuTableNext td:has(> .vuuBackgroundCell) {
3030
- padding: 0;
3031
- text-align: right;
3032
- }
3033
- .vuuBackgroundCell {
3034
- color: var(--background-cell-color);
3035
- padding-right: var(--salt-size-unit);
3036
- position: relative;
3037
- z-index: -1;
3038
- }
3039
- .vuuBackgroundCell-flasher {
3040
- background-color: var(--background-cell-background);
3041
- position: absolute;
3042
- left: 0;
3043
- right: 0;
3044
- top: 0;
3045
- bottom: 0;
3046
- z-index: -1;
3047
- }
3048
- .vuuBackgroundCell-flasher {
3049
- text-align: left;
3050
- }
3051
- .vuuBackgroundCell-flasher + .num {
3052
- padding-left: 8px;
3053
- }
3054
- .right .vuuBackgroundCell-flasher {
3055
- text-align: right;
3056
- }
3057
- .right .vuuBackgroundCell-flasher + .num {
3058
- padding-right: 8px;
3059
- }
3060
- .vuuBackgroundCell.up1 {
3061
- animation-duration: 30s;
3062
- animation-name: reactbgup1;
3063
- }
3064
- .vuuBackgroundCell.up2 {
3065
- animation-duration: 30s;
3066
- animation-name: reactbgup2;
3067
- }
3068
- .vuuBackgroundCell.down1 {
3069
- animation-duration: 30s;
3070
- animation-name: reactbgdown1;
3071
- }
3072
- .vuuBackgroundCell.down2 {
3073
- animation-duration: 30s;
3074
- animation-name: reactbgdown2;
3075
- }
3076
- .up1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
3077
- animation-duration: 30s;
3078
- animation-name: reactarrowup1;
3079
- }
3080
- .up2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
3081
- animation-duration: 30s;
3082
- animation-name: reactarrowup2;
3083
- }
3084
- .down1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
3085
- animation-duration: 30s;
3086
- animation-name: reactarrowdown1;
3087
- }
3088
- .down2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
3089
- animation-duration: 30s;
3090
- animation-name: reactarrowdown2;
3091
- }
3092
- .up1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
3093
- animation-duration: 30s;
3094
- animation-name: reactbgarrowup1;
3095
- }
3096
- .up2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
3097
- animation-duration: 30s;
3098
- animation-name: reactbgarrowup2;
3099
- }
3100
- .down1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
3101
- animation-duration: 30s;
3102
- animation-name: reactbgarrowdown1;
3103
- }
3104
- .down2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
3105
- animation-duration: 30s;
3106
- animation-name: reactbgarrowdown2;
3107
- }
3108
-
3109
- /* ../vuu-table-extras/src/cell-renderers-next/background-cell/FlashingBackground.css */
3110
- @property --background-cell-background { syntax: "<color>"; initial-value: transparent; inherits: false; }
3111
- @property --background-cell-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
3112
- @keyframes reactbgup1 {
3113
- from {
3114
- --background-cell-background: var(--vuu-color-green-50);
3115
- --background-cell-color: white;
3116
- }
3117
- to {
3118
- --background-cell-background: transparent;
3119
- --background-cell-color: var(--vuu-color-gray-80);
3120
- }
3121
- }
3122
- @keyframes reactbgup2 {
3123
- from {
3124
- --background-cell-background: var(--vuu-color-green-50);
3125
- --background-cell-color: #ffffff;
3126
- }
3127
- to {
3128
- --background-cell-background: transparent;
3129
- --background-cell-color: var(--vuu-color-gray-80);
3130
- }
3131
- }
3132
- @keyframes reactbgdown1 {
3133
- from {
3134
- --background-cell-background: var(--vuu-color-red-50);
3135
- --background-cell-color: white;
3136
- }
3137
- to {
3138
- --background-cell-background: transparent;
3139
- --background-cell-color: var(--vuu-color-gray-80);
3140
- }
3141
- }
3142
- @keyframes reactbgdown2 {
3143
- from {
3144
- --background-cell-background: var(--vuu-color-red-50);
3145
- --background-cell-color: white;
3146
- }
3147
- to {
3148
- --background-cell-background: transparent;
3149
- --background-cell-color: var(--vuu-color-gray-80);
3150
- }
3151
- }
3152
- @keyframes reactarrowup1 {
3153
- from {
3154
- color: var(--salt-differential-positive-foreground);
3155
- }
3156
- to {
3157
- color: transparent;
3158
- }
3159
- }
3160
- @keyframes reactarrowup2 {
3161
- from {
3162
- color: var(--salt-differential-positive-foreground);
3163
- }
3164
- to {
3165
- color: transparent;
3166
- }
3167
- }
3168
- @keyframes reactarrowdown1 {
3169
- from {
3170
- color: var(--salt-differential-negative-foreground);
3171
- }
3172
- to {
3173
- color: transparent;
3174
- }
3175
- }
3176
- @keyframes reactarrowdown2 {
3177
- from {
3178
- color: var(--salt-differential-negative-foreground);
3179
- }
3180
- to {
3181
- color: transparent;
3182
- }
3183
- }
3184
- @keyframes reactbgarrowup1 {
3185
- 0% {
3186
- color: var(--salt-differential-positive-foreground);
3187
- background-color: var(--vuu-color-green-50);
3188
- }
3189
- 20% {
3190
- color: var(--salt-differential-positive-foreground);
3191
- background-color: transparent;
3192
- }
3193
- 100% {
3194
- color: transparent;
3195
- background-color: transparent;
3196
- }
3197
- }
3198
- @keyframes reactbgarrowup2 {
3199
- 0% {
3200
- color: var(--salt-differential-positive-foreground);
3201
- background-color: var(--vuu-color-green-50);
3202
- }
3203
- 20% {
3204
- color: var(--salt-differential-positive-foreground);
3205
- background-color: transparent;
3206
- }
3207
- 100% {
3208
- color: transparent;
3209
- background-color: transparent;
3210
- }
3211
- }
3212
- @keyframes reactbgarrowdown1 {
3213
- 0% {
3214
- color: var(--salt-differential-negative-foreground);
3215
- background-color: var(--vuu-color-red-50);
3216
- }
3217
- 20% {
3218
- color: var(--salt-differential-negative-foreground);
3219
- background-color: transparent;
3220
- }
3221
- 100% {
3222
- color: transparent;
3223
- background-color: transparent;
3224
- }
3225
- }
3226
- @keyframes reactbgarrowdown2 {
3227
- 0% {
3228
- color: var(--salt-differential-negative-foreground);
3229
- background-color: var(--vuu-color-red-50);
3230
- }
3231
- 20% {
3232
- color: var(--salt-differential-negative-foreground);
3233
- background-color: transparent;
3234
- }
3235
- 100% {
3236
- color: transparent;
3237
- background-color: transparent;
3238
- }
3239
- }
3240
-
3241
- /* ../vuu-table-extras/src/column-list/ColumnList.css */
3242
- .vuuColumnList {
3243
- --vuu-svg-function: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M5.8625 10.5V9.625H6.72291L8.4875 7.59792L6.72291 5.54167H5.64375L4.60833 10.8792C4.53055 11.3167 4.36527 11.6545 4.1125 11.8927C3.85972 12.1309 3.53402 12.25 3.13541 12.25C2.7368 12.25 2.40382 12.1333 2.13645 11.9C1.86909 11.6667 1.73541 11.375 1.73541 11.025C1.73541 10.7625 1.80833 10.551 1.95416 10.3906C2.1 10.2302 2.28958 10.15 2.52291 10.15C2.72708 10.15 2.89479 10.2083 3.02604 10.325C3.15729 10.4417 3.22291 10.5972 3.22291 10.7917C3.22291 10.8986 3.20104 10.9983 3.15729 11.0906C3.11354 11.183 3.05277 11.2583 2.975 11.3167C3.01388 11.3361 3.0552 11.3507 3.09895 11.3604C3.1427 11.3701 3.18888 11.375 3.2375 11.375C3.36388 11.375 3.47083 11.3142 3.55833 11.1927C3.64583 11.0712 3.70902 10.9132 3.74791 10.7188L4.75416 5.54167H2.91666V4.66667H4.91458L5.22083 3.12083C5.30833 2.68333 5.48333 2.34549 5.74583 2.10729C6.00833 1.8691 6.33402 1.75 6.72291 1.75C7.12152 1.75 7.44965 1.86667 7.70729 2.1C7.96493 2.33333 8.09375 2.625 8.09375 2.975C8.09375 3.2375 8.02083 3.44896 7.875 3.60938C7.72916 3.76979 7.53958 3.85 7.30625 3.85C7.1118 3.85 6.94652 3.7941 6.81041 3.68229C6.6743 3.57049 6.60625 3.42222 6.60625 3.2375C6.60625 3.14028 6.62569 3.04549 6.66458 2.95312C6.70347 2.86076 6.75208 2.78542 6.81041 2.72708C6.79097 2.70764 6.7618 2.69063 6.72291 2.67604C6.68402 2.66146 6.64513 2.65417 6.60625 2.65417C6.47986 2.65417 6.37048 2.7125 6.27812 2.82917C6.18576 2.94583 6.12013 3.09653 6.08125 3.28125L5.81875 4.66667H8.575V5.54167H7.88958L9.1 6.94167L10.2375 5.54167H9.5375V4.66667H12.25V5.54167H11.4042L9.65416 7.59792L11.4042 9.625H12.25V10.5H9.5375V9.625H10.2375L9.07083 8.26875L7.875 9.625H8.575V10.5H5.8625Z"/></svg>');
3244
- --vuuList-borderStyle: none;
3245
- --vuuListItem-padding: 0;
3246
- display: flex;
3247
- flex-direction: column;
3248
- width: 252px;
3249
- }
3250
- [data-icon=function] {
3251
- --vuu-icon-svg: var(--vuu-svg-function);
3252
- }
3253
- .vuuColumnListItem {
3254
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
3255
- padding: 0 6px 0 0;
3256
- }
3257
- .vuuColumnList-switch {
3258
- flex: 0 0 32px;
3259
- }
3260
- .vuuColumnList-text {
3261
- flex: 1 1 auto;
3262
- }
3263
- .vuuColumnList-checkBox {
3264
- flex: 0 0 20px;
3265
- }
3266
- .vuuColumnList-icon {
3267
- --vuu-icon-color: var(--vuu-color-gray-45);
3268
- --vuu-icon-size: 16px;
3269
- --vuu-icon-width: 32px;
3270
- }
3271
- .vuuColumnList-header {
3272
- border-top: solid 2px var(--vuu-color-gray-30);
3273
- flex: 0 0 40px;
3274
- font-size: 14px;
3275
- font-weight: 600;
3276
- padding-top: 24px;
3277
- }
3278
- .vuuColumnList-colHeadings {
3279
- border-bottom: solid 2px var(--vuu-color-gray-30);
3280
- color: var(--vuu-color-gray-50);
3281
- display: flex;
3282
- flex: 0 0 24px;
3283
- font-size: 10px;
3284
- justify-content: space-between;
3285
- margin-top: 16px;
3286
- padding-bottom: 8px;
3287
- }
3288
-
3289
- /* ../vuu-table-extras/src/column-expression-input/ColumnExpressionInput.css */
3290
- .vuuColumnExpressionInput {
3291
- --vuuFilterEditor-background: var(--salt-container-primary-background);
3292
- --vuuFilterEditor-color: var(--salt-text-primary-foreground);
3293
- --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
3294
- --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
3295
- --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
3296
- --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
3297
- --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
3298
- --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
3299
- --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
3300
- --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
3301
- --vuuFilterEditor-suggestion-selectedColor: var(--salt-text-primary-foreground);
3302
- --vuuFilterEditor-suggestion-detailColor: var(--salt-text-secondary-foreground-disabled);
3303
- --vuuFilterEditor-suggestion-height: 24px;
3304
- --vuuFilterEditor-variableColor: blue;
3305
- align-items: center;
3306
- box-sizing: border-box;
3307
- height: 30px;
3308
- }
3309
- .vuuColumnExpressionInput-FilterButton,
3310
- .vuuColumnExpressionInput-ClearButton {
3311
- --vuu-icon-size: 12px;
3312
- --saltButton-width: 28px;
3313
- }
3314
- .expression-type-container {
3315
- margin: 0 3px 0 auto;
3316
- color: var(--salt-text-secondary-foreground);
3317
- }
3318
- .expression-kind {
3319
- display: inline-block;
3320
- width: 50px;
3321
- }
3322
- .expression-type {
3323
- display: inline-block;
3324
- text-align: right;
3325
- width: 50px;
3326
- }
3327
- .vuuSuggestion {
3328
- display: flex;
3329
- align-items: center;
3330
- }
3331
- .vuuFunctionDoc .function-heading {
3332
- display: flex;
3333
- gap: 3px;
3334
- }
3335
- .vuuFunctionDoc .function-name {
3336
- font-style: italic;
3337
- }
3338
- .vuuFunctionDoc .param-list {
3339
- font-style: italic;
3340
- color: blue;
3341
- white-space: pre;
3342
- }
3343
- .vuuFunctionDoc .function-type {
3344
- margin-left: auto;
3345
- }
3346
- .vuuFunctionDoc .example-container {
3347
- background-color: var(--salt-container-secondary-background);
3348
- margin: 6px 0;
3349
- padding: 3px;
3350
- }
3351
- .vuuFunctionDoc .example-expression {
3352
- font-family: var(--salt-typography-fontFamily-code);
3353
- margin-left: 8px;
3354
- margin-top: 6px;
3355
- }
3356
- .vuuFunctionDoc .example-result {
3357
- margin-left: 8px;
3358
- margin-top: 6px;
3359
- }
3360
-
3361
- /* ../vuu-table-extras/src/column-settings/ColumnSettingsPanel.css */
3362
- .vuuColumnSettingsPanel {
3363
- --vuu-svg-align-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.33333 10H2.66667C2.3 10 2 10.3 2 10.6667C2 11.0333 2.3 11.3333 2.66667 11.3333H9.33333C9.7 11.3333 10 11.0333 10 10.6667C10 10.3 9.7 10 9.33333 10ZM9.33333 4.66667H2.66667C2.3 4.66667 2 4.96667 2 5.33333C2 5.7 2.3 6 2.66667 6H9.33333C9.7 6 10 5.7 10 5.33333C10 4.96667 9.7 4.66667 9.33333 4.66667ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
3364
- --vuu-svg-align-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM6.66667 11.3333H13.3333C13.7 11.3333 14 11.0333 14 10.6667C14 10.3 13.7 10 13.3333 10H6.66667C6.3 10 6 10.3 6 10.6667C6 11.0333 6.3 11.3333 6.66667 11.3333ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM6.66667 6H13.3333C13.7 6 14 5.7 14 5.33333C14 4.96667 13.7 4.66667 13.3333 4.66667H6.66667C6.3 4.66667 6 4.96667 6 5.33333C6 5.7 6.3 6 6.66667 6ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
3365
- --vuu-svg-pin-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.33333 9.86V8.66666H13.3333C13.7 8.66666 14 8.36666 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333L7.33333 7.33333V6.14C7.33333 5.84 6.97333 5.69333 6.76667 5.90666L4.90667 7.76666C4.77333 7.89999 4.77333 8.10666 4.90667 8.24L6.76667 10.1C6.97333 10.3067 7.33333 10.16 7.33333 9.86ZM2.66667 13.3333C3.03333 13.3333 3.33333 13.0333 3.33333 12.6667L3.33333 3.33333C3.33333 2.96666 3.03333 2.66666 2.66667 2.66666C2.3 2.66666 2 2.96666 2 3.33333L2 12.6667C2 13.0333 2.3 13.3333 2.66667 13.3333Z" /></svg>');
3366
- --vuu-svg-pin-float: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 4.66667H4.66667V6H6V4.66667ZM6 7.33333H4.66667V8.66667H6V7.33333ZM6 2C5.26 2 4.66667 2.6 4.66667 3.33333H6V2ZM8.66667 10H7.33333V11.3333H8.66667V10ZM12.6667 2V3.33333H14C14 2.6 13.4 2 12.6667 2ZM8.66667 2H7.33333V3.33333H8.66667V2ZM6 11.3333V10H4.66667C4.66667 10.7333 5.26 11.3333 6 11.3333ZM12.6667 8.66667H14V7.33333H12.6667V8.66667ZM12.6667 6H14V4.66667H12.6667V6ZM12.6667 11.3333C13.4 11.3333 14 10.7333 14 10H12.6667V11.3333ZM2.66667 4.66667C2.3 4.66667 2 4.96667 2 5.33333V12.6667C2 13.4 2.6 14 3.33333 14H10.6667C11.0333 14 11.3333 13.7 11.3333 13.3333C11.3333 12.9667 11.0333 12.6667 10.6667 12.6667H4C3.63333 12.6667 3.33333 12.3667 3.33333 12V5.33333C3.33333 4.96667 3.03333 4.66667 2.66667 4.66667ZM10 3.33333H11.3333V2H10V3.33333ZM10 11.3333H11.3333V10H10V11.3333Z" /></svg>');
3367
- --vuu-svg-pin-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.66667 6.14V7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36666 2.3 8.66666 2.66667 8.66666H8.66667V9.86C8.66667 10.16 9.02667 10.3067 9.23333 10.0933L11.0933 8.23333C11.2267 8.1 11.2267 7.89333 11.0933 7.76L9.23333 5.9C9.02667 5.69333 8.66667 5.84 8.66667 6.14ZM13.3333 13.3333C13.7 13.3333 14 13.0333 14 12.6667V3.33333C14 2.96666 13.7 2.66666 13.3333 2.66666C12.9667 2.66666 12.6667 2.96666 12.6667 3.33333V12.6667C12.6667 13.0333 12.9667 13.3333 13.3333 13.3333Z"/></svg>');
3368
- --vuuDropdown-height: 24px;
3369
- --vuuDropdown-width: 100%;
3370
- --vuuIconToggleButton-iconSize: 16px;
3371
- display: flex;
3372
- flex-direction: column;
3373
- gap: 24px;
3374
- height: 100%;
3375
- padding-top: 24px;
3376
- }
3377
- .vuuColumnSettingsPanel-header {
3378
- border-top: solid 2px var(--vuu-color-gray-30);
3379
- font-size: 14px;
3380
- font-weight: 600;
3381
- padding-top: 24px;
3382
- }
3383
- .vuuColumnSettingsPanel-buttonBar {
3384
- align-items: center;
3385
- display: flex;
3386
- justify-content: space-between;
3387
- margin-top: auto;
3388
- }
3389
- .vuuColumnSettingsPanel-buttonBar[data-align=right] {
3390
- gap: 6px;
3391
- justify-content: flex-end;
3392
- }
3393
- .vuuColumnSettingsPanel-buttonNavPrev {
3394
- --vuu-icon-left: 6px;
3395
- padding-left: 24px;
3396
- }
3397
- .vuuColumnSettingsPanel-buttonNavNext {
3398
- --vuu-icon-left: calc(100% - 18px);
3399
- padding-right: 24px;
3400
- }
3401
- [data-icon=align-left] {
3402
- --vuu-icon-svg: var(--vuu-svg-align-left);
3403
- }
3404
- [data-icon=align-right] {
3405
- --vuu-icon-svg: var(--vuu-svg-align-right);
3406
- }
3407
- [data-icon=pin-left] {
3408
- --vuu-icon-svg: var(--vuu-svg-pin-left);
3409
- }
3410
- [data-icon=pin-float] {
3411
- --vuu-icon-svg: var(--vuu-svg-pin-float);
3412
- }
3413
- [data-icon=pin-right] {
3414
- --vuu-icon-svg: var(--vuu-svg-pin-right);
3415
- }
3416
-
3417
- /* ../vuu-table-extras/src/datasource-stats/DatasourceStats.css */
3418
- .vuuDatasourceStats {
3419
- color: black;
3420
- display: flex;
3421
- font-size: 10px;
3422
- gap: var(--salt-size-unit);
3423
- padding: 4px 0 0 12px;
3424
- }
3425
- .vuuDatasourceStats-label {
3426
- color: var(--vuu-color-gray-50);
3427
- }
3428
-
3429
- /* ../vuu-table-extras/src/table-settings/TableSettingsPanel.css */
3430
- .vuuTableSettingsPanel {
3431
- --vuu-svg-text-strikethrough: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M28.3333 9.33334C28.8867 9.33334 29.3333 8.88668 29.3333 8.33334C29.3333 7.78001 28.8867 7.33334 28.3333 7.33334H20.26L22.26 9.33334H23.48L23.1133 10.1867L24.5067 11.58L25.4733 9.33334H28.3333ZM27.6267 16.5867L18.7467 7.70668C18.4867 7.44668 18.0667 7.44668 17.8067 7.70668C17.5467 7.96668 17.5467 8.38668 17.8067 8.64668L21.98 12.82L20.88 15.38C20.62 15.9933 21.0667 16.6667 21.7267 16.6667C22.0933 16.6667 22.4267 16.4467 22.5733 16.1067L23.38 14.22L26.68 17.52C26.94 17.78 27.36 17.78 27.62 17.52C27.8867 17.2667 27.8867 16.8467 27.6267 16.5867Z"/></svg>');
3432
- --vuu-svg-text-Tt: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M17.6667 7.66666C17.6667 8.21999 18.1133 8.66666 18.6667 8.66666H21V15.6667C21 16.22 21.4467 16.6667 22 16.6667C22.5533 16.6667 23 16.22 23 15.6667V8.66666H25.3333C25.8867 8.66666 26.3333 8.21999 26.3333 7.66666C26.3333 7.11332 25.8867 6.66666 25.3333 6.66666H18.6667C18.1133 6.66666 17.6667 7.11332 17.6667 7.66666ZM29.3333 9.99999H25.3333C24.78 9.99999 24.3333 10.4467 24.3333 11C24.3333 11.5533 24.78 12 25.3333 12H26.3333V15.6667C26.3333 16.22 26.78 16.6667 27.3333 16.6667C27.8867 16.6667 28.3333 16.22 28.3333 15.6667V12H29.3333C29.8867 12 30.3333 11.5533 30.3333 11C30.3333 10.4467 29.8867 9.99999 29.3333 9.99999Z" /></svg>');
3433
- --vuu-svg-text-T: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M19.3333 7.66666C19.3333 8.21999 19.78 8.66666 20.3333 8.66666H23V15.6667C23 16.22 23.4467 16.6667 24 16.6667C24.5533 16.6667 25 16.22 25 15.6667V8.66666H27.6667C28.22 8.66666 28.6667 8.21999 28.6667 7.66666C28.6667 7.11332 28.22 6.66666 27.6667 6.66666H20.3333C19.78 6.66666 19.3333 7.11332 19.3333 7.66666Z"/></svg>');
3434
- --vuu-svg-stripes: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="2" width="12" height="2" rx="0.3"/><rect x="2" y="5" width="12" height="2" rx="0.3"/><rect x="2" y="8" width="12" height="2" rx="0.3"/><rect x="2" y="11" width="12" height="2" rx="0.3"/></svg>');
3435
- --vuu-svg-row-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="3" width="12" height="1" rx="0.3" /><rect x="2" y="6" width="12" height="1" rx="0.3" /><rect x="2" y="9" width="12" height="1" rx="0.3" /><rect x="2" y="12" width="12" height="1" rx="0.3"/></svg>');
3436
- --vuu-svg-col-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="3" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 3 14)"/><rect x="6" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 6 14)"/><rect x="9" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 9 14)"/><rect x="12" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 12 14)"/></svg>');
3437
- display: flex;
3438
- flex-direction: column;
3439
- gap: 24px;
3440
- height: 100%;
3441
- padding-top: 24px;
3442
- }
3443
- .vuuTableSettingsPanel [data-icon=text-strikethrough] {
3444
- --vuu-icon-svg: var(--vuu-svg-text-strikethrough);
3445
- }
3446
- .vuuTableSettingsPanel [data-icon=text-Tt] {
3447
- --vuu-icon-svg: var(--vuu-svg-text-Tt);
3448
- }
3449
- .vuuTableSettingsPanel [data-icon=text-T] {
3450
- --vuu-icon-svg: var(--vuu-svg-text-T);
3451
- }
3452
- .vuuTableSettingsPanel [data-icon=col-lines] {
3453
- --vuu-icon-svg: var(--vuu-svg-col-lines);
3454
- }
3455
- .vuuTableSettingsPanel [data-icon=row-lines] {
3456
- --vuu-icon-svg: var(--vuu-svg-row-lines);
3457
- }
3458
- .vuuTableSettingsPanel [data-icon=row-striping] {
3459
- --vuu-icon-svg: var(--vuu-svg-stripes);
3460
- }
3461
- .vuuTableSettingsPanel-header {
3462
- border-top: solid 2px var(--vuu-color-gray-30);
3463
- font-size: 14px;
3464
- font-weight: 600;
3465
- padding-top: 24px;
3466
- }
3467
- .vuuTableSettingsPanel .vuuColumnList {
3468
- flex-grow: 1;
3469
- flex-shrink: 1;
3470
- flex-basis: 0;
3471
- }
3472
- .vuuTableSettingsPanel-calculatedButtonbar {
3473
- --vuu-icon-size: 16px;
3474
- --saltButton-height: 24px;
3475
- --saltButton-width: 24px;
3476
- align-items: center;
3477
- display: flex;
3478
- flex: 0 0 32px;
3479
- gap: 12px;
3480
- }
3481
- .vuuGridSeparators {
3482
- --vuuIconToggleButton-iconSize: 16px;
3483
- }
3484
-
3485
888
  /* src/table-next/TableNext.css */
3486
889
  .vuuTableNext {
3487
890
  --vuu-table-cell-outlineWidth: 1px;