@vuu-ui/vuu-filters 0.8.21-debug → 0.8.21

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
@@ -1,2060 +1,2 @@
1
- /* ../vuu-layout/src/dock-layout/Drawer.css */
2
- .vuuDrawer {
3
- --drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);
4
- --vuu-close-icon-svg: var(--svg-chevron-double-right);
5
- transition: flex-basis;
6
- transition-duration: var(--drawer-transition-duration);
7
- position: relative;
8
- z-index: 1;
9
- flex-basis: 0;
10
- flex-grow: 1;
11
- flex-shrink: 1;
12
- min-width: 0;
13
- min-height: 0;
14
- display: flex;
15
- }
16
- .vuuDrawer-peekaboo {
17
- flex-basis: var(--drawer-peek-size);
18
- flex-grow: 0;
19
- flex-shrink: 0;
20
- }
21
- .vuuDrawer-inline.vuuDrawer-open {
22
- flex-basis: var(--drawer-size);
23
- flex-grow: 0;
24
- flex-shrink: 0;
25
- }
26
- .vuuDrawer-liner {
27
- background-color: var(--drawer-bg);
28
- overflow: hidden;
29
- position: relative;
30
- }
31
- .vuuDrawer-content {
32
- height: 100%;
33
- overflow: hidden;
34
- position: absolute;
35
- top: 0;
36
- right: var(--drawer-peek-size);
37
- transition: right;
38
- transition-duration: var(--drawer-transition-duration);
39
- width: 100%;
40
- flex: 1 1 100%;
41
- }
42
- .vuuDrawer-open .vuuDrawer-content {
43
- right: 0;
44
- }
45
- .vuuDrawer-left {
46
- border-right: var(--drawer-leading-edge-border);
47
- }
48
- .vuuDrawer-right {
49
- border-left: var(--drawer-leading-edge-border);
50
- }
51
- .vuuDrawer-top {
52
- border-bottom: var(--drawer-leading-edge-border);
53
- }
54
- .vuuDrawer-bottom {
55
- border-top: var(--drawer-leading-edge-border);
56
- }
57
- .vuuDrawer-left .vuuDrawer-liner,
58
- .vuuDrawer-right .vuuDrawer-liner {
59
- height: 100%;
60
- transition: width;
61
- }
62
- .vuuDrawer-top .vuuDrawer-liner,
63
- .vuuDrawer-bottom .vuuDrawer-liner {
64
- width: 100%;
65
- transition: height;
66
- }
67
- .vuuDrawer-inline .vuuDrawer-liner {
68
- width: 100%;
69
- height: 100%;
70
- }
71
- .vuuDrawer-over .vuuDrawer-liner {
72
- position: absolute;
73
- transition-duration: 0.4s;
74
- }
75
- .vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner {
76
- top: 0;
77
- left: 0;
78
- width: 0;
79
- }
80
- .vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner {
81
- top: 0;
82
- right: 0;
83
- width: 0;
84
- }
85
- .vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner {
86
- height: 0;
87
- top: 0;
88
- left: 0;
89
- }
90
- .vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner {
91
- bottom: 0;
92
- height: 0;
93
- left: 0;
94
- }
95
- .vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
96
- .vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
97
- width: var(--drawer-peek-size);
98
- }
99
- .vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
100
- .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
101
- height: var(--drawer-peek-size);
102
- }
103
- .vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
104
- .vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
105
- width: var(--drawer-size);
106
- }
107
- .vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
108
- .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
109
- height: var(--drawer-size);
110
- }
111
- .vuuDrawer-top,
112
- .vuuDrawer-left {
113
- order: 0;
114
- }
115
- .vuuDrawer-bottom,
116
- .vuuDrawer-right {
117
- order: 99;
118
- }
119
- .vuuDrawer-left,
120
- .vuuDrawer-right {
121
- flex-direction: column;
122
- }
123
- .vuuToggleButton-container {
124
- --saltButton-height: 28px;
125
- --saltButton-width: 28px;
126
- --vuu-icon-size: 12px;
127
- flex: 0 0 28px;
128
- }
129
- .vuuDrawer-open {
130
- --vuu-close-icon-svg: var(--svg-chevron-double-left);
131
- }
132
-
133
- /* ../vuu-layout/src/dock-layout/DockLayout.css */
134
- .vuuDockLayout {
135
- --chest-bg: var(--hw-chest-bg, inherit);
136
- --drawer-bg: var(--hw-drawer-bg, inherit);
137
- --drawer-size: var(--hw-drawer-size, 200px);
138
- --drawer-peek-size: var(--hw-drawer-peek-size, 32px);
139
- --drawer-transition-duration: var(--hw-drawer-transition-duration, 0.4s);
140
- background-color: var(--chest-bg);
141
- display: flex;
142
- }
143
- .vuuDockLayout-horizontal {
144
- flex-direction: row;
145
- }
146
- .vuuDockLayout-vertical {
147
- flex-direction: column;
148
- }
149
- .vuuDockLayout-content {
150
- background-color: var(--chest-bg);
151
- flex-grow: 1;
152
- flex-shrink: 1;
153
- overflow: hidden;
154
- display: flex;
155
- align-items: center;
156
- justify-content: center;
157
- }
158
- .vuuDockLayout-horizontal .vuuDockLayout-content {
159
- flex-basis: 100%;
160
- }
161
- .vuuDockLayout-vertical .vuuDockLayout-content {
162
- flex-basis: 100%;
163
- }
164
-
165
- /* ../vuu-layout/src/Component.css */
166
-
167
- /* ../vuu-layout/src/drag-drop/DropMenu.css */
168
- .vuuDropMenu {
169
- margin-left: -50%;
170
- margin-bottom: -50%;
171
- background-color: white;
172
- border: solid 1px var(--grey40);
173
- display: inline-flex;
174
- justify-content: center;
175
- align-items: center;
176
- padding: 3px;
177
- border-radius: 3px;
178
- }
179
- .vuuDropMenu-left,
180
- .vuuDropMenu-right {
181
- flex-direction: column;
182
- }
183
- .vuuDropMenu-bottom {
184
- transform: translate(0, -30px);
185
- }
186
- .vuuDropMenu-right {
187
- transform: translate(-20px, 0);
188
- }
189
- .vuuDropMenu-item {
190
- --vuu-icon-size: 20px;
191
- width: 32px;
192
- height: 32px;
193
- background-color: var(--grey20);
194
- border-bottom: solid 1px var(--grey40);
195
- cursor: pointer;
196
- display: flex;
197
- align-items: center;
198
- justify-content: center;
199
- }
200
- .vuuDropMenu-item .Icon {
201
- transform: scale(1.25);
202
- transform-origin: center center;
203
- }
204
- .vuuDropMenu-left .vuuDropMenu-item .hwIcon {
205
- transform: scale(1.25) rotate(180deg);
206
- transform-origin: center center;
207
- }
208
- .vuuDropMenu-top .vuuDropMenu-item .hwIcon {
209
- transform: scale(1.25) rotate(270deg);
210
- transform-origin: center center;
211
- }
212
- .vuuDropMenu-bottom .vuuDropMenu-item .hwIcon {
213
- transform: scale(1.25) rotate(90deg);
214
- transform-origin: center center;
215
- }
216
- .vuuDropMenu-item .hwIcon-path {
217
- fill: grey;
218
- }
219
- .vuuDropMenu-item:hover {
220
- background-color: rgba(200, 200, 200, 0.5);
221
- }
222
- .vuuDropMenu-item:hover .hwIcon-path-2 {
223
- fill: blue;
224
- }
225
- .vuuDropMenu-item:last-child {
226
- border-bottom: none;
227
- }
228
-
229
- /* ../vuu-layout/src/drag-drop/DropTargetRenderer.css */
230
- #hw-drag-canvas {
231
- visibility: hidden;
232
- z-index: 10;
233
- position: absolute;
234
- top: 0px;
235
- left: 0;
236
- right: 0;
237
- bottom: 0;
238
- background-color: transparent;
239
- }
240
- #hw-drag-canvas > svg {
241
- position: absolute;
242
- }
243
- .drawing #hw-drag-canvas {
244
- visibility: visible;
245
- }
246
- path.drop-target {
247
- stroke: blue;
248
- stroke-width: 4px;
249
- fill: transparent;
250
- }
251
- path.drop-target.centre {
252
- stroke: red;
253
- }
254
- #vuu-drop-outline {
255
- fill: rgba(0, 0, 255, .3);
256
- stroke: none;
257
- stroke-dasharray: 4 2;
258
- }
259
- #hw-drop-guides {
260
- fill: none;
261
- stroke: rgba(0, 0, 0, 0.3);
262
- stroke-dasharray: 2 3;
263
- }
264
-
265
- /* ../vuu-layout/src/DraggableLayout.css */
266
- .DraggableLayout {
267
- display: inline-block;
268
- outline: none;
269
- }
270
- [data-dragging=true] {
271
- position: absolute !important;
272
- z-index: 100;
273
- }
274
- .vuuSimpleDraggableWrapper {
275
- background-color: white;
276
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
277
- }
278
- .vuuSimpleDraggableWrapper > * {
279
- height: 100%;
280
- width: 100%;
281
- }
282
-
283
- /* ../vuu-layout/src/layout-header/Header.css */
284
- .vuuHeader {
285
- --saltButton-height: 24px;
286
- --saltButton-width: 24px;
287
- }
288
- .salt-density-high .vuuHeader {
289
- --saltToolbarField-marginTop: 0;
290
- }
291
-
292
- /* ../vuu-layout/src/layout-view/View.css */
293
- .vuuView {
294
- border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
295
- border-width: var(--vuuView-borderWidth, 1px);
296
- border-style: var(--vuuView-borderStyle, none);
297
- display: flex;
298
- flex-direction: column;
299
- margin: var(--vuuView-margin, 0px);
300
- min-height: 50px;
301
- min-width: 50px;
302
- outline: none;
303
- overflow: hidden;
304
- position: relative;
305
- }
306
- .vuuView.focus-visible:after {
307
- content: "";
308
- position: absolute;
309
- top: 0;
310
- left: 0;
311
- right: 0;
312
- bottom: 0;
313
- border: dotted cornflowerblue 2px;
314
- }
315
- .vuuView.dragging {
316
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
317
- }
318
- .vuuView-main {
319
- display: flex;
320
- flex-direction: var(--vuuView-flexDirection, column);
321
- flex-wrap: var(--vuuView-flex-wrap, nowrap);
322
- flex: 1;
323
- justify-content: var(--vuuView-justify, flex-start);
324
- overflow: hidden;
325
- position: relative;
326
- }
327
- .vuuView-main > * {
328
- flex-basis: auto;
329
- flex-grow: var(--vuuView-flex-grow, 1);
330
- flex-shrink: var(--vuuView-flex-shrink, 1);
331
- }
332
- .vuuView-collapsed .vuuView-main {
333
- display: none;
334
- }
335
- .vuuView-collapsed + .Splitter {
336
- display: none;
337
- }
338
- .vuuView-collapsed .Toolbar-vertical {
339
- border-right: solid 1px var(--grey40);
340
- }
341
- .vuuView-collapsed .Toolbar-vertical .toolbar-title {
342
- display: none;
343
- }
344
-
345
- /* ../vuu-layout/src/placeholder/LayoutStartPanel.css */
346
- .vuuLayoutStartPanel {
347
- align-items: center;
348
- flex: 0 0 auto !important;
349
- display: flex;
350
- flex-direction: column;
351
- font-weight: 700;
352
- gap: 12px;
353
- }
354
- .vuuLayoutStartPanel-title {
355
- color: var(--vuu-color-gray-80);
356
- font-size: 28px;
357
- line-height: 1.5;
358
- text-align: center;
359
- }
360
- .vuuLayoutStartPanel-text {
361
- color: var(--vuu-color-gray-50);
362
- font-size: 18px;
363
- line-height: 1.5;
364
- max-width: 460px;
365
- }
366
- .vuuLayoutStartPanel-addButton {
367
- --vuu-icon-size: 20px;
368
- --saltButton-borderRadius: 28px !important;
369
- --saltButton-height: 56px;
370
- --saltButton-width: 56px;
371
- box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
372
- }
373
-
374
- /* ../vuu-layout/src/placeholder/Placeholder.css */
375
- .vuuPlaceholder {
376
- --vuuView-justify: center;
377
- align-items: center;
378
- display: flex;
379
- flex-basis: 0;
380
- flex-grow: 1;
381
- flex-shrink: 1;
382
- }
383
- .vuuPlaceholder-nested {
384
- background-color: red;
385
- }
386
- .vuuPlaceholder-shim {
387
- flex-grow: 0;
388
- flex-shrink: 0;
389
- }
390
-
391
- /* ../vuu-layout/src/flexbox/Splitter.css */
392
- .vuuSplitter {
393
- --splitter-background: var(--salt-separable-secondary-borderColor);
394
- --splitter-borderColor: var(--salt-separable-secondary-borderColor);
395
- --splitter-borderStyle: none;
396
- --splitter-borderWidth: 0;
397
- --splitter-size: 3px;
398
- align-items: center;
399
- background-color: var(--splitter-background);
400
- border-color: var(--splitter-borderColor);
401
- border-style: var(--splitter-borderStyle);
402
- border-width: var(--splitter-borderWidth);
403
- box-sizing: border-box;
404
- display: flex;
405
- justify-content: center;
406
- position: relative;
407
- outline: none;
408
- z-index: 1;
409
- }
410
- .vuuSplitter:hover {
411
- --splitter-background: var(--salt-separable-primary-borderColor);
412
- }
413
- .vuuSplitter-active {
414
- --splitter-background: var(--salt-separable-primary-borderColor);
415
- }
416
- .vuuSplitter-column {
417
- cursor: ns-resize;
418
- height: var(--splitter-size);
419
- }
420
- .vuuSplitter:not(.vuuSplitter-column) {
421
- cursor: ew-resize;
422
- width: var(--splitter-size);
423
- }
424
- .vuuSplitter:before {
425
- border: none;
426
- border-radius: 0;
427
- content: "";
428
- display: block;
429
- padding: 0;
430
- }
431
- .vuuSplitter-grab-zone {
432
- position: absolute;
433
- background-color: rgba(255, 0, 0, 0.01);
434
- cursor: inherit;
435
- }
436
- .vuuSplitter-column .vuuSplitter-grab-zone {
437
- left: 0;
438
- right: 0;
439
- top: -5px;
440
- bottom: -5px;
441
- }
442
- .vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
443
- left: -5px;
444
- right: -5px;
445
- top: 0;
446
- bottom: 0;
447
- }
448
- .vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
449
- background-color: rgba(255, 255, 255, .05);
450
- left: -150px;
451
- right: -150px;
452
- }
453
- .vuuSplitter:not(.vuuSplitter-column):before {
454
- width: 1px;
455
- height: 10px;
456
- background:
457
- linear-gradient(
458
- to bottom,
459
- var(--grey900) 10%,
460
- transparent 10%,
461
- transparent 30%,
462
- var(--grey900) 30%,
463
- var(--grey900) 40%,
464
- transparent 40%,
465
- transparent 60%,
466
- var(--grey900) 60%,
467
- var(--grey900) 70%,
468
- transparent 70%,
469
- transparent 90%,
470
- var(--grey900) 90%);
471
- }
472
- .vuuSplitter-active.vuuSplitter-column:before {
473
- background:
474
- linear-gradient(
475
- to right,
476
- #ffffff 10%,
477
- transparent 10%,
478
- transparent 30%,
479
- #ffffff 30%,
480
- #ffffff 40%,
481
- transparent 40%,
482
- transparent 60%,
483
- #ffffff 60%,
484
- #ffffff 70%,
485
- transparent 70%,
486
- transparent 90%,
487
- #ffffff 90%);
488
- }
489
- .vuuSplitter-active:not(.vuuSplitter-column):before {
490
- background:
491
- linear-gradient(
492
- to bottom,
493
- #ffffff 10%,
494
- transparent 10%,
495
- transparent 30%,
496
- #ffffff 30%,
497
- #ffffff 40%,
498
- transparent 40%,
499
- transparent 60%,
500
- #ffffff 60%,
501
- #ffffff 70%,
502
- transparent 70%,
503
- transparent 90%,
504
- #ffffff 90%);
505
- }
506
- .vuuSplitter-column:before {
507
- width: 10px;
508
- height: 1px;
509
- background:
510
- linear-gradient(
511
- to right,
512
- var(--grey900) 10%,
513
- transparent 10%,
514
- transparent 30%,
515
- var(--grey900) 30%,
516
- var(--grey900) 40%,
517
- transparent 40%,
518
- transparent 60%,
519
- var(--grey900) 60%,
520
- var(--grey900) 70%,
521
- transparent 70%,
522
- transparent 90%,
523
- var(--grey900) 90%);
524
- }
525
-
526
- /* ../vuu-layout/src/flexbox/Flexbox.css */
527
- :root {
528
- --hw-space-unit: 4px;
529
- --hw-flex-gap: 3;
530
- --hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
531
- }
532
- .hwFlexbox {
533
- background-color: var(--container1-background);
534
- box-sizing: border-box;
535
- display: flex;
536
- gap: calc(var(--spacing) * var(--space));
537
- min-height: 0;
538
- min-width: 0;
539
- overflow: hidden;
540
- }
541
- .hwFlexbox-column {
542
- flex-direction: column;
543
- }
544
- .hwFlexbox-row {
545
- flex-direction: row;
546
- }
547
- .hwFlexbox > .Splitter {
548
- flex-basis: auto;
549
- flex-grow: 0;
550
- flex-shrink: 0;
551
- }
552
- .hwFlexbox.full-page {
553
- height: 100vh;
554
- width: 100vw;
555
- }
556
- .flex-fill {
557
- border-color: red;
558
- flex: 0;
559
- flex-grow: 1;
560
- flex-shrink: 1;
561
- }
562
- .vuuView.flex-fill {
563
- border-color: red;
564
- }
565
-
566
- /* ../vuu-layout/src/flexbox/FluidGrid.css */
567
- :root {
568
- --hw-space-unit: 4px;
569
- --hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
570
- }
571
- .hwFluidGrid {
572
- --gap: var(--gutter-width);
573
- display: flex;
574
- gap: calc(var(--grid-gap) * var(--hw-space-unit));
575
- flex-wrap: wrap;
576
- padding: 0;
577
- }
578
- .hwFluidGrid > * {
579
- --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
580
- --gutter-count: calc(var(--parent-col-count) - 1);
581
- --total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
582
- --available-width: calc(100% - var(--total-gutter-width));
583
- flex-basis: 0;
584
- flex-grow: 1;
585
- flex-shrink: 1;
586
- position: relative;
587
- }
588
- .hwFluidGrid > *:after {
589
- content: "";
590
- position: absolute;
591
- top: 0;
592
- left: 0;
593
- right: 0;
594
- bottom: 0;
595
- border: dashed 2px blue;
596
- }
597
- .hwFluidGrid > [data-xs] {
598
- --internal-gutter-count: calc(var(--col-span) - 1);
599
- --percent-width: calc(var(--col-span) / var(--parent-col-count));
600
- --internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
601
- flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
602
- flex-grow: 0;
603
- }
604
- .hwFluidGrid > [data-xs="1"] {
605
- --col-span: 1;
606
- }
607
- .hwFluidGrid > [data-xs="2"] {
608
- --col-span: 2;
609
- }
610
- .hwFluidGrid > [data-xs="3"] {
611
- --col-span: 3;
612
- }
613
- .hwFluidGrid > [data-xs="4"] {
614
- --col-span: 4;
615
- }
616
- .hwFluidGrid > [data-xs="6"] {
617
- --col-span: 6;
618
- }
619
- .hwFluidGrid > [data-xs="8"] {
620
- --col-span: 8;
621
- }
622
- .hwFluidGrid > [data-xs="9"] {
623
- --col-span: 9;
624
- }
625
- .hwFluidGrid > [data-xs="10"] {
626
- --col-span: 10;
627
- }
628
- .hwFluidGrid > [data-xs="11"] {
629
- --col-span: 11;
630
- }
631
- .hwFluidGrid > [data-xs="12"] {
632
- --col-span: 12;
633
- }
634
- @media (min-width: 600px) {
635
- .hwFluidGrid > [data-sm="1"] {
636
- --col-span: 1;
637
- }
638
- .hwFluidGrid > [data-sm="2"] {
639
- --col-span: 2;
640
- }
641
- .hwFluidGrid > [data-sm="3"] {
642
- --col-span: 3;
643
- }
644
- .hwFluidGrid > [data-sm="4"] {
645
- --col-span: 4;
646
- }
647
- .hwFluidGrid > [data-sm="6"] {
648
- --col-span: 6;
649
- }
650
- .hwFluidGrid > [data-sm="8"] {
651
- --col-span: 8;
652
- }
653
- .hwFluidGrid > [data-sm="9"] {
654
- --col-span: 9;
655
- }
656
- .hwFluidGrid > [data-sm="10"] {
657
- --col-span: 10;
658
- }
659
- .hwFluidGrid > [data-sm="11"] {
660
- --col-span: 11;
661
- }
662
- .hwFluidGrid > [data-sm="12"] {
663
- --col-span: 12;
664
- }
665
- }
666
- .hwFluidGrid-show-grid {
667
- --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
668
- --grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
669
- --grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
670
- --grid-available-width: calc(100% - var(--grid-total-gutter-width));
671
- --grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
672
- --column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
673
- background:
674
- repeating-linear-gradient(
675
- to right,
676
- var(--hw-fluid-grid-col-bg) 0,
677
- var(--hw-fluid-grid-col-bg) var(--column-width),
678
- white var(--column-width),
679
- white calc(var(--column-width) + var(--gutter-width)));
680
- }
681
-
682
- /* ../vuu-layout/src/measured-container/MeasuredContainer.css */
683
- .vuuMeasuredContainer {
684
- flex: var(--vuuMeasuredContainer-flex, none);
685
- height: var(--vuuMeasuredContainer-height, var(--measured-css-height));
686
- min-height: 0;
687
- width: var(--measured-css-width);
688
- }
689
-
690
- /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
691
- .vuuOverflowContainer {
692
- --overflow-borderColor: var(--vuuOverflowContainer-borderColor, none);
693
- --overflow-borderStyle: var(--vuuOverflowContainer-borderStyle, none);
694
- --overflow-borderWidth: var(--vuuOverflowContainer-borderWidth, 0px);
695
- --overflow-border-topWidth: var(--vuuOverflowContainer-borderTopWidth, var(--overflow-borderWidth));
696
- --overflow-border-rightWidth: var(--vuuOverflowContainer-borderRightWidth, var(--overflow-borderWidth));
697
- --overflow-border-bottomWidth: var(--vuuOverflowContainer-borderBottomWidth, var(--overflow-borderWidth));
698
- --overflow-border-leftWidth: var(--vuuOverflowContainer-borderLeftWidth, var(--overflow-borderWidth));
699
- --overflow-item-gap: var(--vuuOverflowContainer-gap,2px);
700
- --overflow-direction: row;
701
- --overflow-height: var(--overflow-item-height);
702
- --overflow-top:top:0;
703
- --overflow-width: 0px;
704
- background-color: var(--vuuOverflowContainer-background);
705
- border-color: var(--overflow-borderColor);
706
- border-style: var(--overflow-borderStyle);
707
- border-top-width: var(--overflow-border-topWidth);
708
- border-right-width: var(--overflow-border-rightWidth);
709
- border-bottom-width: var(--overflow-border-bottomWidth);
710
- border-left-width: var(--overflow-border-leftWidth);
711
- height: var(--overflow-container-heightWidth);
712
- }
713
- .vuuOverflowContainer-horizontal {
714
- --item-align: center;
715
- --item-margin: 0 var(--overflow-item-gap) 0 var(--overflow-item-gap);
716
- }
717
- .vuuOverflowContainer-vertical {
718
- --item-align: stretch;
719
- --overflow-item-height: auto;
720
- --item-margin: var(--overflow-item-gap) 0 var(--overflow-item-gap) 0;
721
- --overflow-direction: column;
722
- --overflow-height: 0;
723
- --overflow-left: 0;
724
- --overflow-top: 100%;
725
- --overflow-width: auto;
726
- }
727
- .vuuOverflowContainer-wrapContainer {
728
- --border: calc(var(--overflow-border-topWidth) + var(--overflow-border-bottomWidth));
729
- --overflow-item-height: calc(var(--overflow-container-height) - var(--border));
730
- align-items: var(--item-align);
731
- display: flex;
732
- flex-direction: var(--overflow-direction);
733
- flex-wrap: wrap;
734
- height: var(--overflow-item-height);
735
- justify-content: var(--vuuOverflowContainer-justifyContent, flex-start);
736
- min-width: var(--vuuOverflowContainer-minWidth, 44px);
737
- overflow: hidden;
738
- position: relative;
739
- width: 100%;
740
- }
741
- .vuuOverflowContainer-wrapContainer-overflowed {
742
- --overflow-order: 2;
743
- --overflow-left: auto;
744
- --overflow-position: relative;
745
- --overflow-width: auto;
746
- }
747
- .vuuOverflowContainer-vertical.vuuOverflowContainer-wrapContainer-overflowed {
748
- --overflow-height: auto;
749
- }
750
- .vuuOverflowContainer-item {
751
- align-items: inherit;
752
- display: flex;
753
- order: 1;
754
- position: relative;
755
- height: var(--overflow-item-height);
756
- margin: var(--item-margin);
757
- }
758
- .vuuOverflowContainer-item[data-align=right] {
759
- margin-left: auto;
760
- }
761
- .vuuOverflowContainer-item.wrapped {
762
- --overflow-item-bg: #ccc;
763
- order: 3;
764
- }
765
- .vuuOverflowContainer-item.vuuDraggable-dragAway,
766
- .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
767
- display: none;
768
- }
769
- .vuuOverflowContainer-item.vuuDropTarget-settling {
770
- visibility: hidden;
771
- }
772
- .vuuOverflowContainer-OverflowIndicator {
773
- align-items: center;
774
- background-color: transparent;
775
- display: flex;
776
- height: var(--overflow-height);
777
- order: var(--overflow-order, 99);
778
- overflow: hidden;
779
- left: var(--overflow-left, 100%);
780
- top: var(--overflow-top, 100%);
781
- position: var(--overflow-position, absolute);
782
- width: var(--overflow-width);
783
- }
784
- .vuuDraggable-vuuOverflowContainer {
785
- align-items: center;
786
- display: flex;
787
- height: 44px;
788
- }
789
-
790
- /* ../vuu-layout/src/palette/Palette.css */
791
- .vuuPalette {
792
- --vuuList-borderStyle: none;
793
- }
794
- .vuuPalette-horizontal {
795
- align-items: center;
796
- display: flex;
797
- }
798
- .vuuPaletteItem {
799
- --vuu-icon-color: var(--salt-text-primary-foreground);
800
- --vuu-icon-left: 0;
801
- --vuu-icon-size: 16px;
802
- --vuu-icon-top: 11px;
803
- --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
804
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
805
- padding-left: 12px;
806
- font-size: 12px;
807
- font-weight: 600;
808
- }
809
- .vuuSimpleDraggableWrapper > .vuuPaletteItem {
810
- --vuu-icon-color: var(--salt-selectable-foreground);
811
- }
812
- .salt-theme .vuuPaletteItem {
813
- font-size: 11px;
814
- font-weight: normal;
815
- }
816
-
817
- /* ../vuu-layout/src/stack/Stack.css */
818
- .vuuTabs {
819
- display: flex;
820
- box-sizing: border-box;
821
- flex-direction: column;
822
- }
823
- .vuuTabs-horizontal {
824
- --vuu-tabs-border-style: none solid none none;
825
- flex-direction: row;
826
- }
827
- .vuuTabs .Toolbar:before {
828
- left: 0;
829
- width: 100%;
830
- bottom: 0;
831
- height: 1px;
832
- content: "";
833
- position: absolute;
834
- background: var(--grey60);
835
- }
836
- .vuuTabs-tabPanel {
837
- display: flex;
838
- flex: 1;
839
- flex-direction: column;
840
- }
841
- .vuuTabs-tabPanel > * {
842
- flex: 1 1 auto;
843
- }
844
- .vuuTabHeader {
845
- --saltTabs-activationIndicator-background: transparent;
846
- --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
847
- border-color: var(--salt-container-primary-borderColor);
848
- border-style: var(--vuu-tabs-border-style, none none solid none);
849
- border-width: 1px;
850
- }
851
- .vuuTabHeader + .vuuView > .vuuHeader {
852
- height: 0;
853
- overflow: hidden;
854
- }
855
- .Layout-svg-button {
856
- --spacing-medium: 5px;
857
- }
858
-
859
- /* ../vuu-layout/src/toolbar/Toolbar.css */
860
- .vuuToolbar {
861
- --toolbar-height: var(--vuuToolbar-height, 36px);
862
- --toolbar-item-height: var(--vuuToolbarItem-height, 100%);
863
- --vuuOverflowContainer-background: var(--vuuToolbar-background);
864
- --vuuOverflowContainer-borderColor: var(--vuuToolbar-borderColor);
865
- --vuuOverflowContainer-borderStyle: var(--vuuToolbar-borderStyle);
866
- --vuuOverflowContainer-borderWidth: var(--vuuToolbar-borderWidth);
867
- height: var(--toolbar-height);
868
- }
869
- .vuuToolbar-alignCenter {
870
- --vuuOverflowContainer-justifyContent: center;
871
- }
872
- .vuuToolbar-alignEnd {
873
- --vuuOverflowContainer-justifyContent: flex-end;
874
- }
875
- .vuuToolbarItem {
876
- height: var(--toolbar-item-height);
877
- }
878
- .vuuToolbar-withSeparators .vuuOverflowContainer-item:not(:first-child):before {
879
- content: "";
880
- position: absolute;
881
- left: calc(-1 * var(--overflow-item-gap));
882
- top: calc((var(--toolbar-height) - var(--toolbar-item-height)) /2);
883
- width: 1px;
884
- height: var(--toolbar-item-height);
885
- background-color: var(--vuu-color-gray-05);
886
- }
887
- .vuuToolbarItem.vuuFocusVisible {
888
- outline-color: var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));
889
- outline-style: dashed;
890
- outline-width: 1px;
891
- outline-offset: 0px;
892
- }
893
- .vuuPopupMenu:focus,
894
- .vuuToolbarItem:focus,
895
- .vuuToolbarItem:focus-visible {
896
- outline-color: var(--vuuToolbarItem-outlineColor, var(--vuu-color-purple-10));
897
- outline-style: dashed;
898
- outline-width: 1px;
899
- outline-offset: 0px;
900
- }
901
-
902
- /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
903
- [data-design-mode=true] .Component {
904
- filter: grayscale(100%);
905
- opacity: 0.4;
906
- }
907
- [data-design-mode=true] .Component:after {
908
- color: black;
909
- content: "Component";
910
- height: 12px;
911
- background-color: yellow;
912
- }
913
- .LayoutConfigurator {
914
- --margin-color: #f3cea5;
915
- --border-color: #fddda0;
916
- --padding-color: #c6d092;
917
- --content-color: #8cb6c0;
918
- display: flex;
919
- flex-direction: column;
920
- align-items: stretch;
921
- background-color: var(--margin-color);
922
- }
923
- .LayoutConfigurator .layout-outer {
924
- flex: 1 1 auto;
925
- display: flex;
926
- flex-direction: column;
927
- align-items: stretch;
928
- }
929
- .LayoutBox {
930
- --hw-control-font-size: 13px;
931
- --hw-text-input-bg: rgba(255, 255, 255, 0.3);
932
- --hwTextInput-padding: 3px;
933
- --hw-text-input-position: absolute;
934
- --hwTextInput-width: 30px;
935
- flex: 1 1 auto;
936
- }
937
- .LayoutBox > .layout-top {
938
- flex: 0 0 40px;
939
- padding-left: 12px;
940
- display: flex;
941
- flex-direction: row;
942
- align-items: center;
943
- position: relative;
944
- }
945
- .LayoutBox > .layout-bottom {
946
- flex: 0 0 40px;
947
- position: relative;
948
- display: flex;
949
- flex-direction: row;
950
- align-items: center;
951
- }
952
- .LayoutBox > .layout-inner > .layout-right,
953
- .LayoutBox > .layout-inner > .layout-left {
954
- flex: 0 0 40px;
955
- display: flex;
956
- flex-direction: column;
957
- justify-content: center;
958
- align-items: center;
959
- }
960
- .layout-top,
961
- .layout-bottom {
962
- --hw-text-input-margin: 0 0 0 -15px;
963
- }
964
- .layout-top > .layout-input,
965
- .layout-bottom > .layout-input {
966
- left: 50%;
967
- }
968
- .LayoutBox > .layout-inner {
969
- flex: 1 1 auto;
970
- display: flex;
971
- flex-direction: row;
972
- align-items: stretch;
973
- }
974
- .LayoutBox.layout-margin {
975
- background-color: var(--margin-color);
976
- border: dashed 2px black;
977
- }
978
- .LayoutBox.layout-border {
979
- background-color: var(--border-color);
980
- border: solid 2px black;
981
- }
982
- .LayoutBox.layout-padding {
983
- background-color: var(--padding-color);
984
- border: dashed 2px black;
985
- }
986
- .LayoutBox .layout-content {
987
- flex: 1 1 auto;
988
- background-color: var(--content-color);
989
- border: solid 2px #808080;
990
- }
991
- .LayoutBox .layout-title {
992
- color: #161616;
993
- font-size: 11px;
994
- left: 4px;
995
- line-height: 15px;
996
- position: absolute;
997
- top: 1px;
998
- }
999
-
1000
- /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
1001
- .hwLayoutTreeViewer {
1002
- }
1003
- .hwLayoutTreeNode {
1004
- cursor: default;
1005
- }
1006
- .hwLayoutTreeNode:hover {
1007
- background-color: rgba(255, 255, 255, 0.2);
1008
- }
1009
- .hwLayoutTreeNode[aria-selected=true] {
1010
- background-color: cornflowerblue;
1011
- color: white;
1012
- }
1013
-
1014
- /* src/filter-builder-menu/FilterBuilderMenu.css */
1015
- .vuuFilterBuilderMenu {
1016
- margin: 0;
1017
- }
1018
- .vuuFilterBuilderMenu-trigger {
1019
- display: inline-block;
1020
- height: 26px;
1021
- width: 0px;
1022
- }
1023
- .vuuFilterBuilderMenuList {
1024
- --vuuList-borderStyle: none;
1025
- }
1026
- .vuuListItem:has(.vuuMenuButton) {
1027
- justify-content: center;
1028
- }
1029
- .vuuMenuButton {
1030
- background-color: white;
1031
- border: solid 1px var(--salt-actionable-primary-foreground);
1032
- border-radius: 6px;
1033
- color: var(--vuu-color-gray-50);
1034
- font-size: 9px;
1035
- padding: 1px 6px;
1036
- }
1037
-
1038
- /* src/filter-clause/ExpandoCombobox.css */
1039
- .vuuExpandoCombobox {
1040
- --expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);
1041
- --expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);
1042
- --saltInput-outline: none;
1043
- --saltInput-fontSize: var(--expando-combobox-fontSize);
1044
- --saltInput-height: var(--expando-combobox-height);
1045
- --saltInput-minWidth: 4px;
1046
- display: inline-flex;
1047
- flex-direction: column;
1048
- height: var(--expando-combobox-height);
1049
- min-width: 4px;
1050
- padding: 0;
1051
- }
1052
- .vuuExpandoCombobox .saltInput {
1053
- background-color: transparent;
1054
- position: absolute;
1055
- }
1056
- .vuuExpandoCombobox .vuuDropdown {
1057
- height: 100%;
1058
- }
1059
- .vuuExpandoCombobox-Input.saltInput {
1060
- border: none;
1061
- left: 0px;
1062
- margin: 0;
1063
- min-height: 100%;
1064
- padding: 0;
1065
- right: 0px;
1066
- width: auto;
1067
- }
1068
- .vuuExpandoCombobox .saltInput-input {
1069
- border: none;
1070
- box-sizing: content-box;
1071
- display: block;
1072
- flex: 1;
1073
- font: inherit;
1074
- margin: 0;
1075
- min-width: 0;
1076
- outline: none;
1077
- padding: 0;
1078
- }
1079
- .vuuExpandoCombobox:before {
1080
- content: attr(data-text);
1081
- display: block;
1082
- font-size: var(--expando-combobox-fontSize);
1083
- height: 0px;
1084
- overflow: hidden;
1085
- white-space: pre-wrap;
1086
- }
1087
-
1088
- /* src/filter-clause/FilterClauseEditor.css */
1089
- .vuuFilterClause {
1090
- --vuuExpandoInput-top: 0;
1091
- --vuuExpandoInput-height: 16px;
1092
- --vuuExpandoCombobox-height: 16px;
1093
- --saltButton-height: 16px;
1094
- --saltButton-width: 16px;
1095
- display: flex;
1096
- flex-direction: row;
1097
- width: fit-content;
1098
- border-color: var(--vuu-color-gray-45);
1099
- border-radius: 6px;
1100
- border-width: 1px;
1101
- border-style: solid;
1102
- background: #ffffff;
1103
- --salt-focused-outlineStyle: dotted;
1104
- }
1105
- .vuuFilterClause:focus-within {
1106
- border-color: var(--vuu-color-purple-10);
1107
- }
1108
- .vuu-density-high .vuuFilterClause {
1109
- padding: 4px 8px;
1110
- gap: 4px;
1111
- --salt-text-lineHeight: 12px;
1112
- --saltInputLegacy-fontSize: 12px;
1113
- --saltInputLegacy-minWidth: 12px;
1114
- }
1115
- .vuu-density-high .vuuFilterClause .saltInput {
1116
- padding: 0;
1117
- min-height: 16px;
1118
- height: 16px;
1119
- }
1120
- .vuuFilterClause .vuuExpandoCombobox {
1121
- flex-basis: auto;
1122
- flex-shrink: 0;
1123
- flex-grow: 0;
1124
- }
1125
- .vuuFilterClauseOperator-hidden {
1126
- display: none;
1127
- }
1128
- .vuuFilterClause :not(.vuuFilterClauseNumericValue) .saltInput {
1129
- }
1130
- .vuuFilterClause .saltInput-focused,
1131
- .vuuFilterClause .saltTokenizedInput-focused {
1132
- outline: none;
1133
- color: var(--salt-text-primary-foreground);
1134
- }
1135
- .vuuFilterClause .saltInput-input::selection {
1136
- color: #ffffff;
1137
- }
1138
- .vuu-theme .saltList {
1139
- --list-borderWidth: 1px;
1140
- --list-borderStyle: solid;
1141
- border-radius: 4px;
1142
- box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
1143
- }
1144
- .saltListItem[aria-selected=true]:not(.saltListItem-checkbox) {
1145
- --list-item-background: var(--list-item-background-active);
1146
- color: var(--list-item-text-color-active);
1147
- }
1148
- .saltTokenizedInput {
1149
- height: 16px;
1150
- min-height: 16px;
1151
- }
1152
- .saltTokenizedInput .saltInputPill {
1153
- --pill-fontSize: 12px;
1154
- --saltButton-borderStyle: none;
1155
- --pill-background: none;
1156
- height: 16px;
1157
- margin: 0;
1158
- }
1159
- .saltTokenizedInput-pillGroup {
1160
- padding: 0;
1161
- height: 16px;
1162
- }
1163
-
1164
- /* src/filter-pill-menu/FilterPillMenu.css */
1165
- .vuuFilterPillMenu {
1166
- top: -1px;
1167
- }
1168
-
1169
- /* src/filter-pill/FilterPill.css */
1170
- .vuuFilterPill {
1171
- align-items: center;
1172
- background: var(--salt-taggable-background);
1173
- border: solid 1px var(--salt-taggable-foreground);
1174
- border-radius: 24px;
1175
- color: var(--vuu-color-gray-50);
1176
- display: inline-flex;
1177
- max-width: var(--vuuFilterPill-maxWidth, 200px);
1178
- padding: 0 8px;
1179
- position: relative;
1180
- user-select: none;
1181
- outline: none;
1182
- }
1183
- .vuuFilterPill.vuuToolbarItem {
1184
- height: 24px;
1185
- }
1186
- .vuuFilterPill[aria-selected=true] {
1187
- --vuuPopupMenu-iconColor: white;
1188
- --salt-text-background-selected: var(--vuu-color-blue-40);
1189
- --salt-text-color-selected: var(--salt-text-primary-foreground);
1190
- --saltInput-background-hover: var(--salt-taggable-background-active);
1191
- --saltInput-color: var(--salt-taggable-foreground-active);
1192
- background: var(--salt-taggable-background-active);
1193
- color: white;
1194
- }
1195
- .vuuFilterPill:not([aria-selected=true]):hover {
1196
- --vuuPopupMenu-iconColor: var(--vuu-color-gray-80);
1197
- background-color: var(--salt-taggable-background-hover);
1198
- border-color: var(--salt-taggable-background-hover);
1199
- color: var(--vuu-color-gray-80);
1200
- }
1201
-
1202
- /* ../vuu-shell/src/login/LoginPanel.css */
1203
- .vuuLoginPanel {
1204
- --saltInput-paddingLeft: 8px;
1205
- --login-width: 856px;
1206
- --login-height: 550px;
1207
- --hwTextInput-border: solid 1px #ccc;
1208
- --hwTextInput-height: 28px;
1209
- --hwTextInput-padding: 0 12px;
1210
- --hwTextInput-width: 100%;
1211
- --login-row-height: 60px;
1212
- border-radius: 16px;
1213
- box-shadow: 0px 24px 44px 0px rgba(0, 0, 0, 0.25);
1214
- display: flex;
1215
- height: var(--login-height);
1216
- margin: 0 auto;
1217
- width: var(--login-width);
1218
- }
1219
- .vuuLoginPanel .saltInput-primary {
1220
- --saltInput-height: 36px;
1221
- }
1222
- .vuuLoginPanel-title {
1223
- justify-content: center;
1224
- font-size: 28px;
1225
- font-weight: 400;
1226
- display: flex;
1227
- }
1228
- .vuuLoginPanel-branding {
1229
- align-items: center;
1230
- background-color: var(--vuu-color-purple-50);
1231
- border-radius: 16px 0 0 16px;
1232
- display: flex;
1233
- flex: 0 0 368px;
1234
- flex-direction: column;
1235
- gap: 40px;
1236
- justify-content: center;
1237
- padding: 40px 100px;
1238
- }
1239
- .vuuLoginPanel-form {
1240
- background-color: white;
1241
- border-radius: 0 16px 16px 0px;
1242
- display: flex;
1243
- flex: 1 1 auto;
1244
- flex-direction: column;
1245
- gap: 32px;
1246
- justify-content: center;
1247
- padding: 0 40px;
1248
- }
1249
- .vuuLoginPanel-password {
1250
- --vuu-icon-size: 16px;
1251
- }
1252
- .vuuLoginPanel-appName {
1253
- color: white;
1254
- font-size: 18px;
1255
- font-weight: 700;
1256
- text-transform: uppercase;
1257
- }
1258
- .vuuLoginPanel-login {
1259
- --saltButton-height: 36px;
1260
- --saltButton-borderRadius: 6px;
1261
- width: 100%;
1262
- }
1263
-
1264
- /* ../vuu-shell/src/app-header/AppHeader.css */
1265
- .vuuAppHeader {
1266
- --saltButton-borderRadius: 6px;
1267
- --saltButton-text-color: var(--vuu-color-gray-50);
1268
- --saltButton-padding: 12px;
1269
- --vuuToolbarItem-height: 26px;
1270
- --vuuOverflowContainer-gap: 8px;
1271
- --vuu-icon-color: var(--vuu-color-gray-45);
1272
- --vuu-icon-size: 16px;
1273
- --vuuToolbar-background: var(--vuuAppHeader-background, var(--vuu-color-gray-28));
1274
- --vuuToolbar-borderWidth: 1px;
1275
- --vuuToolbar-borderStyle: solid;
1276
- --vuuToolbar-borderColor: var(--vuu-color-gray-30);
1277
- align-items: center;
1278
- display: flex;
1279
- justify-content: flex-end;
1280
- }
1281
- .vuu-theme .vuuAppHeader {
1282
- border-radius: 8px;
1283
- margin-bottom: 8px;
1284
- }
1285
-
1286
- /* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
1287
- .vuuStatus-container {
1288
- display: flex;
1289
- }
1290
- .vuuStatus-text {
1291
- align-self: center;
1292
- }
1293
- .vuuStatus {
1294
- --vuu-icon-height: 18px;
1295
- --vuu-icon-padding: var(--vuuStatus-padding, 6px);
1296
- --vuu-icon-width: var(--vuuStatus-width, auto);
1297
- --vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
1298
- align-items: center;
1299
- display: inline-flex;
1300
- height: var(--vuu-icon-height);
1301
- justify-content: center;
1302
- min-width: var(--vuu-icon-min-width);
1303
- padding: 0 var(--vuu-icon-padding);
1304
- width: var(--vuu-icon-width);
1305
- position: relative;
1306
- }
1307
- .vuuStatus[data-icon]::after {
1308
- top: 0;
1309
- right: 0;
1310
- bottom: 0;
1311
- left: 0;
1312
- content: "";
1313
- box-shadow: 0 0 0 0 black;
1314
- position: absolute;
1315
- mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
1316
- -webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
1317
- }
1318
- .vuuActiveStatus::after {
1319
- --vuu-icon-svg: var(--svg-active-status);
1320
- background-color: rgb(0, 255, 0);
1321
- }
1322
- .vuuConnectingStatus::after {
1323
- --vuu-icon-svg: var(--svg-connecting-status);
1324
- background-color: orange;
1325
- transform: scale(1);
1326
- animation: infinite pulse 1s;
1327
- }
1328
- .vuuDisconnectedStatus::after {
1329
- --vuu-icon-svg: var(--svg-disconnected-status);
1330
- background-color: red;
1331
- transform: scale(1);
1332
- animation: infinite pulse 0.5s;
1333
- }
1334
- @keyframes pulse {
1335
- 0% {
1336
- transform: scale(0.95);
1337
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
1338
- }
1339
- 70% {
1340
- transform: scale(1);
1341
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
1342
- }
1343
- 100% {
1344
- transform: scale(0.95);
1345
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
1346
- }
1347
- }
1348
-
1349
- /* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
1350
- .saveLayoutPanel {
1351
- --salt-selectable-foreground-hover: #6d18bdc3;
1352
- --salt-selectable-foreground-selected: #6D18BD;
1353
- --salt-selectable-borderColor-selected: #6D18BD;
1354
- --saltInputLegacy-fontSize: 12px;
1355
- --salt-text-label-fontSize: 10px;
1356
- --saltFormFieldLegacy-label-paddingLeft: 0;
1357
- --saltFormField-label-fontWeight: 400;
1358
- --saltText-color: var(--text-secondary-foreground, #606477);
1359
- }
1360
- .spinner {
1361
- width: 100px;
1362
- height: 100px;
1363
- background-image: var(--svg-spinner);
1364
- }
1365
- .saveLayoutPanel-panelContainer {
1366
- display: flex;
1367
- flex-direction: column;
1368
- align-items: flex-start;
1369
- }
1370
- .saveLayoutPanel-panelContent {
1371
- display: flex;
1372
- align-items: flex-start;
1373
- gap: 32px;
1374
- }
1375
- .saveLayoutPanel-formContainer {
1376
- display: flex;
1377
- width: 217px;
1378
- flex-direction: column;
1379
- align-items: flex-start;
1380
- gap: 16px;
1381
- }
1382
- .saveLayoutPanel-formField {
1383
- display: flex;
1384
- flex-direction: column;
1385
- gap: 1px;
1386
- }
1387
- .saveLayoutPanel-inputText {
1388
- border: none;
1389
- color: var(--light-text-primary, #15171B);
1390
- font-family: Nunito Sans A-Variant, serif;
1391
- font-feature-settings:
1392
- "ss02" on,
1393
- "ss01" on,
1394
- "salt" on,
1395
- "liga" off;
1396
- font-size: 12px;
1397
- font-weight: 400;
1398
- line-height: 16px;
1399
- padding-left: 4px;
1400
- width: 100%;
1401
- outline: none;
1402
- }
1403
- .saveLayoutPanel-settingsGroup {
1404
- display: flex;
1405
- flex-wrap: wrap;
1406
- align-items: flex-end;
1407
- gap: 10px;
1408
- width: 100%;
1409
- line-height: 16px;
1410
- }
1411
- .saveLayoutPanel-screenshotContainer {
1412
- display: flex;
1413
- width: 304px;
1414
- height: 208px;
1415
- padding: 11px 15.5px;
1416
- justify-content: center;
1417
- align-items: center;
1418
- border: 1px solid #E8E8E8;
1419
- background: var(--dark-text-primary, #FFF);
1420
- }
1421
- .saveLayoutPanel-screenshot {
1422
- background: lightgray 50% / cover no-repeat;
1423
- width: 273px;
1424
- height: 186px;
1425
- }
1426
- .saveLayoutPanel-buttonsContainer {
1427
- display: flex;
1428
- justify-content: flex-end;
1429
- align-items: flex-start;
1430
- align-self: stretch;
1431
- padding-top: 24px;
1432
- gap: 8px;
1433
- }
1434
- .saveLayoutPanel-cancelButton,
1435
- .saveLayoutPanel-saveButton {
1436
- display: flex;
1437
- height: fit-content;
1438
- padding: 4px 8px;
1439
- align-items: flex-start;
1440
- gap: 8px;
1441
- border-radius: 6px;
1442
- font-size: 12px;
1443
- font-style: normal;
1444
- font-weight: 700;
1445
- line-height: 133.333%;
1446
- letter-spacing: 0.48px;
1447
- text-transform: uppercase;
1448
- }
1449
- .saveLayoutPanel-cancelButton {
1450
- color: var(--actionable-primary-foreground-default, #606477);
1451
- background: var(--actionable-primary-background-default, #FFF);
1452
- }
1453
- .saveLayoutPanel-saveButton {
1454
- background: #6D18BD;
1455
- border-color: #6D18BD;
1456
- color: white;
1457
- }
1458
- .saveLayoutPanel-saveButton.saltButton:disabled {
1459
- background: #6D18BD;
1460
- border-color: #6D18BD;
1461
- color: white;
1462
- opacity: 0.3;
1463
- }
1464
- .saveLayoutPanel-saveButton.saltButton:hover {
1465
- background: #F37880;
1466
- border-color: #F37880;
1467
- color: white;
1468
- }
1469
-
1470
- /* ../vuu-shell/src/layout-management/LayoutTile.css */
1471
- .vuuLayoutTile-layoutTile {
1472
- display: flex;
1473
- align-items: center;
1474
- gap: 8px;
1475
- padding: 8px 0px;
1476
- flex: 1 1 auto;
1477
- cursor: pointer;
1478
- }
1479
- .vuuLayoutTile-layoutName {
1480
- color: var(--light-text-primary, #15171B);
1481
- font-weight: 600;
1482
- line-height: 133.333%;
1483
- text-transform: capitalize;
1484
- }
1485
- .vuuLayoutTile-screenshot {
1486
- width: 60px;
1487
- height: 45.6px;
1488
- border: 1px solid #D6D7DA;
1489
- }
1490
- .vuuLayoutTile-layoutDetails {
1491
- color: var(--light-text-secondary, #606477);
1492
- font-size: 10px;
1493
- font-weight: 600;
1494
- line-height: 150%;
1495
- }
1496
-
1497
- /* ../vuu-shell/src/layout-management/LayoutList.css */
1498
- .vuuLayoutList {
1499
- --vuuLayoutList-width: 90%;
1500
- --vuuMeasuredContainer-flex: 1 1 1px;
1501
- align-self: stretch;
1502
- display: flex;
1503
- flex-direction: column;
1504
- height: 100%;
1505
- overflow: hidden;
1506
- padding-right: 6px;
1507
- }
1508
- .vuuLayoutList ::-webkit-scrollbar {
1509
- width: 4px;
1510
- height: 4px;
1511
- }
1512
- .vuuLayoutList ::-webkit-scrollbar-track {
1513
- background: transparent;
1514
- margin-top: 15px;
1515
- margin-bottom: 15px;
1516
- }
1517
- .vuuLayoutList ::-webkit-scrollbar-thumb {
1518
- border-radius: 4px;
1519
- background: #D9D9D9;
1520
- }
1521
- .vuuLayoutList-header {
1522
- display: flex;
1523
- flex: 0 0 47px;
1524
- width: var(--vuuLayoutList-width);
1525
- padding: 16px 0;
1526
- border-bottom: 1px solid rgba(119, 124, 148, 0.10);
1527
- color: var(--light-text-primary, #15171B);
1528
- font-weight: 700;
1529
- letter-spacing: 0.48px;
1530
- line-height: 200%;
1531
- text-transform: uppercase;
1532
- }
1533
- .vuuLayoutList-groupName {
1534
- display: flex;
1535
- padding-top: 24px;
1536
- width: var(--vuuLayoutList-width);
1537
- color: var(--light-text-secondary, #606477);
1538
- font-feature-settings:
1539
- "ss02" on,
1540
- "ss01" on,
1541
- "salt" on,
1542
- "liga" off;
1543
- font-family: Nunito Sans;
1544
- font-size: 12px;
1545
- font-style: normal;
1546
- font-weight: 700;
1547
- line-height: 200%;
1548
- letter-spacing: 0.48px;
1549
- text-transform: uppercase;
1550
- }
1551
- .vuuLayoutList-layoutContainer {
1552
- display: flex;
1553
- align-items: center;
1554
- width: 90%;
1555
- height: auto;
1556
- gap: 8px;
1557
- padding: 8px 0;
1558
- flex: 1 1 auto;
1559
- cursor: pointer;
1560
- }
1561
- .vuuLayoutList-layoutName {
1562
- color: var(--light-text-primary, #15171B);
1563
- font-weight: 600;
1564
- line-height: 133.333%;
1565
- text-transform: capitalize;
1566
- }
1567
- .vuuLayoutList-screenshot {
1568
- width: 60px;
1569
- height: 45.6px;
1570
- border: 1px solid #D6D7DA;
1571
- }
1572
- .vuuLayoutList-layoutDetails {
1573
- color: var(--light-text-secondary, #606477);
1574
- font-size: 10px;
1575
- font-weight: 600;
1576
- line-height: 150%;
1577
- }
1578
-
1579
- /* ../vuu-shell/src/feature-list/FeatureList.css */
1580
- .vuuFeatureList {
1581
- background: var(--vuuFeatureList-background, var(--salt-container-primary-background));
1582
- display: flex;
1583
- flex-direction: column;
1584
- height: 100%;
1585
- padding: 195px 32px 16px 24px;
1586
- }
1587
- .vuuFeatureList-header {
1588
- flex: 0 0 40px;
1589
- font-size: 12px;
1590
- font-weight: 700;
1591
- line-height: 2;
1592
- }
1593
- .vuuFeatureList-content {
1594
- flex: 1 1 auto;
1595
- font-size: 12px;
1596
- font-weight: 700;
1597
- }
1598
-
1599
- /* ../vuu-shell/src/left-nav/LeftNav.css */
1600
- .vuuLeftNav {
1601
- --salt-navigable-fontWeight-active: 700;
1602
- --vuuTab-background-selected: rgba(255, 255, 255, 0.10);
1603
- --vuuTab-hover-background: rgba(255, 255, 255, 0.10);
1604
- --vuuTab-before-content: none;
1605
- --vuuTab-borderRadius: 6px;
1606
- --vuuTab-height: 40px;
1607
- --vuuTab-padding: 0 0 0 48px;
1608
- --vuuTabstrip-fontWeight: 700;
1609
- --vuuTabstrip-width: 100%;
1610
- --svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');
1611
- --svg-features: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');
1612
- --svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');
1613
- --svg-layouts: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 10H14V11.3333H15.3333V10ZM15.3333 12.6667H14V14H15.3333V12.6667ZM15.3333 7.33333H14V8.66667H15.3333V7.33333ZM10 2H8.66667V3.33333H10V2ZM15.3333 4.66667H14V6H15.3333V4.66667ZM0.666672 14H7.33334V10H0.666672V14ZM2.00001 4.66667H0.666672V6H2.00001V4.66667ZM10 12.6667H8.66667V14H10V12.6667ZM12.6667 2H11.3333V3.33333H12.6667V2ZM15.3333 2H14V3.33333H15.3333V2ZM12.6667 12.6667H11.3333V14H12.6667V12.6667ZM2.00001 7.33333H0.666672V8.66667H2.00001V7.33333ZM7.33334 2H6.00001V3.33333H7.33334V2ZM4.66667 2H3.33334V3.33333H4.66667V2ZM2.00001 2H0.666672V3.33333H2.00001V2Z"/></svg>');
1614
- --vuu-light-text-primary: #15171b;
1615
- --menu-level-2-width: 0px;
1616
- box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.15);
1617
- display: flex;
1618
- height: calc(100% - 4px);
1619
- margin-bottom: 4px;
1620
- overflow: hidden;
1621
- position: relative;
1622
- transition: width .2s ease-out;
1623
- z-index: 0;
1624
- }
1625
- .vuuLeftNav-menu-full {
1626
- --menu-width: var(--nav-menu-expanded-width);
1627
- }
1628
- .vuuLeftNav-menu-icons {
1629
- --menu-width: var(--nav-menu-collapsed-width);
1630
- }
1631
- .vuuLeftNav-menu-icons-content {
1632
- --menu-width: var(--nav-menu-collapsed-width);
1633
- --menu-level-2-width: var(--nav-menu-content-width);
1634
- }
1635
- .vuuLeftNav-menu-full-content {
1636
- --menu-width: var(--nav-menu-expanded-width);
1637
- --menu-level-2-width: var(--nav-menu-content-width);
1638
- }
1639
- .vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,
1640
- .vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary {
1641
- display: flex;
1642
- }
1643
- .vuuLeftNav-menu-primary {
1644
- background-color: #2A015F;
1645
- container-type: inline-size;
1646
- display: flex;
1647
- flex-direction: column;
1648
- height: 100%;
1649
- padding: 32px 16px;
1650
- transition: flex-basis ease-out .2s;
1651
- flex-grow: 0;
1652
- flex-shrink: 0;
1653
- flex-basis: var(--menu-width);
1654
- }
1655
- .vuuLeftNav-menu-secondary {
1656
- flex: 1 1 auto;
1657
- display: none;
1658
- top: 0;
1659
- right: 0;
1660
- flex-grow: 0;
1661
- flex-shrink: 0;
1662
- flex-basis: var(--nav-menu-content-width, 240px);
1663
- z-index: -1;
1664
- }
1665
- .vuuLeftNav .vuuTabstrip {
1666
- margin-top: 102px;
1667
- }
1668
- .vuuLeftNav .vuuTab {
1669
- --vuuTab-focusVisible-color: pink;
1670
- --vuu-icon-color: white;
1671
- --vuu-icon-left: 12px;
1672
- --vuu-icon-size: 16px;
1673
- border-left: solid 4px transparent;
1674
- }
1675
- .vuuLeftNav .vuuTab-selected {
1676
- --vuu-icon-color: var(--salt-navigable-indicator-active);
1677
- border-left: solid 4px var(--salt-navigable-indicator-active);
1678
- }
1679
- .vuuLeftNav-logo {
1680
- display: flex;
1681
- flex: 0 0 auto;
1682
- justify-content: center;
1683
- }
1684
- .vuuLeftNav-main {
1685
- flex: 1 1 auto;
1686
- }
1687
- .vuuLeftNav-menu {
1688
- color: white;
1689
- margin-top: 102px;
1690
- padding: 0;
1691
- }
1692
- .vuuLeftNav [data-icon=demo] {
1693
- --vuu-icon-svg: var(--svg-demo);
1694
- }
1695
- .vuuLeftNav [data-icon=tables] {
1696
- --vuu-icon-svg: var(--svg-tables);
1697
- }
1698
- .vuuLeftNav [data-icon=features] {
1699
- --vuu-icon-svg: var(--svg-features);
1700
- }
1701
- .vuuLeftNav [data-icon=layouts] {
1702
- --vuu-icon-svg: var(--svg-layouts);
1703
- }
1704
- @container (max-width: 100px) {
1705
- .vuuTab {
1706
- --vuuTab-padding: 0 0 0 42px;
1707
- }
1708
- .vuuTab-main {
1709
- display: none !important;
1710
- }
1711
- }
1712
- .vuuLeftNav-buttonBar {
1713
- align-items: center;
1714
- display: flex;
1715
- flex: 0 0 100px;
1716
- justify-content: center;
1717
- }
1718
- .vuuLeftNav-toggleButton {
1719
- --vuu-icon-color: var(--vuu-light-text-primary);
1720
- --vuu-icon-left: 11px;
1721
- --vuu-icon-top: 10px;
1722
- --vuu-icon-size: 16px;
1723
- background-color: var(--salt-navigable-indicator-active);
1724
- border-width: 0;
1725
- border-radius: 18px;
1726
- height: 36px;
1727
- position: relative;
1728
- width: 36px;
1729
- }
1730
- .vuuLeftNav-toggleButton-open {
1731
- --vuu-icon-left: 9px;
1732
- }
1733
- .vuuLeftNav-drawer {
1734
- display: flex;
1735
- padding: 0 0 0 24px;
1736
- flex-direction: column;
1737
- align-items: flex-start;
1738
- flex-shrink: 0;
1739
- align-self: stretch;
1740
- background: #FFF;
1741
- box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.15);
1742
- height: 100%;
1743
- }
1744
-
1745
- /* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
1746
- .vuuSessionEditingForm {
1747
- display: flex;
1748
- flex-direction: column;
1749
- gap: 3px;
1750
- min-width: 400px;
1751
- padding: 6px;
1752
- }
1753
- .vuuSessionEditingForm-content {
1754
- display: flex;
1755
- flex-direction: column;
1756
- flex: 1 1 auto;
1757
- gap: 3px;
1758
- overflow: auto;
1759
- }
1760
- .vuuSessionEditingForm-field {
1761
- align-items: center;
1762
- display: flex;
1763
- height: 32px;
1764
- }
1765
- .vuuSessionEditingForm-fieldLabel {
1766
- flex: 0 0 50%;
1767
- }
1768
- .vuuSessionEditingForm-fieldValue {
1769
- max-width: 50%;
1770
- }
1771
- .vuuSessionEditingForm-fieldValue.vuuReadOnly {
1772
- font-weight: var(--salt-text-label-fontWeight-strong);
1773
- }
1774
- .vuuSessionEditingForm-buttonbar {
1775
- align-items: center;
1776
- border-top: solid 1px var(--salt-container-primary-borderColor);
1777
- display: flex;
1778
- justify-content: flex-end;
1779
- flex: 0 0 autox;
1780
- gap: 6px;
1781
- padding-top: 6px;
1782
- }
1783
- .vuuSessionEditingForm-errorBanner {
1784
- --vuu-icon-left: 3px;
1785
- --vuu-icon-size: 18px;
1786
- --vuu-icon-top: 3px;
1787
- border: solid 1px var(--salt-status-error-borderColor);
1788
- line-height: 24px;
1789
- padding: 0 6px 0 26px;
1790
- position: relative;
1791
- }
1792
-
1793
- /* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
1794
- .vuuContextPanel {
1795
- position: relative;
1796
- transition: width .3s ease-in-out;
1797
- width: var(--vuu-side-panel-width, 0px) !important;
1798
- z-index: 1;
1799
- }
1800
- .vuuContextPanel-expanded {
1801
- --vuu-side-panel-width: 300px !important;
1802
- --vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
1803
- --vuu-side-panel-padding: 24px;
1804
- }
1805
- .vuuContextPanel-overlay {
1806
- width: 0px !important;
1807
- }
1808
- .vuuContextPanel-inner {
1809
- background-color: var(--salt-container-primary-background);
1810
- box-shadow: var(--vuu-side-panel-shadow, none);
1811
- display: flex;
1812
- flex-direction: column;
1813
- height: 100%;
1814
- min-width: 0 !important;
1815
- overflow: auto;
1816
- padding-bottom: 24px;
1817
- padding-top: 24px;
1818
- padding-left: var(--vuu-side-panel-padding, 0);
1819
- padding-right: var(--vuu-side-panel-padding, 0);
1820
- position: absolute !important;
1821
- right: 0;
1822
- top: 0;
1823
- transition-property:
1824
- padding-left,
1825
- padding-right,
1826
- width;
1827
- transition-duration: .3s;
1828
- transition-timing-function: ease-in-out;
1829
- width: var(--vuu-side-panel-width, 0px);
1830
- }
1831
- .vuuContextPanel-header {
1832
- align-items: center;
1833
- display: flex;
1834
- flex-wrap: nowrap;
1835
- flex: 0 0 27px !important;
1836
- justify-content: space-between;
1837
- }
1838
- .vuuContextPanel-title {
1839
- font-size: 20px;
1840
- font-weight: 700;
1841
- white-space: nowrap;
1842
- }
1843
- .vuuContextPanel-content {
1844
- flex: 1 1 auto;
1845
- width: 100%;
1846
- }
1847
-
1848
- /* ../vuu-shell/src/shell-layouts/side-panel/SidePanel.css */
1849
- .vuuShellSidePanel {
1850
- transition: width .2s ease-out;
1851
- width: var(--shell-left-nav-size);
1852
- }
1853
-
1854
- /* ../vuu-shell/src/shell.css */
1855
- .vuuShell {
1856
- background-color: var(--vuu-color-gray-25);
1857
- height: var(--vuuShell-height, 100vh);
1858
- width: var(--vuuShell-width, 100vw);
1859
- }
1860
- .vuuShell-mainTabs {
1861
- background: var(--salt-container-primary-background);
1862
- }
1863
- .vuuShell-palette {
1864
- --vuuView-border: none;
1865
- --vuuView-margin: 0;
1866
- }
1867
- .vuuShell-warningPlaceholder {
1868
- background-color: var(--salt-container-background-high);
1869
- height: 100%;
1870
- }
1871
- .vuuToolbarProxy {
1872
- background: var(--salt-container-primary-background);
1873
- }
1874
- .vuuShell-mainTabs > .vuuTabstrip > .vuuOverflowContainer-wrapContainer {
1875
- background: var(--vuu-color-gray-25);
1876
- }
1877
- .vuuShell-mainTabs {
1878
- --vuuTab-height: 28px;
1879
- border: solid 1px #D6D7DA;
1880
- border-top: none !important;
1881
- border-radius: 6px;
1882
- height: 100%;
1883
- padding: 36px 8px 8px 8px;
1884
- position: relative;
1885
- width: 100%;
1886
- }
1887
- .vuuShell-mainTabs > .vuuTabstrip {
1888
- --vuuTabstrip-height: 28px;
1889
- --saltTabs-tabstrip-height: 29px;
1890
- --tabstrip-height: 29px;
1891
- left: -1px;
1892
- padding-bottom: 7px;
1893
- position: absolute !important;
1894
- right: 1px;
1895
- top: 0;
1896
- width: calc(100% + 2px) !important;
1897
- }
1898
- .vuuShell-mainTabs > .vuuTabHeader {
1899
- border-bottom: none;
1900
- }
1901
- .vuuShell-mainTabs > .vuuTabstrip:before {
1902
- background-color: transparent;
1903
- border-radius: 0 6px 0 0;
1904
- border-left: solid 1px #D6D7DA;
1905
- border-right: solid 1px #D6D7DA;
1906
- border-top: solid 1px #D6D7DA;
1907
- content: "";
1908
- position: absolute;
1909
- bottom: 0;
1910
- left: 0;
1911
- right: 0;
1912
- height: 8px;
1913
- z-index: 1;
1914
- }
1915
- .vuuTab.MainTab {
1916
- --vuuTabMenu-top: -1px;
1917
- background-color: #F1F2F4;
1918
- border-color: #D6D7DA;
1919
- border-radius: 6px 6px 0 0;
1920
- border-width: 1px;
1921
- border-style: solid;
1922
- position: relative;
1923
- }
1924
- .MainTab.vuuTab-selected {
1925
- background-color: white;
1926
- border-bottom-color: white;
1927
- z-index: 1;
1928
- }
1929
- .MainTab.vuuTab-selected:before {
1930
- background-color: #6d188b;
1931
- content: "";
1932
- position: absolute;
1933
- height: 100%;
1934
- left: 0;
1935
- top: 0;
1936
- border-radius: 6px 0 0 0;
1937
- width: 6px;
1938
- }
1939
- .MainTab.vuuTab:hover:before {
1940
- background-color: #F37880;
1941
- content: "";
1942
- position: absolute;
1943
- height: 100%;
1944
- left: 0;
1945
- top: 0;
1946
- border-radius: 6px 0 0 0;
1947
- width: 6px;
1948
- }
1949
- .vuuTab.MainTab .vuuTab-main {
1950
- background-color: transparent;
1951
- font-weight: 700;
1952
- height: 29px;
1953
- padding: 0 24px;
1954
- }
1955
-
1956
- /* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
1957
- .vuuThemeSwitch {
1958
- --saltButton-minWidth: 22px;
1959
- --svg-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 31q2.9 0 4.95-2.05Q31 26.9 31 24q0-2.9-2.05-4.95Q26.9 17 24 17q-2.9 0-4.95 2.05Q17 21.1 17 24q0 2.9 2.05 4.95Q21.1 31 24 31Zm0 3q-4.15 0-7.075-2.925T14 24q0-4.15 2.925-7.075T24 14q4.15 0 7.075 2.925T34 24q0 4.15-2.925 7.075T24 34ZM3.5 25.5q-.65 0-1.075-.425Q2 24.65 2 24q0-.65.425-1.075Q2.85 22.5 3.5 22.5h5q.65 0 1.075.425Q10 23.35 10 24q0 .65-.425 1.075-.425.425-1.075.425Zm36 0q-.65 0-1.075-.425Q38 24.65 38 24q0-.65.425-1.075.425-.425 1.075-.425h5q.65 0 1.075.425Q46 23.35 46 24q0 .65-.425 1.075-.425.425-1.075.425ZM24 10q-.65 0-1.075-.425Q22.5 9.15 22.5 8.5v-5q0-.65.425-1.075Q23.35 2 24 2q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 10 24 10Zm0 36q-.65 0-1.075-.425-.425-.425-.425-1.075v-5q0-.65.425-1.075Q23.35 38 24 38q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 46 24 46ZM12 14.1l-2.85-2.8q-.45-.45-.425-1.075.025-.625.425-1.075.45-.45 1.075-.45t1.075.45L14.1 12q.4.45.4 1.05 0 .6-.4 1-.4.45-1.025.45-.625 0-1.075-.4Zm24.7 24.75L33.9 36q-.4-.45-.4-1.075t.45-1.025q.4-.45 1-.45t1.05.45l2.85 2.8q.45.45.425 1.075-.025.625-.425 1.075-.45.45-1.075.45t-1.075-.45ZM33.9 14.1q-.45-.45-.45-1.05 0-.6.45-1.05l2.8-2.85q.45-.45 1.075-.425.625.025 1.075.425.45.45.45 1.075t-.45 1.075L36 14.1q-.4.4-1.025.4-.625 0-1.075-.4ZM9.15 38.85q-.45-.45-.45-1.075t.45-1.075L12 33.9q.45-.45 1.05-.45.6 0 1.05.45.45.45.45 1.05 0 .6-.45 1.05l-2.8 2.85q-.45.45-1.075.425-.625-.025-1.075-.425ZM24 24Z"/></svg>');
1960
- --svg-dark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 42q-7.5 0-12.75-5.25T6 24q0-7.5 5.25-12.75T24 6q.4 0 .85.025.45.025 1.15.075-1.8 1.6-2.8 3.95-1 2.35-1 4.95 0 4.5 3.15 7.65Q28.5 25.8 33 25.8q2.6 0 4.95-.925T41.9 22.3q.05.6.075.975Q42 23.65 42 24q0 7.5-5.25 12.75T24 42Zm0-3q5.45 0 9.5-3.375t5.05-7.925q-1.25.55-2.675.825Q34.45 28.8 33 28.8q-5.75 0-9.775-4.025T19.2 15q0-1.2.25-2.575.25-1.375.9-3.125-4.9 1.35-8.125 5.475Q9 18.9 9 24q0 6.25 4.375 10.625T24 39Zm-.2-14.85Z"/></svg>');
1961
- padding: 2px;
1962
- }
1963
- .salt-density-high .vuuThemeSwitch {
1964
- --saltButton-minWidth: 16px;
1965
- --saltButton-width: 18px;
1966
- --vuuThemeSwitch-iconSize: 16px;
1967
- }
1968
- .vuuThemeSwitch [data-icon] {
1969
- --vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
1970
- }
1971
- .vuuThemeSwitch [data-icon=light] {
1972
- --vuu-icon-svg: var(--svg-light);
1973
- }
1974
- .vuuThemeSwitch [data-icon=dark] {
1975
- --vuu-icon-svg: var(--svg-dark);
1976
- }
1977
- .vuuThemeSwitch .saltToggleButton {
1978
- height: 20px;
1979
- width: 20px;
1980
- }
1981
-
1982
- /* src/filter-bar/FilterBar.css */
1983
- .vuuFilterBar {
1984
- --vuu-svg-tune: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18C3 18.55 3.45 19 4 19H9V17H4C3.45 17 3 17.45 3 18ZM3 6C3 6.55 3.45 7 4 7H13V5H4C3.45 5 3 5.45 3 6ZM13 20V19H20C20.55 19 21 18.55 21 18C21 17.45 20.55 17 20 17H13V16C13 15.45 12.55 15 12 15C11.45 15 11 15.45 11 16V20C11 20.55 11.45 21 12 21C12.55 21 13 20.55 13 20ZM7 10V11H4C3.45 11 3 11.45 3 12C3 12.55 3.45 13 4 13H7V14C7 14.55 7.45 15 8 15C8.55 15 9 14.55 9 14V10C9 9.45 8.55 9 8 9C7.45 9 7 9.45 7 10ZM21 12C21 11.45 20.55 11 20 11H11V13H20C20.55 13 21 12.55 21 12ZM16 9C16.55 9 17 8.55 17 8V7H20C20.55 7 21 6.55 21 6C21 5.45 20.55 5 20 5H17V4C17 3.45 16.55 3 16 3C15.45 3 15 3.45 15 4V8C15 8.55 15.45 9 16 9Z" /></svg>');
1985
- --vuuToolbar-height: 28px;
1986
- --salt-container-primary-borderColor: var(--vuu-color-purple-10);
1987
- --vuuOverflowContainer-minWidth: 0;
1988
- --saltButton-height: 26px;
1989
- --saltButton-width: 26px;
1990
- align-items: center;
1991
- background-color: var(--salt-container-secondary-background);
1992
- border-bottom: solid 1px #D6D7DA;
1993
- display: flex;
1994
- flex: var(--vuuFilterBar-flex);
1995
- gap: 4px;
1996
- height: 33px;
1997
- padding: 0px 8px;
1998
- }
1999
- .vuuFilterbar-icon {
2000
- display: inline-block;
2001
- height: 16px;
2002
- width: 16px;
2003
- }
2004
- .vuuFilterBar [data-icon=tune] {
2005
- --vuu-icon-size: 16px;
2006
- --vuu-icon-svg: var(--vuu-svg-tune);
2007
- }
2008
- .vuuFilterBar [data-icon=plus] {
2009
- --vuu-icon-size: 16px;
2010
- }
2011
- .vuuFilterBar .vuuToolbar {
2012
- flex: 0 1 auto;
2013
- }
2014
-
2015
- /* src/filter-input/FilterInput.css */
2016
- .salt-theme {
2017
- --vuuFilterEditor-lineHeight: 28px;
2018
- }
2019
- .salt-density-high {
2020
- --vuuFilterEditor-buttonWidth: 20px;
2021
- --vuuFilterEditor-height: 22px;
2022
- --vuuFilterEditor-lineHeight: 20px;
2023
- }
2024
- .vuuFilterInput {
2025
- --vuuFilterEditor-background: var(--salt-container-primary-background);
2026
- --vuuFilterEditor-color: var(--salt-text-primary-foreground);
2027
- --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
2028
- --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
2029
- --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
2030
- --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
2031
- --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
2032
- --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
2033
- --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
2034
- --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
2035
- --vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);
2036
- --vuuFilterEditor-suggestion-height: 24px;
2037
- --vuuFilterEditor-variableColor: var(--vuu-color_purple-10);
2038
- align-items: center;
2039
- border-color: var(--salt-container-secondary-borderColor);
2040
- border-style: solid none;
2041
- border-width: 1px;
2042
- box-sizing: border-box;
2043
- display: flex;
2044
- height: var(--vuuFilterEditor-height, 30px);
2045
- }
2046
- .vuuFilterInput-Editor {
2047
- flex: 1 1 auto;
2048
- height: 100%;
2049
- }
2050
- .vuuFilterInput-FilterButton,
2051
- .vuuFilterInput-ClearButton {
2052
- --vuu-icon-size: 12px;
2053
- --saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px);
2054
- }
2055
- .vuuIllustration {
2056
- --vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);
2057
- background: var(--salt-container-secondary-background);
2058
- color: var(--salt-text-secondary-foreground);
2059
- }
1
+ .vuuDrawer{--drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);--vuu-close-icon-svg: var(--svg-chevron-double-right);transition:flex-basis;transition-duration:var(--drawer-transition-duration);position:relative;z-index:1;flex-basis:0;flex-grow:1;flex-shrink:1;min-width:0;min-height:0;display:flex}.vuuDrawer-peekaboo{flex-basis:var(--drawer-peek-size);flex-grow:0;flex-shrink:0}.vuuDrawer-inline.vuuDrawer-open{flex-basis:var(--drawer-size);flex-grow:0;flex-shrink:0}.vuuDrawer-liner{background-color:var(--drawer-bg);overflow:hidden;position:relative}.vuuDrawer-content{height:100%;overflow:hidden;position:absolute;top:0;right:var(--drawer-peek-size);transition:right;transition-duration:var(--drawer-transition-duration);width:100%;flex:1 1 100%}.vuuDrawer-open .vuuDrawer-content{right:0}.vuuDrawer-left{border-right:var(--drawer-leading-edge-border)}.vuuDrawer-right{border-left:var(--drawer-leading-edge-border)}.vuuDrawer-top{border-bottom:var(--drawer-leading-edge-border)}.vuuDrawer-bottom{border-top:var(--drawer-leading-edge-border)}.vuuDrawer-left .vuuDrawer-liner,.vuuDrawer-right .vuuDrawer-liner{height:100%;transition:width}.vuuDrawer-top .vuuDrawer-liner,.vuuDrawer-bottom .vuuDrawer-liner{width:100%;transition:height}.vuuDrawer-inline .vuuDrawer-liner{width:100%;height:100%}.vuuDrawer-over .vuuDrawer-liner{position:absolute;transition-duration:.4s}.vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner{top:0;left:0;width:0}.vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner{top:0;right:0;width:0}.vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner{height:0;top:0;left:0}.vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner{bottom:0;height:0;left:0}.vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,.vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner{width:var(--drawer-peek-size)}.vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner{height:var(--drawer-peek-size)}.vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,.vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner{width:var(--drawer-size)}.vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner{height:var(--drawer-size)}.vuuDrawer-top,.vuuDrawer-left{order:0}.vuuDrawer-bottom,.vuuDrawer-right{order:99}.vuuDrawer-left,.vuuDrawer-right{flex-direction:column}.vuuToggleButton-container{--saltButton-height: 28px;--saltButton-width: 28px;--vuu-icon-size: 12px;flex:0 0 28px}.vuuDrawer-open{--vuu-close-icon-svg: var(--svg-chevron-double-left)}.vuuDockLayout{--chest-bg: var(--hw-chest-bg, inherit);--drawer-bg: var(--hw-drawer-bg, inherit);--drawer-size: var(--hw-drawer-size, 200px);--drawer-peek-size: var(--hw-drawer-peek-size, 32px);--drawer-transition-duration: var(--hw-drawer-transition-duration, .4s);background-color:var(--chest-bg);display:flex}.vuuDockLayout-horizontal{flex-direction:row}.vuuDockLayout-vertical{flex-direction:column}.vuuDockLayout-content{background-color:var(--chest-bg);flex-grow:1;flex-shrink:1;overflow:hidden;display:flex;align-items:center;justify-content:center}.vuuDockLayout-horizontal .vuuDockLayout-content,.vuuDockLayout-vertical .vuuDockLayout-content{flex-basis:100%}.vuuDropMenu{margin-left:-50%;margin-bottom:-50%;background-color:#fff;border:solid 1px var(--grey40);display:inline-flex;justify-content:center;align-items:center;padding:3px;border-radius:3px}.vuuDropMenu-left,.vuuDropMenu-right{flex-direction:column}.vuuDropMenu-bottom{transform:translateY(-30px)}.vuuDropMenu-right{transform:translate(-20px)}.vuuDropMenu-item{--vuu-icon-size: 20px;width:32px;height:32px;background-color:var(--grey20);border-bottom:solid 1px var(--grey40);cursor:pointer;display:flex;align-items:center;justify-content:center}.vuuDropMenu-item .Icon{transform:scale(1.25);transform-origin:center center}.vuuDropMenu-left .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(180deg);transform-origin:center center}.vuuDropMenu-top .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(270deg);transform-origin:center center}.vuuDropMenu-bottom .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(90deg);transform-origin:center center}.vuuDropMenu-item .hwIcon-path{fill:gray}.vuuDropMenu-item:hover{background-color:#c8c8c880}.vuuDropMenu-item:hover .hwIcon-path-2{fill:#00f}.vuuDropMenu-item:last-child{border-bottom:none}#hw-drag-canvas{visibility:hidden;z-index:10;position:absolute;top:0;left:0;right:0;bottom:0;background-color:transparent}#hw-drag-canvas>svg{position:absolute}.drawing #hw-drag-canvas{visibility:visible}path.drop-target{stroke:#00f;stroke-width:4px;fill:transparent}path.drop-target.centre{stroke:red}#vuu-drop-outline{fill:#0000ff4d;stroke:none;stroke-dasharray:4 2}#hw-drop-guides{fill:none;stroke:#0000004d;stroke-dasharray:2 3}.DraggableLayout{display:inline-block;outline:none}[data-dragging=true]{position:absolute!important;z-index:100}.vuuSimpleDraggableWrapper{background-color:#fff;box-shadow:0 6px 10px #0003}.vuuSimpleDraggableWrapper>*{height:100%;width:100%}.vuuHeader{--saltButton-height: 24px;--saltButton-width: 24px}.salt-density-high .vuuHeader{--saltToolbarField-marginTop: 0}.vuuView{border-color:var(--vuuView-borderColor, var(--salt-container-primary-borderColor));border-width:var(--vuuView-borderWidth, 1px);border-style:var(--vuuView-borderStyle, none);display:flex;flex-direction:column;margin:var(--vuuView-margin, 0px);min-height:50px;min-width:50px;outline:none;overflow:hidden;position:relative}.vuuView.focus-visible:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border:dotted cornflowerblue 2px}.vuuView.dragging{box-shadow:0 6px 12px #0000002d}.vuuView-main{display:flex;flex-direction:var(--vuuView-flexDirection, column);flex-wrap:var(--vuuView-flex-wrap, nowrap);flex:1;justify-content:var(--vuuView-justify, flex-start);overflow:hidden;position:relative}.vuuView-main>*{flex-basis:auto;flex-grow:var(--vuuView-flex-grow, 1);flex-shrink:var(--vuuView-flex-shrink, 1)}.vuuView-collapsed .vuuView-main{display:none}.vuuView-collapsed+.Splitter{display:none}.vuuView-collapsed .Toolbar-vertical{border-right:solid 1px var(--grey40)}.vuuView-collapsed .Toolbar-vertical .toolbar-title{display:none}.vuuLayoutStartPanel{align-items:center;flex:0 0 auto!important;display:flex;flex-direction:column;font-weight:700;gap:12px}.vuuLayoutStartPanel-title{color:var(--vuu-color-gray-80);font-size:28px;line-height:1.5;text-align:center}.vuuLayoutStartPanel-text{color:var(--vuu-color-gray-50);font-size:18px;line-height:1.5;max-width:460px}.vuuLayoutStartPanel-addButton{--vuu-icon-size: 20px;--saltButton-borderRadius: 28px !important;--saltButton-height: 56px;--saltButton-width: 56px;box-shadow:0 4px 4px #00000040}.vuuPlaceholder{--vuuView-justify: center;align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:1}.vuuPlaceholder-nested{background-color:red}.vuuPlaceholder-shim{flex-grow:0;flex-shrink:0}.vuuSplitter{--splitter-background: var(--salt-separable-secondary-borderColor);--splitter-borderColor: var(--salt-separable-secondary-borderColor);--splitter-borderStyle: none;--splitter-borderWidth: 0;--splitter-size: 3px;align-items:center;background-color:var(--splitter-background);border-color:var(--splitter-borderColor);border-style:var(--splitter-borderStyle);border-width:var(--splitter-borderWidth);box-sizing:border-box;display:flex;justify-content:center;position:relative;outline:none;z-index:1}.vuuSplitter:hover,.vuuSplitter-active{--splitter-background: var(--salt-separable-primary-borderColor)}.vuuSplitter-column{cursor:ns-resize;height:var(--splitter-size)}.vuuSplitter:not(.vuuSplitter-column){cursor:ew-resize;width:var(--splitter-size)}.vuuSplitter:before{border:none;border-radius:0;content:"";display:block;padding:0}.vuuSplitter-grab-zone{position:absolute;background-color:#ff000003;cursor:inherit}.vuuSplitter-column .vuuSplitter-grab-zone{left:0;right:0;top:-5px;bottom:-5px}.vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone{left:-5px;right:-5px;top:0;bottom:0}.vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone{background-color:#ffffff0d;left:-150px;right:-150px}.vuuSplitter:not(.vuuSplitter-column):before{width:1px;height:10px;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%)}.vuuSplitter-active.vuuSplitter-column:before{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%)}.vuuSplitter-active:not(.vuuSplitter-column):before{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%)}.vuuSplitter-column:before{width:10px;height:1px;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%)}:root{--hw-space-unit: 4px;--hw-flex-gap: 3;--hw-fluid-grid-col-bg: rgba(200, 200, 200, .3)}.hwFlexbox{background-color:var(--container1-background);box-sizing:border-box;display:flex;gap:calc(var(--spacing) * var(--space));min-height:0;min-width:0;overflow:hidden}.hwFlexbox-column{flex-direction:column}.hwFlexbox-row{flex-direction:row}.hwFlexbox>.Splitter{flex-basis:auto;flex-grow:0;flex-shrink:0}.hwFlexbox.full-page{height:100vh;width:100vw}.flex-fill{border-color:red;flex:0;flex-grow:1;flex-shrink:1}.vuuView.flex-fill{border-color:red}:root{--hw-space-unit: 4px;--hw-fluid-grid-col-bg: rgba(252, 209, 232, .7)}.hwFluidGrid{--gap: var(--gutter-width);display:flex;gap:calc(var(--grid-gap) * var(--hw-space-unit));flex-wrap:wrap;padding:0}.hwFluidGrid>*{--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));--gutter-count: calc(var(--parent-col-count) - 1);--total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));--available-width: calc(100% - var(--total-gutter-width));flex-basis:0;flex-grow:1;flex-shrink:1;position:relative}.hwFluidGrid>*:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border:dashed 2px blue}.hwFluidGrid>[data-xs]{--internal-gutter-count: calc(var(--col-span) - 1);--percent-width: calc(var(--col-span) / var(--parent-col-count));--internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));flex-basis:calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));flex-grow:0}.hwFluidGrid>[data-xs="1"]{--col-span: 1}.hwFluidGrid>[data-xs="2"]{--col-span: 2}.hwFluidGrid>[data-xs="3"]{--col-span: 3}.hwFluidGrid>[data-xs="4"]{--col-span: 4}.hwFluidGrid>[data-xs="6"]{--col-span: 6}.hwFluidGrid>[data-xs="8"]{--col-span: 8}.hwFluidGrid>[data-xs="9"]{--col-span: 9}.hwFluidGrid>[data-xs="10"]{--col-span: 10}.hwFluidGrid>[data-xs="11"]{--col-span: 11}.hwFluidGrid>[data-xs="12"]{--col-span: 12}@media (min-width: 600px){.hwFluidGrid>[data-sm="1"]{--col-span: 1}.hwFluidGrid>[data-sm="2"]{--col-span: 2}.hwFluidGrid>[data-sm="3"]{--col-span: 3}.hwFluidGrid>[data-sm="4"]{--col-span: 4}.hwFluidGrid>[data-sm="6"]{--col-span: 6}.hwFluidGrid>[data-sm="8"]{--col-span: 8}.hwFluidGrid>[data-sm="9"]{--col-span: 9}.hwFluidGrid>[data-sm="10"]{--col-span: 10}.hwFluidGrid>[data-sm="11"]{--col-span: 11}.hwFluidGrid>[data-sm="12"]{--col-span: 12}}.hwFluidGrid-show-grid{--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));--grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);--grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));--grid-available-width: calc(100% - var(--grid-total-gutter-width));--grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));--column-width: calc(var(--grid-available-width) * var(--grid-percent-width));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)))}.vuuMeasuredContainer{flex:var(--vuuMeasuredContainer-flex, none);height:var(--vuuMeasuredContainer-height, var(--measured-css-height));min-height:0;width:var(--measured-css-width)}.vuuOverflowContainer{--overflow-borderColor: var(--vuuOverflowContainer-borderColor, none);--overflow-borderStyle: var(--vuuOverflowContainer-borderStyle, none);--overflow-borderWidth: var(--vuuOverflowContainer-borderWidth, 0px);--overflow-border-topWidth: var(--vuuOverflowContainer-borderTopWidth, var(--overflow-borderWidth));--overflow-border-rightWidth: var(--vuuOverflowContainer-borderRightWidth, var(--overflow-borderWidth));--overflow-border-bottomWidth: var(--vuuOverflowContainer-borderBottomWidth, var(--overflow-borderWidth));--overflow-border-leftWidth: var(--vuuOverflowContainer-borderLeftWidth, var(--overflow-borderWidth));--overflow-item-gap: var(--vuuOverflowContainer-gap,2px);--overflow-direction: row;--overflow-height: var(--overflow-item-height);--overflow-top:top:0;--overflow-width: 0px;background-color:var(--vuuOverflowContainer-background);border-color:var(--overflow-borderColor);border-style:var(--overflow-borderStyle);border-top-width:var(--overflow-border-topWidth);border-right-width:var(--overflow-border-rightWidth);border-bottom-width:var(--overflow-border-bottomWidth);border-left-width:var(--overflow-border-leftWidth);height:var(--overflow-container-heightWidth)}.vuuOverflowContainer-horizontal{--item-align: center;--item-margin: 0 var(--overflow-item-gap) 0 var(--overflow-item-gap)}.vuuOverflowContainer-vertical{--item-align: stretch;--overflow-item-height: auto;--item-margin: var(--overflow-item-gap) 0 var(--overflow-item-gap) 0;--overflow-direction: column;--overflow-height: 0;--overflow-left: 0;--overflow-top: 100%;--overflow-width: auto}.vuuOverflowContainer-wrapContainer{--border: calc(var(--overflow-border-topWidth) + var(--overflow-border-bottomWidth));--overflow-item-height: calc(var(--overflow-container-height) - var(--border));align-items:var(--item-align);display:flex;flex-direction:var(--overflow-direction);flex-wrap:wrap;height:var(--overflow-item-height);justify-content:var(--vuuOverflowContainer-justifyContent, flex-start);min-width:var(--vuuOverflowContainer-minWidth, 44px);overflow:hidden;position:relative;width:100%}.vuuOverflowContainer-wrapContainer-overflowed{--overflow-order: 2;--overflow-left: auto;--overflow-position: relative;--overflow-width: auto}.vuuOverflowContainer-vertical.vuuOverflowContainer-wrapContainer-overflowed{--overflow-height: auto}.vuuOverflowContainer-item{align-items:inherit;display:flex;order:1;position:relative;height:var(--overflow-item-height);margin:var(--item-margin)}.vuuOverflowContainer-item[data-align=right]{margin-left:auto}.vuuOverflowContainer-item.wrapped{--overflow-item-bg: #ccc;order:3}.vuuOverflowContainer-item.vuuDraggable-dragAway,.vuuOverflowContainer-item:has(.vuuDraggable-dragAway){display:none}.vuuOverflowContainer-item.vuuDropTarget-settling{visibility:hidden}.vuuOverflowContainer-OverflowIndicator{align-items:center;background-color:transparent;display:flex;height:var(--overflow-height);order:var(--overflow-order, 99);overflow:hidden;left:var(--overflow-left, 100%);top:var(--overflow-top, 100%);position:var(--overflow-position, absolute);width:var(--overflow-width)}.vuuDraggable-vuuOverflowContainer{align-items:center;display:flex;height:44px}.vuuPalette{--vuuList-borderStyle: none}.vuuPalette-horizontal{align-items:center;display:flex}.vuuPaletteItem{--vuu-icon-color: var(--salt-text-primary-foreground);--vuu-icon-left: 0;--vuu-icon-size: 16px;--vuu-icon-top: 11px;--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);border-bottom:solid 1px var(--salt-separable-tertiary-borderColor);padding-left:12px;font-size:12px;font-weight:600}.vuuSimpleDraggableWrapper>.vuuPaletteItem{--vuu-icon-color: var(--salt-selectable-foreground)}.salt-theme .vuuPaletteItem{font-size:11px;font-weight:400}.vuuTabs{display:flex;box-sizing:border-box;flex-direction:column}.vuuTabs-horizontal{--vuu-tabs-border-style: none solid none none;flex-direction:row}.vuuTabs .Toolbar:before{left:0;width:100%;bottom:0;height:1px;content:"";position:absolute;background:var(--grey60)}.vuuTabs-tabPanel{display:flex;flex:1;flex-direction:column}.vuuTabs-tabPanel>*{flex:1 1 auto}.vuuTabHeader{--saltTabs-activationIndicator-background: transparent;--saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);border-color:var(--salt-container-primary-borderColor);border-style:var(--vuu-tabs-border-style, none none solid none);border-width:1px}.vuuTabHeader+.vuuView>.vuuHeader{height:0;overflow:hidden}.Layout-svg-button{--spacing-medium: 5px}.vuuToolbar{--toolbar-height: var(--vuuToolbar-height, 36px);--toolbar-item-height: var(--vuuToolbarItem-height, 100%);--vuuOverflowContainer-background: var(--vuuToolbar-background);--vuuOverflowContainer-borderColor: var(--vuuToolbar-borderColor);--vuuOverflowContainer-borderStyle: var(--vuuToolbar-borderStyle);--vuuOverflowContainer-borderWidth: var(--vuuToolbar-borderWidth);height:var(--toolbar-height)}.vuuToolbar-alignCenter{--vuuOverflowContainer-justifyContent: center}.vuuToolbar-alignEnd{--vuuOverflowContainer-justifyContent: flex-end}.vuuToolbarItem{height:var(--toolbar-item-height)}.vuuToolbar-withSeparators .vuuOverflowContainer-item:not(:first-child):before{content:"";position:absolute;left:calc(-1 * var(--overflow-item-gap));top:calc((var(--toolbar-height) - var(--toolbar-item-height)) /2);width:1px;height:var(--toolbar-item-height);background-color:var(--vuu-color-gray-05)}.vuuToolbarItem.vuuFocusVisible{outline-color:var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));outline-style:dashed;outline-width:1px;outline-offset:0px}.vuuPopupMenu:focus,.vuuToolbarItem:focus,.vuuToolbarItem:focus-visible{outline-color:var(--vuuToolbarItem-outlineColor, var(--vuu-color-purple-10));outline-style:dashed;outline-width:1px;outline-offset:0px}[data-design-mode=true] .Component{filter:grayscale(100%);opacity:.4}[data-design-mode=true] .Component:after{color:#000;content:"Component";height:12px;background-color:#ff0}.LayoutConfigurator{--margin-color: #f3cea5;--border-color: #fddda0;--padding-color: #c6d092;--content-color: #8cb6c0;display:flex;flex-direction:column;align-items:stretch;background-color:var(--margin-color)}.LayoutConfigurator .layout-outer{flex:1 1 auto;display:flex;flex-direction:column;align-items:stretch}.LayoutBox{--hw-control-font-size: 13px;--hw-text-input-bg: rgba(255, 255, 255, .3);--hwTextInput-padding: 3px;--hw-text-input-position: absolute;--hwTextInput-width: 30px;flex:1 1 auto}.LayoutBox>.layout-top{flex:0 0 40px;padding-left:12px;display:flex;flex-direction:row;align-items:center;position:relative}.LayoutBox>.layout-bottom{flex:0 0 40px;position:relative;display:flex;flex-direction:row;align-items:center}.LayoutBox>.layout-inner>.layout-right,.LayoutBox>.layout-inner>.layout-left{flex:0 0 40px;display:flex;flex-direction:column;justify-content:center;align-items:center}.layout-top,.layout-bottom{--hw-text-input-margin: 0 0 0 -15px}.layout-top>.layout-input,.layout-bottom>.layout-input{left:50%}.LayoutBox>.layout-inner{flex:1 1 auto;display:flex;flex-direction:row;align-items:stretch}.LayoutBox.layout-margin{background-color:var(--margin-color);border:dashed 2px black}.LayoutBox.layout-border{background-color:var(--border-color);border:solid 2px black}.LayoutBox.layout-padding{background-color:var(--padding-color);border:dashed 2px black}.LayoutBox .layout-content{flex:1 1 auto;background-color:var(--content-color);border:solid 2px #808080}.LayoutBox .layout-title{color:#161616;font-size:11px;left:4px;line-height:15px;position:absolute;top:1px}.hwLayoutTreeNode{cursor:default}.hwLayoutTreeNode:hover{background-color:#fff3}.hwLayoutTreeNode[aria-selected=true]{background-color:#6495ed;color:#fff}.vuuFilterBuilderMenu{margin:0}.vuuFilterBuilderMenu-trigger{display:inline-block;height:26px;width:0px}.vuuFilterBuilderMenuList{--vuuList-borderStyle: none}.vuuListItem:has(.vuuMenuButton){justify-content:center}.vuuMenuButton{background-color:#fff;border:solid 1px var(--salt-actionable-primary-foreground);border-radius:6px;color:var(--vuu-color-gray-50);font-size:9px;padding:1px 6px}.vuuExpandoCombobox{--expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);--expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);--saltInput-outline: none;--saltInput-fontSize: var(--expando-combobox-fontSize);--saltInput-height: var(--expando-combobox-height);--saltInput-minWidth: 4px;display:inline-flex;flex-direction:column;height:var(--expando-combobox-height);min-width:4px;padding:0}.vuuExpandoCombobox .saltInput{background-color:transparent;position:absolute}.vuuExpandoCombobox .vuuDropdown{height:100%}.vuuExpandoCombobox-Input.saltInput{border:none;left:0;margin:0;min-height:100%;padding:0;right:0;width:auto}.vuuExpandoCombobox .saltInput-input{border:none;box-sizing:content-box;display:block;flex:1;font:inherit;margin:0;min-width:0;outline:none;padding:0}.vuuExpandoCombobox:before{content:attr(data-text);display:block;font-size:var(--expando-combobox-fontSize);height:0px;overflow:hidden;white-space:pre-wrap}.vuuFilterClause{--vuuExpandoInput-top: 0;--vuuExpandoInput-height: 16px;--vuuExpandoCombobox-height: 16px;--saltButton-height: 16px;--saltButton-width: 16px;display:flex;flex-direction:row;width:fit-content;border-color:var(--vuu-color-gray-45);border-radius:6px;border-width:1px;border-style:solid;background:#fff;--salt-focused-outlineStyle: dotted}.vuuFilterClause:focus-within{border-color:var(--vuu-color-purple-10)}.vuu-density-high .vuuFilterClause{padding:4px 8px;gap:4px;--salt-text-lineHeight: 12px;--saltInputLegacy-fontSize: 12px;--saltInputLegacy-minWidth: 12px}.vuu-density-high .vuuFilterClause .saltInput{padding:0;min-height:16px;height:16px}.vuuFilterClause .vuuExpandoCombobox{flex-basis:auto;flex-shrink:0;flex-grow:0}.vuuFilterClauseOperator-hidden{display:none}.vuuFilterClause .saltInput-focused,.vuuFilterClause .saltTokenizedInput-focused{outline:none;color:var(--salt-text-primary-foreground)}.vuuFilterClause .saltInput-input::selection{color:#fff}.vuu-theme .saltList{--list-borderWidth: 1px;--list-borderStyle: solid;border-radius:4px;box-shadow:0 2px 3px #0006}.saltListItem[aria-selected=true]:not(.saltListItem-checkbox){--list-item-background: var(--list-item-background-active);color:var(--list-item-text-color-active)}.saltTokenizedInput{height:16px;min-height:16px}.saltTokenizedInput .saltInputPill{--pill-fontSize: 12px;--saltButton-borderStyle: none;--pill-background: none;height:16px;margin:0}.saltTokenizedInput-pillGroup{padding:0;height:16px}.vuuFilterPillMenu{top:-1px}.vuuFilterPill{align-items:center;background:var(--salt-taggable-background);border:solid 1px var(--salt-taggable-foreground);border-radius:24px;color:var(--vuu-color-gray-50);display:inline-flex;max-width:var(--vuuFilterPill-maxWidth, 200px);padding:0 8px;position:relative;user-select:none;outline:none}.vuuFilterPill.vuuToolbarItem{height:24px}.vuuFilterPill[aria-selected=true]{--vuuPopupMenu-iconColor: white;--salt-text-background-selected: var(--vuu-color-blue-40);--salt-text-color-selected: var(--salt-text-primary-foreground);--saltInput-background-hover: var(--salt-taggable-background-active);--saltInput-color: var(--salt-taggable-foreground-active);background:var(--salt-taggable-background-active);color:#fff}.vuuFilterPill:not([aria-selected=true]):hover{--vuuPopupMenu-iconColor: var(--vuu-color-gray-80);background-color:var(--salt-taggable-background-hover);border-color:var(--salt-taggable-background-hover);color:var(--vuu-color-gray-80)}.vuuLoginPanel{--saltInput-paddingLeft: 8px;--login-width: 856px;--login-height: 550px;--hwTextInput-border: solid 1px #ccc;--hwTextInput-height: 28px;--hwTextInput-padding: 0 12px;--hwTextInput-width: 100%;--login-row-height: 60px;border-radius:16px;box-shadow:0 24px 44px #00000040;display:flex;height:var(--login-height);margin:0 auto;width:var(--login-width)}.vuuLoginPanel .saltInput-primary{--saltInput-height: 36px}.vuuLoginPanel-title{justify-content:center;font-size:28px;font-weight:400;display:flex}.vuuLoginPanel-branding{align-items:center;background-color:var(--vuu-color-purple-50);border-radius:16px 0 0 16px;display:flex;flex:0 0 368px;flex-direction:column;gap:40px;justify-content:center;padding:40px 100px}.vuuLoginPanel-form{background-color:#fff;border-radius:0 16px 16px 0;display:flex;flex:1 1 auto;flex-direction:column;gap:32px;justify-content:center;padding:0 40px}.vuuLoginPanel-password{--vuu-icon-size: 16px}.vuuLoginPanel-appName{color:#fff;font-size:18px;font-weight:700;text-transform:uppercase}.vuuLoginPanel-login{--saltButton-height: 36px;--saltButton-borderRadius: 6px;width:100%}.vuuAppHeader{--saltButton-borderRadius: 6px;--saltButton-text-color: var(--vuu-color-gray-50);--saltButton-padding: 12px;--vuuToolbarItem-height: 26px;--vuuOverflowContainer-gap: 8px;--vuu-icon-color: var(--vuu-color-gray-45);--vuu-icon-size: 16px;--vuuToolbar-background: var(--vuuAppHeader-background, var(--vuu-color-gray-28));--vuuToolbar-borderWidth: 1px;--vuuToolbar-borderStyle: solid;--vuuToolbar-borderColor: var(--vuu-color-gray-30);align-items:center;display:flex;justify-content:flex-end}.vuu-theme .vuuAppHeader{border-radius:8px;margin-bottom:8px}.vuuStatus-container{display:flex}.vuuStatus-text{align-self:center}.vuuStatus{--vuu-icon-height: 18px;--vuu-icon-padding: var(--vuuStatus-padding, 6px);--vuu-icon-width: var(--vuuStatus-width, auto);--vuu-icon-min-width: var(--vuuStatus-min-width, 20px);align-items:center;display:inline-flex;height:var(--vuu-icon-height);justify-content:center;min-width:var(--vuu-icon-min-width);padding:0 var(--vuu-icon-padding);width:var(--vuu-icon-width);position:relative}.vuuStatus[data-icon]:after{top:0;right:0;bottom:0;left:0;content:"";box-shadow:0 0 #000;position:absolute;mask:var(--vuu-icon-svg) center center/20px 20px no-repeat;-webkit-mask:var(--vuu-icon-svg) center center/20px 20px no-repeat}.vuuActiveStatus:after{--vuu-icon-svg: var(--svg-active-status);background-color:#0f0}.vuuConnectingStatus:after{--vuu-icon-svg: var(--svg-connecting-status);background-color:orange;transform:scale(1);animation:infinite pulse 1s}.vuuDisconnectedStatus:after{--vuu-icon-svg: var(--svg-disconnected-status);background-color:red;transform:scale(1);animation:infinite pulse .5s}@keyframes pulse{0%{transform:scale(.95);box-shadow:0 0 #000000b3}70%{transform:scale(1);box-shadow:0 0 #0000}to{transform:scale(.95);box-shadow:0 0 #0000}}.saveLayoutPanel{--salt-selectable-foreground-hover: #6d18bdc3;--salt-selectable-foreground-selected: #6D18BD;--salt-selectable-borderColor-selected: #6D18BD;--saltInputLegacy-fontSize: 12px;--salt-text-label-fontSize: 10px;--saltFormFieldLegacy-label-paddingLeft: 0;--saltFormField-label-fontWeight: 400;--saltText-color: var(--text-secondary-foreground, #606477)}.spinner{width:100px;height:100px;background-image:var(--svg-spinner)}.saveLayoutPanel-panelContainer{display:flex;flex-direction:column;align-items:flex-start}.saveLayoutPanel-panelContent{display:flex;align-items:flex-start;gap:32px}.saveLayoutPanel-formContainer{display:flex;width:217px;flex-direction:column;align-items:flex-start;gap:16px}.saveLayoutPanel-formField{display:flex;flex-direction:column;gap:1px}.saveLayoutPanel-inputText{border:none;color:var(--light-text-primary, #15171B);font-family:Nunito Sans A-Variant,serif;font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-size:12px;font-weight:400;line-height:16px;padding-left:4px;width:100%;outline:none}.saveLayoutPanel-settingsGroup{display:flex;flex-wrap:wrap;align-items:flex-end;gap:10px;width:100%;line-height:16px}.saveLayoutPanel-screenshotContainer{display:flex;width:304px;height:208px;padding:11px 15.5px;justify-content:center;align-items:center;border:1px solid #E8E8E8;background:var(--dark-text-primary, #FFF)}.saveLayoutPanel-screenshot{background:#d3d3d3 50% / cover no-repeat;width:273px;height:186px}.saveLayoutPanel-buttonsContainer{display:flex;justify-content:flex-end;align-items:flex-start;align-self:stretch;padding-top:24px;gap:8px}.saveLayoutPanel-cancelButton,.saveLayoutPanel-saveButton{display:flex;height:fit-content;padding:4px 8px;align-items:flex-start;gap:8px;border-radius:6px;font-size:12px;font-style:normal;font-weight:700;line-height:133.333%;letter-spacing:.48px;text-transform:uppercase}.saveLayoutPanel-cancelButton{color:var(--actionable-primary-foreground-default, #606477);background:var(--actionable-primary-background-default, #FFF)}.saveLayoutPanel-saveButton{background:#6d18bd;border-color:#6d18bd;color:#fff}.saveLayoutPanel-saveButton.saltButton:disabled{background:#6d18bd;border-color:#6d18bd;color:#fff;opacity:.3}.saveLayoutPanel-saveButton.saltButton:hover{background:#f37880;border-color:#f37880;color:#fff}.vuuLayoutTile-layoutTile{display:flex;align-items:center;gap:8px;padding:8px 0;flex:1 1 auto;cursor:pointer}.vuuLayoutTile-layoutName{color:var(--light-text-primary, #15171B);font-weight:600;line-height:133.333%;text-transform:capitalize}.vuuLayoutTile-screenshot{width:60px;height:45.6px;border:1px solid #D6D7DA}.vuuLayoutTile-layoutDetails{color:var(--light-text-secondary, #606477);font-size:10px;font-weight:600;line-height:150%}.vuuLayoutList{--vuuLayoutList-width: 90%;--vuuMeasuredContainer-flex: 1 1 1px;align-self:stretch;display:flex;flex-direction:column;height:100%;overflow:hidden;padding-right:6px}.vuuLayoutList ::-webkit-scrollbar{width:4px;height:4px}.vuuLayoutList ::-webkit-scrollbar-track{background:transparent;margin-top:15px;margin-bottom:15px}.vuuLayoutList ::-webkit-scrollbar-thumb{border-radius:4px;background:#d9d9d9}.vuuLayoutList-header{display:flex;flex:0 0 47px;width:var(--vuuLayoutList-width);padding:16px 0;border-bottom:1px solid rgba(119,124,148,.1);color:var(--light-text-primary, #15171B);font-weight:700;letter-spacing:.48px;line-height:200%;text-transform:uppercase}.vuuLayoutList-groupName{display:flex;padding-top:24px;width:var(--vuuLayoutList-width);color:var(--light-text-secondary, #606477);font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-family:Nunito Sans;font-size:12px;font-style:normal;font-weight:700;line-height:200%;letter-spacing:.48px;text-transform:uppercase}.vuuLayoutList-layoutContainer{display:flex;align-items:center;width:90%;height:auto;gap:8px;padding:8px 0;flex:1 1 auto;cursor:pointer}.vuuLayoutList-layoutName{color:var(--light-text-primary, #15171B);font-weight:600;line-height:133.333%;text-transform:capitalize}.vuuLayoutList-screenshot{width:60px;height:45.6px;border:1px solid #D6D7DA}.vuuLayoutList-layoutDetails{color:var(--light-text-secondary, #606477);font-size:10px;font-weight:600;line-height:150%}.vuuFeatureList{background:var(--vuuFeatureList-background, var(--salt-container-primary-background));display:flex;flex-direction:column;height:100%;padding:195px 32px 16px 24px}.vuuFeatureList-header{flex:0 0 40px;font-size:12px;font-weight:700;line-height:2}.vuuFeatureList-content{flex:1 1 auto;font-size:12px;font-weight:700}.vuuLeftNav{--salt-navigable-fontWeight-active: 700;--vuuTab-background-selected: rgba(255, 255, 255, .1);--vuuTab-hover-background: rgba(255, 255, 255, .1);--vuuTab-before-content: none;--vuuTab-borderRadius: 6px;--vuuTab-height: 40px;--vuuTab-padding: 0 0 0 48px;--vuuTabstrip-fontWeight: 700;--vuuTabstrip-width: 100%;--svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');--svg-features: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');--svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');--svg-layouts: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 10H14V11.3333H15.3333V10ZM15.3333 12.6667H14V14H15.3333V12.6667ZM15.3333 7.33333H14V8.66667H15.3333V7.33333ZM10 2H8.66667V3.33333H10V2ZM15.3333 4.66667H14V6H15.3333V4.66667ZM0.666672 14H7.33334V10H0.666672V14ZM2.00001 4.66667H0.666672V6H2.00001V4.66667ZM10 12.6667H8.66667V14H10V12.6667ZM12.6667 2H11.3333V3.33333H12.6667V2ZM15.3333 2H14V3.33333H15.3333V2ZM12.6667 12.6667H11.3333V14H12.6667V12.6667ZM2.00001 7.33333H0.666672V8.66667H2.00001V7.33333ZM7.33334 2H6.00001V3.33333H7.33334V2ZM4.66667 2H3.33334V3.33333H4.66667V2ZM2.00001 2H0.666672V3.33333H2.00001V2Z"/></svg>');--vuu-light-text-primary: #15171b;--menu-level-2-width: 0px;box-shadow:3px 4px 4px #00000026;display:flex;height:calc(100% - 4px);margin-bottom:4px;overflow:hidden;position:relative;transition:width .2s ease-out;z-index:0}.vuuLeftNav-menu-full{--menu-width: var(--nav-menu-expanded-width)}.vuuLeftNav-menu-icons{--menu-width: var(--nav-menu-collapsed-width)}.vuuLeftNav-menu-icons-content{--menu-width: var(--nav-menu-collapsed-width);--menu-level-2-width: var(--nav-menu-content-width)}.vuuLeftNav-menu-full-content{--menu-width: var(--nav-menu-expanded-width);--menu-level-2-width: var(--nav-menu-content-width)}.vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,.vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary{display:flex}.vuuLeftNav-menu-primary{background-color:#2a015f;container-type:inline-size;display:flex;flex-direction:column;height:100%;padding:32px 16px;transition:flex-basis ease-out .2s;flex-grow:0;flex-shrink:0;flex-basis:var(--menu-width)}.vuuLeftNav-menu-secondary{flex:1 1 auto;display:none;top:0;right:0;flex-grow:0;flex-shrink:0;flex-basis:var(--nav-menu-content-width, 240px);z-index:-1}.vuuLeftNav .vuuTabstrip{margin-top:102px}.vuuLeftNav .vuuTab{--vuuTab-focusVisible-color: pink;--vuu-icon-color: white;--vuu-icon-left: 12px;--vuu-icon-size: 16px;border-left:solid 4px transparent}.vuuLeftNav .vuuTab-selected{--vuu-icon-color: var(--salt-navigable-indicator-active);border-left:solid 4px var(--salt-navigable-indicator-active)}.vuuLeftNav-logo{display:flex;flex:0 0 auto;justify-content:center}.vuuLeftNav-main{flex:1 1 auto}.vuuLeftNav-menu{color:#fff;margin-top:102px;padding:0}.vuuLeftNav [data-icon=demo]{--vuu-icon-svg: var(--svg-demo)}.vuuLeftNav [data-icon=tables]{--vuu-icon-svg: var(--svg-tables)}.vuuLeftNav [data-icon=features]{--vuu-icon-svg: var(--svg-features)}.vuuLeftNav [data-icon=layouts]{--vuu-icon-svg: var(--svg-layouts)}@container (max-width: 100px){.vuuTab{--vuuTab-padding: 0 0 0 42px}.vuuTab-main{display:none!important}}.vuuLeftNav-buttonBar{align-items:center;display:flex;flex:0 0 100px;justify-content:center}.vuuLeftNav-toggleButton{--vuu-icon-color: var(--vuu-light-text-primary);--vuu-icon-left: 11px;--vuu-icon-top: 10px;--vuu-icon-size: 16px;background-color:var(--salt-navigable-indicator-active);border-width:0;border-radius:18px;height:36px;position:relative;width:36px}.vuuLeftNav-toggleButton-open{--vuu-icon-left: 9px}.vuuLeftNav-drawer{display:flex;padding:0 0 0 24px;flex-direction:column;align-items:flex-start;flex-shrink:0;align-self:stretch;background:#fff;box-shadow:3px 4px 4px #00000026;height:100%}.vuuSessionEditingForm{display:flex;flex-direction:column;gap:3px;min-width:400px;padding:6px}.vuuSessionEditingForm-content{display:flex;flex-direction:column;flex:1 1 auto;gap:3px;overflow:auto}.vuuSessionEditingForm-field{align-items:center;display:flex;height:32px}.vuuSessionEditingForm-fieldLabel{flex:0 0 50%}.vuuSessionEditingForm-fieldValue{max-width:50%}.vuuSessionEditingForm-fieldValue.vuuReadOnly{font-weight:var(--salt-text-label-fontWeight-strong)}.vuuSessionEditingForm-buttonbar{align-items:center;border-top:solid 1px var(--salt-container-primary-borderColor);display:flex;justify-content:flex-end;flex:0 0 autox;gap:6px;padding-top:6px}.vuuSessionEditingForm-errorBanner{--vuu-icon-left: 3px;--vuu-icon-size: 18px;--vuu-icon-top: 3px;border:solid 1px var(--salt-status-error-borderColor);line-height:24px;padding:0 6px 0 26px;position:relative}.vuuContextPanel{position:relative;transition:width .3s ease-in-out;width:var(--vuu-side-panel-width, 0px)!important;z-index:1}.vuuContextPanel-expanded{--vuu-side-panel-width: 300px !important;--vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, .1);--vuu-side-panel-padding: 24px}.vuuContextPanel-overlay{width:0px!important}.vuuContextPanel-inner{background-color:var(--salt-container-primary-background);box-shadow:var(--vuu-side-panel-shadow, none);display:flex;flex-direction:column;height:100%;min-width:0!important;overflow:auto;padding-bottom:24px;padding-top:24px;padding-left:var(--vuu-side-panel-padding, 0);padding-right:var(--vuu-side-panel-padding, 0);position:absolute!important;right:0;top:0;transition-property:padding-left,padding-right,width;transition-duration:.3s;transition-timing-function:ease-in-out;width:var(--vuu-side-panel-width, 0px)}.vuuContextPanel-header{align-items:center;display:flex;flex-wrap:nowrap;flex:0 0 27px!important;justify-content:space-between}.vuuContextPanel-title{font-size:20px;font-weight:700;white-space:nowrap}.vuuContextPanel-content{flex:1 1 auto;width:100%}.vuuShellSidePanel{transition:width .2s ease-out;width:var(--shell-left-nav-size)}.vuuShell{background-color:var(--vuu-color-gray-25);height:var(--vuuShell-height, 100vh);width:var(--vuuShell-width, 100vw)}.vuuShell-mainTabs{background:var(--salt-container-primary-background)}.vuuShell-palette{--vuuView-border: none;--vuuView-margin: 0}.vuuShell-warningPlaceholder{background-color:var(--salt-container-background-high);height:100%}.vuuToolbarProxy{background:var(--salt-container-primary-background)}.vuuShell-mainTabs>.vuuTabstrip>.vuuOverflowContainer-wrapContainer{background:var(--vuu-color-gray-25)}.vuuShell-mainTabs{--vuuTab-height: 28px;border:solid 1px #D6D7DA;border-top:none!important;border-radius:6px;height:100%;padding:36px 8px 8px;position:relative;width:100%}.vuuShell-mainTabs>.vuuTabstrip{--vuuTabstrip-height: 28px;--saltTabs-tabstrip-height: 29px;--tabstrip-height: 29px;left:-1px;padding-bottom:7px;position:absolute!important;right:1px;top:0;width:calc(100% + 2px)!important}.vuuShell-mainTabs>.vuuTabHeader{border-bottom:none}.vuuShell-mainTabs>.vuuTabstrip:before{background-color:transparent;border-radius:0 6px 0 0;border-left:solid 1px #D6D7DA;border-right:solid 1px #D6D7DA;border-top:solid 1px #D6D7DA;content:"";position:absolute;bottom:0;left:0;right:0;height:8px;z-index:1}.vuuTab.MainTab{--vuuTabMenu-top: -1px;background-color:#f1f2f4;border-color:#d6d7da;border-radius:6px 6px 0 0;border-width:1px;border-style:solid;position:relative}.MainTab.vuuTab-selected{background-color:#fff;border-bottom-color:#fff;z-index:1}.MainTab.vuuTab-selected:before{background-color:#6d188b;content:"";position:absolute;height:100%;left:0;top:0;border-radius:6px 0 0;width:6px}.MainTab.vuuTab:hover:before{background-color:#f37880;content:"";position:absolute;height:100%;left:0;top:0;border-radius:6px 0 0;width:6px}.vuuTab.MainTab .vuuTab-main{background-color:transparent;font-weight:700;height:29px;padding:0 24px}.vuuThemeSwitch{--saltButton-minWidth: 22px;--svg-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 31q2.9 0 4.95-2.05Q31 26.9 31 24q0-2.9-2.05-4.95Q26.9 17 24 17q-2.9 0-4.95 2.05Q17 21.1 17 24q0 2.9 2.05 4.95Q21.1 31 24 31Zm0 3q-4.15 0-7.075-2.925T14 24q0-4.15 2.925-7.075T24 14q4.15 0 7.075 2.925T34 24q0 4.15-2.925 7.075T24 34ZM3.5 25.5q-.65 0-1.075-.425Q2 24.65 2 24q0-.65.425-1.075Q2.85 22.5 3.5 22.5h5q.65 0 1.075.425Q10 23.35 10 24q0 .65-.425 1.075-.425.425-1.075.425Zm36 0q-.65 0-1.075-.425Q38 24.65 38 24q0-.65.425-1.075.425-.425 1.075-.425h5q.65 0 1.075.425Q46 23.35 46 24q0 .65-.425 1.075-.425.425-1.075.425ZM24 10q-.65 0-1.075-.425Q22.5 9.15 22.5 8.5v-5q0-.65.425-1.075Q23.35 2 24 2q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 10 24 10Zm0 36q-.65 0-1.075-.425-.425-.425-.425-1.075v-5q0-.65.425-1.075Q23.35 38 24 38q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 46 24 46ZM12 14.1l-2.85-2.8q-.45-.45-.425-1.075.025-.625.425-1.075.45-.45 1.075-.45t1.075.45L14.1 12q.4.45.4 1.05 0 .6-.4 1-.4.45-1.025.45-.625 0-1.075-.4Zm24.7 24.75L33.9 36q-.4-.45-.4-1.075t.45-1.025q.4-.45 1-.45t1.05.45l2.85 2.8q.45.45.425 1.075-.025.625-.425 1.075-.45.45-1.075.45t-1.075-.45ZM33.9 14.1q-.45-.45-.45-1.05 0-.6.45-1.05l2.8-2.85q.45-.45 1.075-.425.625.025 1.075.425.45.45.45 1.075t-.45 1.075L36 14.1q-.4.4-1.025.4-.625 0-1.075-.4ZM9.15 38.85q-.45-.45-.45-1.075t.45-1.075L12 33.9q.45-.45 1.05-.45.6 0 1.05.45.45.45.45 1.05 0 .6-.45 1.05l-2.8 2.85q-.45.45-1.075.425-.625-.025-1.075-.425ZM24 24Z"/></svg>');--svg-dark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 42q-7.5 0-12.75-5.25T6 24q0-7.5 5.25-12.75T24 6q.4 0 .85.025.45.025 1.15.075-1.8 1.6-2.8 3.95-1 2.35-1 4.95 0 4.5 3.15 7.65Q28.5 25.8 33 25.8q2.6 0 4.95-.925T41.9 22.3q.05.6.075.975Q42 23.65 42 24q0 7.5-5.25 12.75T24 42Zm0-3q5.45 0 9.5-3.375t5.05-7.925q-1.25.55-2.675.825Q34.45 28.8 33 28.8q-5.75 0-9.775-4.025T19.2 15q0-1.2.25-2.575.25-1.375.9-3.125-4.9 1.35-8.125 5.475Q9 18.9 9 24q0 6.25 4.375 10.625T24 39Zm-.2-14.85Z"/></svg>');padding:2px}.salt-density-high .vuuThemeSwitch{--saltButton-minWidth: 16px;--saltButton-width: 18px;--vuuThemeSwitch-iconSize: 16px}.vuuThemeSwitch [data-icon]{--vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px)}.vuuThemeSwitch [data-icon=light]{--vuu-icon-svg: var(--svg-light)}.vuuThemeSwitch [data-icon=dark]{--vuu-icon-svg: var(--svg-dark)}.vuuThemeSwitch .saltToggleButton{height:20px;width:20px}.vuuFilterBar{--vuu-svg-tune: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18C3 18.55 3.45 19 4 19H9V17H4C3.45 17 3 17.45 3 18ZM3 6C3 6.55 3.45 7 4 7H13V5H4C3.45 5 3 5.45 3 6ZM13 20V19H20C20.55 19 21 18.55 21 18C21 17.45 20.55 17 20 17H13V16C13 15.45 12.55 15 12 15C11.45 15 11 15.45 11 16V20C11 20.55 11.45 21 12 21C12.55 21 13 20.55 13 20ZM7 10V11H4C3.45 11 3 11.45 3 12C3 12.55 3.45 13 4 13H7V14C7 14.55 7.45 15 8 15C8.55 15 9 14.55 9 14V10C9 9.45 8.55 9 8 9C7.45 9 7 9.45 7 10ZM21 12C21 11.45 20.55 11 20 11H11V13H20C20.55 13 21 12.55 21 12ZM16 9C16.55 9 17 8.55 17 8V7H20C20.55 7 21 6.55 21 6C21 5.45 20.55 5 20 5H17V4C17 3.45 16.55 3 16 3C15.45 3 15 3.45 15 4V8C15 8.55 15.45 9 16 9Z" /></svg>');--vuuToolbar-height: 28px;--salt-container-primary-borderColor: var(--vuu-color-purple-10);--vuuOverflowContainer-minWidth: 0;--saltButton-height: 26px;--saltButton-width: 26px;align-items:center;background-color:var(--salt-container-secondary-background);border-bottom:solid 1px #D6D7DA;display:flex;flex:var(--vuuFilterBar-flex);gap:4px;height:33px;padding:0 8px}.vuuFilterbar-icon{display:inline-block;height:16px;width:16px}.vuuFilterBar [data-icon=tune]{--vuu-icon-size: 16px;--vuu-icon-svg: var(--vuu-svg-tune)}.vuuFilterBar [data-icon=plus]{--vuu-icon-size: 16px}.vuuFilterBar .vuuToolbar{flex:0 1 auto}.salt-theme{--vuuFilterEditor-lineHeight: 28px}.salt-density-high{--vuuFilterEditor-buttonWidth: 20px;--vuuFilterEditor-height: 22px;--vuuFilterEditor-lineHeight: 20px}.vuuFilterInput{--vuuFilterEditor-background: var(--salt-container-primary-background);--vuuFilterEditor-color: var(--salt-text-primary-foreground);--vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);--vuuFilterEditor-fontSize: var(--salt-text-fontSize);--vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);--vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);--vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);--vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);--vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);--vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);--vuuFilterEditor-suggestion-height: 24px;--vuuFilterEditor-variableColor: var(--vuu-color_purple-10);align-items:center;border-color:var(--salt-container-secondary-borderColor);border-style:solid none;border-width:1px;box-sizing:border-box;display:flex;height:var(--vuuFilterEditor-height, 30px)}.vuuFilterInput-Editor{flex:1 1 auto;height:100%}.vuuFilterInput-FilterButton,.vuuFilterInput-ClearButton{--vuu-icon-size: 12px;--saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px)}.vuuIllustration{--vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);background:var(--salt-container-secondary-background);color:var(--salt-text-secondary-foreground)}
2060
2
  /*# sourceMappingURL=index.css.map */