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

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,1146 +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/placeholder/Placeholder.css */
284
- .vuuPlaceholder {
285
- flex-basis: 0;
286
- flex-grow: 1;
287
- flex-shrink: 1;
288
- }
289
- .vuuPlaceholder-shim {
290
- flex-grow: 0;
291
- flex-shrink: 0;
292
- }
293
-
294
- /* ../vuu-layout/src/flexbox/Splitter.css */
295
- .vuuSplitter {
296
- --splitter-background: var(--salt-separable-secondary-borderColor);
297
- --splitter-borderColor: var(--salt-separable-secondary-borderColor);
298
- --splitter-borderStyle: none;
299
- --splitter-borderWidth: 0;
300
- --splitter-size: 3px;
301
- align-items: center;
302
- background-color: var(--splitter-background);
303
- border-color: var(--splitter-borderColor);
304
- border-style: var(--splitter-borderStyle);
305
- border-width: var(--splitter-borderWidth);
306
- box-sizing: border-box;
307
- display: flex;
308
- justify-content: center;
309
- position: relative;
310
- outline: none;
311
- z-index: 1;
312
- }
313
- .vuuSplitter:hover {
314
- --splitter-background: var(--salt-separable-primary-borderColor);
315
- }
316
- .vuuSplitter-active {
317
- --splitter-background: var(--salt-separable-primary-borderColor);
318
- }
319
- .vuuSplitter-column {
320
- cursor: ns-resize;
321
- height: var(--splitter-size);
322
- }
323
- .vuuSplitter:not(.vuuSplitter-column) {
324
- cursor: ew-resize;
325
- width: var(--splitter-size);
326
- }
327
- .vuuSplitter:before {
328
- border: none;
329
- border-radius: 0;
330
- content: "";
331
- display: block;
332
- padding: 0;
333
- }
334
- .vuuSplitter-grab-zone {
335
- position: absolute;
336
- background-color: rgba(255, 0, 0, 0.01);
337
- cursor: inherit;
338
- }
339
- .vuuSplitter-column .vuuSplitter-grab-zone {
340
- left: 0;
341
- right: 0;
342
- top: -5px;
343
- bottom: -5px;
344
- }
345
- .vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
346
- left: -5px;
347
- right: -5px;
348
- top: 0;
349
- bottom: 0;
350
- }
351
- .vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
352
- background-color: rgba(255, 255, 255, .05);
353
- left: -150px;
354
- right: -150px;
355
- }
356
- .vuuSplitter:not(.vuuSplitter-column):before {
357
- width: 1px;
358
- height: 10px;
359
- 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%);
360
- }
361
- .vuuSplitter-active.vuuSplitter-column:before {
362
- 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%);
363
- }
364
- .vuuSplitter-active:not(.vuuSplitter-column):before {
365
- 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%);
366
- }
367
- .vuuSplitter-column:before {
368
- width: 10px;
369
- height: 1px;
370
- 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%);
371
- }
372
-
373
- /* ../vuu-layout/src/flexbox/Flexbox.css */
374
- :root {
375
- --hw-space-unit: 4px;
376
- --hw-flex-gap: 3;
377
- --hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
378
- }
379
- .hwFlexbox {
380
- background-color: var(--container1-background);
381
- box-sizing: border-box;
382
- display: flex;
383
- gap: calc(var(--spacing) * var(--space));
384
- min-height: 0;
385
- min-width: 0;
386
- overflow: hidden;
387
- }
388
- .hwFlexbox-column {
389
- flex-direction: column;
390
- }
391
- .hwFlexbox-row {
392
- flex-direction: row;
393
- }
394
- .hwFlexbox > .Splitter {
395
- flex-basis: auto;
396
- flex-grow: 0;
397
- flex-shrink: 0;
398
- }
399
- .hwFlexbox.full-page {
400
- height: 100vh;
401
- width: 100vw;
402
- }
403
- .flex-fill {
404
- border-color: red;
405
- flex: 0;
406
- flex-grow: 1;
407
- flex-shrink: 1;
408
- }
409
- .vuuView.flex-fill {
410
- border-color: red;
411
- }
412
-
413
- /* ../vuu-layout/src/flexbox/FluidGrid.css */
414
- :root {
415
- --hw-space-unit: 4px;
416
- --hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
417
- }
418
- .hwFluidGrid {
419
- --gap: var(--gutter-width);
420
- display: flex;
421
- gap: calc(var(--grid-gap) * var(--hw-space-unit));
422
- flex-wrap: wrap;
423
- padding: 0;
424
- }
425
- .hwFluidGrid > * {
426
- --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
427
- --gutter-count: calc(var(--parent-col-count) - 1);
428
- --total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
429
- --available-width: calc(100% - var(--total-gutter-width));
430
- flex-basis: 0;
431
- flex-grow: 1;
432
- flex-shrink: 1;
433
- position: relative;
434
- }
435
- .hwFluidGrid > *:after {
436
- content: "";
437
- position: absolute;
438
- top: 0;
439
- left: 0;
440
- right: 0;
441
- bottom: 0;
442
- border: dashed 2px blue;
443
- }
444
- .hwFluidGrid > [data-xs] {
445
- --internal-gutter-count: calc(var(--col-span) - 1);
446
- --percent-width: calc(var(--col-span) / var(--parent-col-count));
447
- --internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
448
- flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
449
- flex-grow: 0;
450
- }
451
- .hwFluidGrid > [data-xs="1"] {
452
- --col-span: 1;
453
- }
454
- .hwFluidGrid > [data-xs="2"] {
455
- --col-span: 2;
456
- }
457
- .hwFluidGrid > [data-xs="3"] {
458
- --col-span: 3;
459
- }
460
- .hwFluidGrid > [data-xs="4"] {
461
- --col-span: 4;
462
- }
463
- .hwFluidGrid > [data-xs="6"] {
464
- --col-span: 6;
465
- }
466
- .hwFluidGrid > [data-xs="8"] {
467
- --col-span: 8;
468
- }
469
- .hwFluidGrid > [data-xs="9"] {
470
- --col-span: 9;
471
- }
472
- .hwFluidGrid > [data-xs="10"] {
473
- --col-span: 10;
474
- }
475
- .hwFluidGrid > [data-xs="11"] {
476
- --col-span: 11;
477
- }
478
- .hwFluidGrid > [data-xs="12"] {
479
- --col-span: 12;
480
- }
481
- @media (min-width: 600px) {
482
- .hwFluidGrid > [data-sm="1"] {
483
- --col-span: 1;
484
- }
485
- .hwFluidGrid > [data-sm="2"] {
486
- --col-span: 2;
487
- }
488
- .hwFluidGrid > [data-sm="3"] {
489
- --col-span: 3;
490
- }
491
- .hwFluidGrid > [data-sm="4"] {
492
- --col-span: 4;
493
- }
494
- .hwFluidGrid > [data-sm="6"] {
495
- --col-span: 6;
496
- }
497
- .hwFluidGrid > [data-sm="8"] {
498
- --col-span: 8;
499
- }
500
- .hwFluidGrid > [data-sm="9"] {
501
- --col-span: 9;
502
- }
503
- .hwFluidGrid > [data-sm="10"] {
504
- --col-span: 10;
505
- }
506
- .hwFluidGrid > [data-sm="11"] {
507
- --col-span: 11;
508
- }
509
- .hwFluidGrid > [data-sm="12"] {
510
- --col-span: 12;
511
- }
512
- }
513
- .hwFluidGrid-show-grid {
514
- --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
515
- --grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
516
- --grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
517
- --grid-available-width: calc(100% - var(--grid-total-gutter-width));
518
- --grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
519
- --column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
520
- 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)));
521
- }
522
-
523
- /* ../vuu-layout/src/layout-view/View.css */
524
- .vuuView {
525
- border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
526
- border-width: var(--vuuView-borderWidth, 1px);
527
- border-style: var(--vuuView-borderStyle, none);
528
- display: flex;
529
- flex-direction: column;
530
- margin: var(--vuuView-margin, 0px);
531
- min-height: 50px;
532
- min-width: 50px;
533
- outline: none;
534
- overflow: hidden;
535
- position: relative;
536
- }
537
- .vuuView.focus-visible:after {
538
- content: "";
539
- position: absolute;
540
- top: 0;
541
- left: 0;
542
- right: 0;
543
- bottom: 0;
544
- border: dotted cornflowerblue 2px;
545
- }
546
- .vuuView.dragging {
547
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
548
- }
549
- .vuuView-main {
550
- display: flex;
551
- flex-direction: var(--vuuView-flexDirection, column);
552
- flex-wrap: var(--vuuView-flex-wrap, nowrap);
553
- flex: 1;
554
- overflow: hidden;
555
- position: relative;
556
- }
557
- .vuuView-main > * {
558
- flex-basis: auto;
559
- flex-grow: var(--vuuView-flex-grow, 1);
560
- flex-shrink: var(--vuuView-flex-shrink, 1);
561
- }
562
- .vuuView-collapsed .vuuView-main {
563
- display: none;
564
- }
565
- .vuuView-collapsed + .Splitter {
566
- display: none;
567
- }
568
- .vuuView-collapsed .Toolbar-vertical {
569
- border-right: solid 1px var(--grey40);
570
- }
571
- .vuuView-collapsed .Toolbar-vertical .toolbar-title {
572
- display: none;
573
- }
574
-
575
- /* ../vuu-layout/src/layout-header/Header.css */
576
- .vuuHeader {
577
- --saltButton-height: 24px;
578
- --saltButton-width: 24px;
579
- }
580
- .salt-density-high .vuuHeader {
581
- --saltToolbarField-marginTop: 0;
582
- }
583
-
584
- /* ../vuu-layout/src/measured-container/MeasuredContainer.css */
585
- .vuuMeasuredContainer {
586
- height: var(--vuuMeasuredContainer-height, var(--measured-css-height));
587
- width: var(--measured-css-width);
588
- }
589
-
590
- /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
591
- .vuuOverflowContainer {
592
- --item-gap: 2px;
593
- --overflow-direction: row;
594
- --overflow-width: 0px;
595
- --border-size: calc((var(--overflow-container-height) - 24px) / 2);
596
- background-color: var(--vuuOverflowContainer-background);
597
- height: var(--overflow-container-height);
598
- }
599
- .vuuOverflowContainer-horizontal {
600
- --item-align: center;
601
- --item-margin: 0 var(--item-gap) 0 var(--item-gap);
602
- }
603
- .vuuOverflowContainer-vertical {
604
- --item-align: stretch;
605
- --item-margin: var(--item-gap) 0 var(--item-gap) 0;
606
- --overflow-direction: column;
607
- }
608
- .vuuOverflowContainer-wrapContainer {
609
- align-items: var(--item-align);
610
- display: flex;
611
- flex-direction: var(--overflow-direction);
612
- flex-wrap: wrap;
613
- height: var(--overflow-container-height);
614
- min-width: 44px;
615
- overflow: hidden;
616
- position: relative;
617
- width: 100%;
618
- }
619
- .vuuOverflowContainer-wrapContainer.overflowed {
620
- --overflow-order: 2;
621
- --overflow-left: auto;
622
- --overflow-position: relative;
623
- --overflow-width: auto;
624
- }
625
- .vuuOverflowContainer-item {
626
- align-items: inherit;
627
- display: flex;
628
- order: 1;
629
- position: relative;
630
- height: var(--overflow-container-height);
631
- margin: var(--item-margin);
632
- }
633
- .vuuOverflowContainer-item[data-align=right] {
634
- margin-left: auto;
635
- }
636
- .vuuOverflowContainer-item.wrapped {
637
- --overflow-item-bg: #ccc;
638
- order: 3;
639
- }
640
- .vuuOverflowContainer-item.vuuDraggable-dragAway,
641
- .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
642
- display: none;
643
- }
644
- .vuuOverflowContainer-item.vuuDropTarget-settling {
645
- visibility: hidden;
646
- }
647
- .vuuOverflowContainer-OverflowIndicator {
648
- align-items: center;
649
- background-color: transparent;
650
- display: flex;
651
- height: var(--overflow-container-height);
652
- height: var(--overflow-container-height);
653
- order: var(--overflow-order, 99);
654
- overflow: hidden;
655
- left: var(--overflow-left, 100%);
656
- position: var(--overflow-position, absolute);
657
- width: var(--overflow-width);
658
- }
659
- .vuuDraggable-vuuOverflowContainer {
660
- align-items: center;
661
- display: flex;
662
- height: 44px;
663
- }
664
-
665
- /* ../vuu-layout/src/palette/Palette.css */
666
- .vuuPalette {
667
- --vuuList-borderStyle: none;
668
- }
669
- .vuuPalette-horizontal {
670
- align-items: center;
671
- display: flex;
672
- }
673
- .vuuPaletteItem {
674
- --vuu-icon-color: var(--salt-text-primary-foreground);
675
- --vuu-icon-left: 0;
676
- --vuu-icon-size: 16px;
677
- --vuu-icon-top: 11px;
678
- --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
679
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
680
- padding-left: 12px;
681
- font-size: 12px;
682
- font-weight: 600;
683
- }
684
- .vuuSimpleDraggableWrapper > .vuuPaletteItem {
685
- --vuu-icon-color: var(--salt-selectable-foreground);
686
- }
687
- .salt-theme .vuuPaletteItem {
688
- font-size: 11px;
689
- font-weight: normal;
690
- }
691
-
692
- /* ../vuu-layout/src/stack/Stack.css */
693
- .Tabs {
694
- display: flex;
695
- box-sizing: border-box;
696
- flex-direction: column;
697
- }
698
- .Tabs-horizontal {
699
- --vuu-tabs-border-style: none solid none none;
700
- flex-direction: row;
701
- }
702
- .Tabs .Toolbar:before {
703
- left: 0;
704
- width: 100%;
705
- bottom: 0;
706
- height: 1px;
707
- content: "";
708
- position: absolute;
709
- background: var(--grey60);
710
- }
711
- .vuuTabHeader {
712
- --saltTabs-activationIndicator-background: transparent;
713
- --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
714
- border-color: var(--salt-container-primary-borderColor);
715
- border-style: var(--vuu-tabs-border-style, none none solid none);
716
- border-width: 1px;
717
- }
718
- .vuuTabHeader + .hwFlexbox,
719
- .vuuTabHeader + * {
720
- flex: 1;
721
- }
722
- .vuuTabHeader + .vuuView > .vuuHeader {
723
- height: 0;
724
- overflow: hidden;
725
- }
726
- .Layout-svg-button {
727
- --spacing-medium: 5px;
728
- }
729
-
730
- /* ../vuu-layout/src/toolbar/Toolbar.css */
731
- .vuuToolbar {
732
- background: var(--vuuToolbar-background, inherit);
733
- height: var(--vuuToolbar-height, 36px);
734
- }
735
- .vuuToolbarItem {
736
- height: 100%;
737
- }
738
- .vuuToolbarItem.vuuFocusVisible {
739
- outline-color: var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));
740
- outline-style: dashed;
741
- outline-width: 1px;
742
- outline-offset: -1px;
743
- }
744
-
745
- /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
746
- [data-design-mode=true] .Component {
747
- filter: grayscale(100%);
748
- opacity: 0.4;
749
- }
750
- [data-design-mode=true] .Component:after {
751
- color: black;
752
- content: "Component";
753
- height: 12px;
754
- background-color: yellow;
755
- }
756
- .LayoutConfigurator {
757
- --margin-color: #f3cea5;
758
- --border-color: #fddda0;
759
- --padding-color: #c6d092;
760
- --content-color: #8cb6c0;
761
- display: flex;
762
- flex-direction: column;
763
- align-items: stretch;
764
- background-color: var(--margin-color);
765
- }
766
- .LayoutConfigurator .layout-outer {
767
- flex: 1 1 auto;
768
- display: flex;
769
- flex-direction: column;
770
- align-items: stretch;
771
- }
772
- .LayoutBox {
773
- --hw-control-font-size: 13px;
774
- --hw-text-input-bg: rgba(255, 255, 255, 0.3);
775
- --hwTextInput-padding: 3px;
776
- --hw-text-input-position: absolute;
777
- --hwTextInput-width: 30px;
778
- flex: 1 1 auto;
779
- }
780
- .LayoutBox > .layout-top {
781
- flex: 0 0 40px;
782
- padding-left: 12px;
783
- display: flex;
784
- flex-direction: row;
785
- align-items: center;
786
- position: relative;
787
- }
788
- .LayoutBox > .layout-bottom {
789
- flex: 0 0 40px;
790
- position: relative;
791
- display: flex;
792
- flex-direction: row;
793
- align-items: center;
794
- }
795
- .LayoutBox > .layout-inner > .layout-right,
796
- .LayoutBox > .layout-inner > .layout-left {
797
- flex: 0 0 40px;
798
- display: flex;
799
- flex-direction: column;
800
- justify-content: center;
801
- align-items: center;
802
- }
803
- .layout-top,
804
- .layout-bottom {
805
- --hw-text-input-margin: 0 0 0 -15px;
806
- }
807
- .layout-top > .layout-input,
808
- .layout-bottom > .layout-input {
809
- left: 50%;
810
- }
811
- .LayoutBox > .layout-inner {
812
- flex: 1 1 auto;
813
- display: flex;
814
- flex-direction: row;
815
- align-items: stretch;
816
- }
817
- .LayoutBox.layout-margin {
818
- background-color: var(--margin-color);
819
- border: dashed 2px black;
820
- }
821
- .LayoutBox.layout-border {
822
- background-color: var(--border-color);
823
- border: solid 2px black;
824
- }
825
- .LayoutBox.layout-padding {
826
- background-color: var(--padding-color);
827
- border: dashed 2px black;
828
- }
829
- .LayoutBox .layout-content {
830
- flex: 1 1 auto;
831
- background-color: var(--content-color);
832
- border: solid 2px #808080;
833
- }
834
- .LayoutBox .layout-title {
835
- color: #161616;
836
- font-size: 11px;
837
- left: 4px;
838
- line-height: 15px;
839
- position: absolute;
840
- top: 1px;
841
- }
842
-
843
- /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
844
- .hwLayoutTreeViewer {
845
- }
846
- .hwLayoutTreeNode {
847
- cursor: default;
848
- }
849
- .hwLayoutTreeNode:hover {
850
- background-color: rgba(255, 255, 255, 0.2);
851
- }
852
- .hwLayoutTreeNode[aria-selected=true] {
853
- background-color: cornflowerblue;
854
- color: white;
855
- }
856
-
857
- /* src/filter-builder-menu/FilterBuilderMenu.css */
858
- .vuuFilterBuilderMenu {
859
- margin: 0;
860
- }
861
- .vuuFilterBuilderMenu-trigger {
862
- display: inline-block;
863
- height: 26px;
864
- width: 0px;
865
- }
866
- .vuuFilterBuilderMenuList {
867
- --vuuList-borderStyle: none;
868
- }
869
- .vuuListItem.vuuMenuButton {
870
- color: var(--vuu-color-gray-50);
871
- font-size: 9px;
872
- padding: 0 8px;
873
- }
874
- .vuuListItem.vuuMenuButton:after {
875
- border-radius: 6px;
876
- content: "";
877
- position: absolute;
878
- height: 16px;
879
- background-color: transparent;
880
- left: 4px;
881
- right: 4px;
882
- border: solid 1px var(--salt-actionable-primary-foreground);
883
- }
884
-
885
- /* src/filter-clause/ExpandoCombobox.css */
886
- .vuuExpandoCombobox {
887
- --expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);
888
- --expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);
889
- --saltInput-outline: none;
890
- --saltInput-fontSize: var(--expando-combobox-fontSize);
891
- --saltInput-height: var(--expando-combobox-height);
892
- --saltInput-minWidth: 4px;
893
- display: inline-flex;
894
- flex-direction: column;
895
- height: var(--expando-combobox-height);
896
- min-width: 4px;
897
- padding: 0;
898
- }
899
- .vuuExpandoCombobox .saltInput {
900
- background-color: transparent;
901
- position: absolute;
902
- }
903
- .vuuExpandoCombobox .vuuDropdown {
904
- height: 100%;
905
- }
906
- .vuuExpandoCombobox-Input.saltInput {
907
- border: none;
908
- left: 0px;
909
- margin: 0;
910
- min-height: 100%;
911
- padding: 0;
912
- right: 0px;
913
- width: auto;
914
- }
915
- .vuuExpandoCombobox .saltInput-input {
916
- border: none;
917
- box-sizing: content-box;
918
- display: block;
919
- flex: 1;
920
- font: inherit;
921
- margin: 0;
922
- min-width: 0;
923
- outline: none;
924
- padding: 0;
925
- }
926
- .vuuExpandoCombobox:before {
927
- content: attr(data-text);
928
- display: block;
929
- font-size: var(--expando-combobox-fontSize);
930
- height: 0px;
931
- overflow: hidden;
932
- white-space: pre-wrap;
933
- }
934
-
935
- /* src/filter-clause/CloseButton.css */
936
- .vuu-theme {
937
- --salt-actionable-secondary-background: #ffffff;
938
- --salt-actionable-secondary-background-hover: #f37880;
939
- --salt-actionable-secondary-background-disabled: #ffffff;
940
- --salt-actionable-secondary-foreground: #606477;
941
- --salt-actionable-secondary-foreground-hover: #15171b;
942
- --salt-actionable-secondary-foreground-active: #ffffff;
943
- --salt-actionable-secondary-foreground-disabled: #9b9ea8;
944
- }
945
- .vuuFilterClause-closeButton {
946
- height: 16px;
947
- width: 16px;
948
- border-radius: 6px;
949
- padding: 0;
950
- }
951
- .vuuFilterClause-closeButton:focus-visible {
952
- }
953
- .vuuFilterClause-closeButton:not(:hover) {
954
- background: var(--salt-actionable-secondary-background);
955
- }
956
-
957
- /* src/filter-clause/FilterClauseEditor.css */
958
- .vuuFilterClause {
959
- --vuuExpandoInput-top: 0;
960
- --vuuExpandoInput-height: 16px;
961
- --vuuExpandoCombobox-height: 16px;
962
- --saltButton-height: 16px;
963
- --saltButton-width: 16px;
964
- display: flex;
965
- flex-direction: row;
966
- width: fit-content;
967
- border-color: var(--vuu-color-gray-45);
968
- border-radius: 6px;
969
- border-width: 1px;
970
- border-style: solid;
971
- background: #ffffff;
972
- --salt-focused-outlineStyle: dotted;
973
- }
974
- .vuuFilterClause:focus-within {
975
- border-color: var(--vuu-color-purple-10);
976
- }
977
- .vuu-density-high .vuuFilterClause {
978
- padding: 4px 8px;
979
- gap: 4px;
980
- --salt-text-lineHeight: 12px;
981
- --saltInputLegacy-fontSize: 12px;
982
- --saltInputLegacy-minWidth: 12px;
983
- }
984
- .vuu-density-high .vuuFilterClause .saltInput {
985
- padding: 0;
986
- min-height: 16px;
987
- height: 16px;
988
- }
989
- .vuuFilterClause .vuuExpandoCombobox {
990
- flex-basis: auto;
991
- flex-shrink: 0;
992
- flex-grow: 0;
993
- }
994
- .vuuFilterClauseOperator-hidden {
995
- display: none;
996
- }
997
- .vuuFilterClause :not(.vuuFilterClauseNumericValue) .saltInput {
998
- }
999
- .vuuFilterClause .saltInput-focused,
1000
- .vuuFilterClause .saltTokenizedInput-focused {
1001
- outline: none;
1002
- color: var(--salt-text-primary-foreground);
1003
- }
1004
- .vuuFilterClause .saltInput-input::selection {
1005
- color: #ffffff;
1006
- }
1007
- .vuu-theme .saltList {
1008
- --list-borderWidth: 1px;
1009
- --list-borderStyle: solid;
1010
- border-radius: 4px;
1011
- box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
1012
- }
1013
- .saltListItem[aria-selected=true]:not(.saltListItem-checkbox) {
1014
- --list-item-background: var(--list-item-background-active);
1015
- color: var(--list-item-text-color-active);
1016
- }
1017
- .saltTokenizedInput {
1018
- height: 16px;
1019
- min-height: 16px;
1020
- }
1021
- .saltTokenizedInput .saltInputPill {
1022
- --pill-fontSize: 12px;
1023
- --saltButton-borderStyle: none;
1024
- --pill-background: none;
1025
- height: 16px;
1026
- margin: 0;
1027
- }
1028
- .saltTokenizedInput-pillGroup {
1029
- padding: 0;
1030
- height: 16px;
1031
- }
1032
-
1033
- /* src/filter-pill-menu/FilterPillMenu.css */
1034
- .vuuFilterPillMenu {
1035
- top: -1px;
1036
- }
1037
-
1038
- /* src/filter-pill/FilterPill.css */
1039
- .vuuFilterPill {
1040
- --vuuToolbarItem-outlineColor: white;
1041
- align-items: center;
1042
- background: var(--salt-taggable-background);
1043
- border: solid 1px var(--salt-taggable-foreground);
1044
- border-radius: 26px;
1045
- color: var(--vuu-color-gray-50);
1046
- display: inline-flex;
1047
- height: 26px;
1048
- max-width: var(--vuuFilterPill-maxWidth, 200px);
1049
- padding: 0 8px;
1050
- position: relative;
1051
- user-select: none;
1052
- outline: none;
1053
- }
1054
- .vuuFilterPill[aria-selected=true] {
1055
- --vuuPopupMenu-iconColor: white;
1056
- --salt-text-background-selected: var(--vuu-color-blue-40);
1057
- --salt-text-color-selected: var(--salt-text-primary-foreground);
1058
- --saltInput-background-hover: var(--salt-taggable-background-active);
1059
- --saltInput-color: var(--salt-taggable-foreground-active);
1060
- background: var(--salt-taggable-background-active);
1061
- color: white;
1062
- }
1063
- .vuuFilterPill:not([aria-selected="true"]):hover {
1064
- --vuuPopupMenu-iconColor: var(--vuu-color-gray-80);
1065
- background-color: var(--salt-taggable-background-hover);
1066
- border-color: var(--salt-taggable-background-hover);
1067
- color: var(--vuu-color-gray-80);
1068
- }
1069
-
1070
- /* src/filter-bar/FilterBar.css */
1071
- .vuuFilterBar {
1072
- --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>');
1073
- --vuuToolbar-height: 26px;
1074
- --salt-container-primary-borderColor: var(--vuu-color-purple-10);
1075
- --saltButton-height: 26px;
1076
- --saltButton-width: 26px;
1077
- align-items: center;
1078
- background-color: var(--salt-container-secondary-background);
1079
- border-bottom: solid 1px #D6D7DA;
1080
- display: flex;
1081
- gap: 4px;
1082
- height: 33px;
1083
- padding: 3px 8px;
1084
- }
1085
- .vuuFilterbar-icon {
1086
- display: inline-block;
1087
- height: 16px;
1088
- width: 16px;
1089
- }
1090
- .vuuFilterBar [data-icon=tune] {
1091
- --vuu-icon-size: 16px;
1092
- --vuu-icon-svg: var(--vuu-svg-tune);
1093
- }
1094
- .vuuFilterBar [data-icon=plus] {
1095
- --vuu-icon-size: 16px;
1096
- }
1097
- .vuuFilterBar .vuuToolbar {
1098
- flex: 1 1 auto;
1099
- }
1100
-
1101
- /* src/filter-input/FilterInput.css */
1102
- .salt-theme {
1103
- --vuuFilterEditor-lineHeight: 28px;
1104
- }
1105
- .salt-density-high {
1106
- --vuuFilterEditor-buttonWidth: 20px;
1107
- --vuuFilterEditor-height: 22px;
1108
- --vuuFilterEditor-lineHeight: 20px;
1109
- }
1110
- .vuuFilterInput {
1111
- --vuuFilterEditor-background: var(--salt-container-primary-background);
1112
- --vuuFilterEditor-color: var(--salt-text-primary-foreground);
1113
- --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
1114
- --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
1115
- --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
1116
- --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
1117
- --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
1118
- --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
1119
- --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
1120
- --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
1121
- --vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);
1122
- --vuuFilterEditor-suggestion-height: 24px;
1123
- --vuuFilterEditor-variableColor: blue;
1124
- align-items: center;
1125
- border-color: var(--salt-container-secondary-borderColor);
1126
- border-style: solid none;
1127
- border-width: 1px;
1128
- box-sizing: border-box;
1129
- display: flex;
1130
- height: var(--vuuFilterEditor-height, 30px);
1131
- }
1132
- .vuuFilterInput-Editor {
1133
- flex: 1 1 auto;
1134
- height: 100%;
1135
- }
1136
- .vuuFilterInput-FilterButton,
1137
- .vuuFilterInput-ClearButton {
1138
- --vuu-icon-size: 12px;
1139
- --saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px);
1140
- }
1141
- .vuuIllustration {
1142
- --vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);
1143
- background: var(--salt-container-secondary-background);
1144
- color: var(--salt-text-secondary-foreground);
1145
- }
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:0px;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%}.vuuPlaceholder{flex-basis:0;flex-grow:1;flex-shrink:1}.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)))}.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;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}.vuuHeader{--saltButton-height: 24px;--saltButton-width: 24px}.salt-density-high .vuuHeader{--saltToolbarField-marginTop: 0}.vuuMeasuredContainer{height:var(--vuuMeasuredContainer-height, var(--measured-css-height));width:var(--measured-css-width)}.vuuOverflowContainer{--item-gap: 2px;--overflow-direction: row;--overflow-width: 0px;--border-size: calc((var(--overflow-container-height) - 24px) / 2);background-color:var(--vuuOverflowContainer-background);height:var(--overflow-container-height)}.vuuOverflowContainer-horizontal{--item-align: center;--item-margin: 0 var(--item-gap) 0 var(--item-gap)}.vuuOverflowContainer-vertical{--item-align: stretch;--item-margin: var(--item-gap) 0 var(--item-gap) 0;--overflow-direction: column}.vuuOverflowContainer-wrapContainer{align-items:var(--item-align);display:flex;flex-direction:var(--overflow-direction);flex-wrap:wrap;height:var(--overflow-container-height);min-width:44px;overflow:hidden;position:relative;width:100%}.vuuOverflowContainer-wrapContainer.overflowed{--overflow-order: 2;--overflow-left: auto;--overflow-position: relative;--overflow-width: auto}.vuuOverflowContainer-item{align-items:inherit;display:flex;order:1;position:relative;height:var(--overflow-container-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-container-height);order:var(--overflow-order, 99);overflow:hidden;left:var(--overflow-left, 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}.Tabs{display:flex;box-sizing:border-box;flex-direction:column}.Tabs-horizontal{--vuu-tabs-border-style: none solid none none;flex-direction:row}.Tabs .Toolbar:before{left:0;width:100%;bottom:0;height:1px;content:"";position:absolute;background:var(--grey60)}.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+.hwFlexbox,.vuuTabHeader+*{flex:1}.vuuTabHeader+.vuuView>.vuuHeader{height:0;overflow:hidden}.Layout-svg-button{--spacing-medium: 5px}.vuuToolbar{background:var(--vuuToolbar-background, inherit);height:var(--vuuToolbar-height, 36px)}.vuuToolbarItem{height:100%}.vuuToolbarItem.vuuFocusVisible{outline-color:var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));outline-style:dashed;outline-width:1px;outline-offset:-1px}[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.vuuMenuButton{color:var(--vuu-color-gray-50);font-size:9px;padding:0 8px}.vuuListItem.vuuMenuButton:after{border-radius:6px;content:"";position:absolute;height:16px;background-color:transparent;left:4px;right:4px;border:solid 1px var(--salt-actionable-primary-foreground)}.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:0px;margin:0;min-height:100%;padding:0;right:0px;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}.vuu-theme{--salt-actionable-secondary-background: #ffffff;--salt-actionable-secondary-background-hover: #f37880;--salt-actionable-secondary-background-disabled: #ffffff;--salt-actionable-secondary-foreground: #606477;--salt-actionable-secondary-foreground-hover: #15171b;--salt-actionable-secondary-foreground-active: #ffffff;--salt-actionable-secondary-foreground-disabled: #9b9ea8}.vuuFilterClause-closeButton{height:16px;width:16px;border-radius:6px;padding:0}.vuuFilterClause-closeButton:not(:hover){background:var(--salt-actionable-secondary-background)}.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:#ffffff;--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{--vuuToolbarItem-outlineColor: white;align-items:center;background:var(--salt-taggable-background);border:solid 1px var(--salt-taggable-foreground);border-radius:26px;color:var(--vuu-color-gray-50);display:inline-flex;height:26px;max-width:var(--vuuFilterPill-maxWidth, 200px);padding:0 8px;position:relative;user-select:none;outline:none}.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)}.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: 26px;--salt-container-primary-borderColor: var(--vuu-color-purple-10);--saltButton-height: 26px;--saltButton-width: 26px;align-items:center;background-color:var(--salt-container-secondary-background);border-bottom:solid 1px #D6D7DA;display:flex;gap:4px;height:33px;padding:3px 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:1 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: blue;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)}
1146
2
  /*# sourceMappingURL=index.css.map */