@vuu-ui/vuu-layout 0.8.8-debug → 0.8.8

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,1571 +1,2 @@
1
- /* 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
- /* 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
- /* src/Component.css */
166
-
167
- /* 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
- /* src/drag-drop/DropTargetRenderer.css */
230
- #hw-drag-canvas {
231
- visibility: hidden;
232
- z-index: 1;
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
- /* 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
- /* 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
- /* src/flexbox/Splitter.css */
295
- .Splitter {
296
- --splitter-size: 3px;
297
- --splitter-border-width: 4px;
298
- --splitter-border-style: none;
299
- --splitter-border-color: white;
300
- align-items: center;
301
- background-color: var(--salt-palette-neutral-secondary-separator);
302
- border-color: var(--splitter-border-color);
303
- border-style: var(--splitter-border-style);
304
- box-sizing: border-box;
305
- display: flex;
306
- justify-content: center;
307
- position: relative;
308
- outline: none;
309
- z-index: 1;
310
- }
311
- .Splitter:hover {
312
- background-color: var(--salt-palette-neutral-primary-separator);
313
- }
314
- .active.Splitter {
315
- background-color: var(--salt-palette-interact-outline);
316
- }
317
- .Splitter.column {
318
- cursor: ns-resize;
319
- height: var(--splitter-size);
320
- border-width: var(--splitter-border-width) 0;
321
- }
322
- .Splitter:not(.column) {
323
- cursor: ew-resize;
324
- width: var(--splitter-size);
325
- border-width: 0 var(--splitter-border-width);
326
- }
327
- .Splitter:before {
328
- border: none;
329
- border-radius: 0;
330
- content: "";
331
- display: block;
332
- padding: 0;
333
- }
334
- .Splitter .grab-zone {
335
- position: absolute;
336
- background-color: rgba(255, 0, 0, 0.01);
337
- cursor: inherit;
338
- }
339
- .Splitter.column .grab-zone {
340
- left: 0;
341
- right: 0;
342
- top: -5px;
343
- bottom: -5px;
344
- }
345
- .Splitter:not(.column) .grab-zone {
346
- left: -5px;
347
- right: -5px;
348
- top: 0;
349
- bottom: 0;
350
- }
351
- .active.Splitter:not(.column) .grab-zone {
352
- background-color: rgba(255, 255, 255, .05);
353
- left: -150px;
354
- right: -150px;
355
- }
356
- .Splitter:not(.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
- .active.Splitter.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
- .active.Splitter:not(.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
- .Splitter.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
- /* 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
- /* 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-ui-controls/src/drag-drop/Draggable.css */
524
- .vuuDraggable {
525
- background: transparent;
526
- box-shadow: var(--salt-overlayable-shadow-drag);
527
- cursor: var(--salt-draggable-grab-cursor-active);
528
- position: absolute;
529
- opacity: .95;
530
- z-index: 2000;
531
- }
532
- .vuuDraggable-spacer {
533
- display: var(--vuuDraggable-display, inline-block);
534
- height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
535
- transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
536
- width: var(--vuuDraggable-spacer-width, 0);
537
- }
538
- .vuuDraggable-dropIndicatorPosition {
539
- display: var(--saltDraggable-display, inline-block);
540
- height: 0px;
541
- width: 100%;
542
- }
543
- .vuuDraggable-dropIndicatorContainer {
544
- transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
545
- }
546
- .vuuDraggable-dropIndicator {
547
- background-color: var(--salt-palette-accent-background);
548
- height: 2px;
549
- width: 100%;
550
- }
551
- .vuuDraggable-dropIndicator:before {
552
- content: "";
553
- width: 6px;
554
- height: 6px;
555
- border-radius: 3px;
556
- background-color: var(--salt-palette-accent-background);
557
- position: absolute;
558
- top: -2px;
559
- left: -3px;
560
- }
561
- .vuuDraggable-settling {
562
- transition-property: left, top;
563
- transition-duration: .15s;
564
- transition-timing-function: ease-out;
565
- }
566
- .vuuDraggable-spacer {
567
- order: 1;
568
- }
569
-
570
- /* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
571
- .vuuEditableLabel {
572
- --saltInput-background: transparent;
573
- --saltInput-minWidth: 14px;
574
- --saltInput-position: absolute;
575
- --editableLabel-padding: var(--saltEditableLabel-padding, 6px);
576
- --editableLabel-height: var(--saltEditableLabel-height, 26px);
577
- color: inherit;
578
- cursor: default;
579
- display: flex;
580
- flex-direction: column;
581
- font-size: var(--salt-text-fontSize);
582
- height: var(--editableLabel-height);
583
- justify-content: center;
584
- outline: none;
585
- padding: 0 var(--editableLabel-padding);
586
- position: relative;
587
- z-index: var(--salt-zIndex-default);
588
- }
589
- .vuuEditableLabel:before {
590
- content: attr(data-text);
591
- display: block;
592
- height: 0px;
593
- visibility: hidden;
594
- white-space: pre-wrap;
595
- }
596
- .vuuEditableLabel .saltInput {
597
- font-weight: var(--salt-text-fontWeight);
598
- left: var(--editableLabel-padding, 0);
599
- padding: 0;
600
- outline-style: none;
601
- position: absolute;
602
- right: var(--editableLabel-padding, 0);
603
- top: var(--saltEditableLabel-top, 2px);
604
- width: auto;
605
- }
606
- .vuuEditableLabel .saltInput-activationIndicator {
607
- display: none;
608
- }
609
- .vuuEditableLabel-input {
610
- background-color: transparent;
611
- border: none;
612
- box-sizing: content-box;
613
- display: block;
614
- flex: 1;
615
- font: inherit;
616
- height: 20px;
617
- margin: 0;
618
- min-width: 0;
619
- outline: none;
620
- padding: 0;
621
- }
622
-
623
- /* ../vuu-ui-controls/src/list/Highlighter.css */
624
- .saltHighlighter-highlight {
625
- font-weight: var(--salt-text-fontWeight-strong);
626
- }
627
-
628
- /* ../vuu-ui-controls/src/list/CheckboxIcon.css */
629
- .vuuCheckboxIcon {
630
- --vuu-icon-size: 14px;
631
- --vuu-icon-left: -1px;
632
- --vuu-icon-top: -1px;
633
- --vuu-icon-svg: var(--vuu-svg-tick);
634
- border-style: solid;
635
- border-color: var(--vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor));
636
- border-radius: var(--vuuCheckboxIcon-borderRadius, 3px);
637
- border-width: 1px;
638
- display: inline-block;
639
- height: var(--vuuCheckboxIcon-size, 14px);
640
- position: relative;
641
- width: var(--vuuCheckboxIcon-size, 14px);
642
- }
643
- .vuuCheckboxIcon-checked {
644
- background-color: var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));
645
- border-color: var(--vuuCheckboxIcon-borderColor-checked, var(--salt-selectable-borderColor-selected));
646
- }
647
- .vuuCheckboxIcon-checked:after {
648
- content: "";
649
- background-color: white;
650
- left: var(--vuu-icon-left, auto);
651
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
652
- -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
653
- mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
654
- mask-repeat: no-repeat;
655
- -webkit-mask-repeat: no-repeat;
656
- position: absolute;
657
- top: var(--vuu-icon-top, auto);
658
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
659
- }
660
-
661
- /* ../vuu-ui-controls/src/list/ListItem.css */
662
- .vuuListItem {
663
- --list-item-text-color: var(--salt-text-primary-foreground);
664
- --list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));
665
- --list-item-text-color-active: var(--salt-text-primary-foreground);
666
- --list-item-background-active: var(--salt-selectable-background-selected);
667
- --list-item-alignItems: center;
668
- }
669
- .vuuListItem.saltHighlighted {
670
- --saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);
671
- --list-item-background: var(--salt-selectable-background-hover);
672
- }
673
- .vuuListItemHeader {
674
- font-weight: var(--salt-text-fontWeight-strong);
675
- }
676
- .vuuListItemHeader[data-sticky] {
677
- position: sticky;
678
- top: 0;
679
- z-index: 1;
680
- }
681
- .vuuListItem {
682
- color: var(--list-item-text-color);
683
- cursor: var(--vuuList-item-cursor, pointer);
684
- background: var(--vuuList-item-background, var(--list-item-background));
685
- font-size: var(--salt-text-fontSize);
686
- text-align: var(--salt-text-textAlign);
687
- line-height: var(--salt-text-lineHeight);
688
- height: var(--vuuList-item-height, var(--list-item-height, auto));
689
- margin-bottom: var(--list-item-gap);
690
- padding: 0 var(--salt-size-unit);
691
- left: 0;
692
- right: 0;
693
- display: flex;
694
- position: relative;
695
- align-items: var(--list-item-alignItems);
696
- white-space: nowrap;
697
- }
698
- .vuuListItem:last-child {
699
- margin-bottom: 0px;
700
- }
701
- .vuuListItem-checkbox {
702
- --list-item-background-active: var(--salt-selectable-background);
703
- --list-item-text-color-active: var(--salt-text-primary-foreground);
704
- --list-item-text-padding: 0 0 0 var(--salt-size-unit);
705
- }
706
- .vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox) {
707
- --list-item-background: var(--list-item-background-active);
708
- color: var(--list-item-text-color-active);
709
- }
710
- .vuuListItem.saltDisabled {
711
- --list-item-text-color: var(--salt-text-primary-foreground-disabled);
712
- cursor: var(--salt-selectable-cursor-disabled);
713
- }
714
- .vuuListItem.vuuFocusVisible {
715
- outline-style: var(--salt-focused-outlineStyle);
716
- outline-width: var(--salt-focused-outlineWidth);
717
- outline-offset: -2px;
718
- outline-color: var(--salt-focused-outlineColor);
719
- }
720
- .vuuListItem.vuuFocusVisible:after {
721
- content: none;
722
- }
723
- .vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible {
724
- outline-color: var(--list-item-selected-focus-outlineColor);
725
- }
726
- .vuuListItem-textWrapper {
727
- flex: 1;
728
- overflow: hidden;
729
- padding: var(--list-item-text-padding, 0px);
730
- white-space: nowrap;
731
- text-overflow: ellipsis;
732
- }
733
- .vuuListItem-proxy {
734
- position: absolute !important;
735
- visibility: hidden;
736
- }
737
- .vuuDraggable-list-item {
738
- --vuuList-item-height: 24px;
739
- background-color: white;
740
- }
741
- .vuuListItem.vuuDraggable-dragAway {
742
- display: none;
743
- }
744
-
745
- /* ../vuu-ui-controls/src/list/List.css */
746
- .vuuList {
747
- --list-background: var(--salt-container-primary-background);
748
- --list-borderStyle: var(--vuuList-borderStyle,--salt-container-borderStyle);
749
- --list-borderWidth: var(--salt-size-border);
750
- --list-height: auto;
751
- --list-item-height: var(--salt-size-stackable);
752
- --list-item-gap: 0px;
753
- --list-maxHeight: 100%;
754
- --vuuDraggable-display: block;
755
- --vuuDraggable-spacer-height: 0;
756
- --vuuDraggable-spacer-width: 100%;
757
- --vuuDraggable-transitionProp: height;
758
- background: var(--list-background);
759
- border-color: var(--salt-container-primary-borderColor);
760
- border-style: var(--list-borderStyle);
761
- border-width: var(--list-borderWidth);
762
- height: var(--saltList-height, var(--list-height));
763
- max-height: var(--list-maxHeight);
764
- outline: none;
765
- overflow-y: auto;
766
- position: relative;
767
- user-select: none;
768
- width: var(--saltList-width, auto);
769
- }
770
- .vuuList-borderless {
771
- --list-borderStyle: none;
772
- }
773
- .vuuList-viewport {
774
- --list-item-height: 30px;
775
- max-height: calc(var(--list-maxHeight) - 2 * var(--list-borderWidth));
776
- overflow: auto;
777
- }
778
- .vuuListItemHeader {
779
- --saltList-item-background: var(--list-item-header-background);
780
- color: var(--list-item-header-color);
781
- }
782
- .vuuListItemHeader[data-sticky=true] {
783
- --saltList-item-background: var(--list-background);
784
- position: sticky;
785
- top: 0;
786
- z-index: 1;
787
- }
788
- .vuuList-collapsible .vuuListItemHeader:after {
789
- border-width: var(--checkbox-borderWidth);
790
- border-color: var(--checkbox-borderColor);
791
- content: var(--list-item-header-twisty-content);
792
- -webkit-mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
793
- mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
794
- background: var(--list-item-header-twisty-color);
795
- height: 12px;
796
- left: var(--list-item-header-twisty-left);
797
- right: var(--list-item-header-twisty-right);
798
- margin-top: -8px;
799
- position: absolute;
800
- top: var(--list-item-header-twisty-top);
801
- transition: transform 0.3s;
802
- width: 12px;
803
- }
804
- .vuuListItemHeader[aria-expanded=false]:after {
805
- transform: rotate(-90deg);
806
- }
807
- .vuuList-scrollingContentContainer {
808
- box-sizing: inherit;
809
- position: relative;
810
- }
811
- .vuuList-virtualized .vuuListItem {
812
- line-height: 30px;
813
- position: absolute;
814
- top: 0;
815
- left: 0;
816
- right: 0;
817
- will-change: transform;
818
- }
819
- .vuuList.saltFocusVisible:after {
820
- inset: 2px;
821
- }
822
-
823
- /* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
824
- .vuuTabstrip {
825
- --vuuOverflowContainer-background: transparent;
826
- --tabstrip-dragging-display: none;
827
- --tabstrip-display: inline-flex;
828
- --tabstrip-background: transparent;
829
- align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
830
- font-size: var(--salt-text-fontSize);
831
- font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
832
- position: relative;
833
- overflow: visible;
834
- display: flex;
835
- min-width: 28px;
836
- width: var(--tabstrip-width);
837
- }
838
- .vuuTabstrip-horizontal {
839
- --tabstrip-height: var(--vuuTabstrip-height, 28px);
840
- --tabstrip-width: var(--vuuTabstrip-width, 100%);
841
- --tab-width: auto;
842
- --tab-thumb-height: 2px;
843
- --tab-thumb-left: var(--tab-thumb-offset, 0);
844
- --tab-thumb-top: auto;
845
- --tab-thumb-width: var(--tab-thumb-size, 100%);
846
- align-items: flex-start;
847
- border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
848
- }
849
- .vuuTabstrip-vertical {
850
- --tabstrip-height: var(--vuuTabstrip-height, 100%);
851
- --tabstrip-width: var(--vuuTabstrip-width, 100px);
852
- --tab-width: 100%;
853
- --tab-thumb-height: var(--tab-thumb-size, 100%);
854
- --tab-thumb-left: 0;
855
- --tab-thumb-top: var(--tab-thumb-offset, 0);
856
- --tab-thumb-width: 2px;
857
- align-self: flex-start;
858
- display: inline-flex;
859
- }
860
- .vuuTabstrip-draggingTab .vuuTab {
861
- pointer-events: none;
862
- }
863
- .vuuTabstrip-addTabButton {
864
- --saltButton-height: 20px;
865
- --saltButton-width: 20px;
866
- }
867
- .vuuTabstrip-overflowMenu.saltDropdown {
868
- --saltIcon-margin: 2px 0 0 0px;
869
- }
870
- .vuuTabstrip-overflowMenu-open {
871
- --saltButton-background: var(--salt-actionable-secondary-background-active);
872
- --saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
873
- }
874
- .vuuTabstrip-overflowMenu-open .saltButton {
875
- --saltIcon-color: var(--salt-actionable-secondary-foreground-active);
876
- }
877
- .vuuTabstrip-inner {
878
- width: 100%;
879
- align-items: center;
880
- display: flex;
881
- flex-basis: auto;
882
- flex-grow: 0;
883
- flex-shrink: 1;
884
- flex-wrap: wrap;
885
- justify-content: flex-start;
886
- line-height: var(--tabstrip-height);
887
- }
888
- .vuuTabstrip-vertical .vuuTabstrip-inner {
889
- flex-direction: column;
890
- height: auto;
891
- }
892
- .vuuTabstrip-centered .vuuTabstrip-inner {
893
- justify-content: center;
894
- }
895
- .vuuDraggable[class*=vuuTabstrip] {
896
- --tabstrip-display: flex;
897
- --tabstrip-height: 100%;
898
- --tabstrip-dragging-display: block;
899
- --tabs-tab-background: var(--salt-navigable-primary-background-hover);
900
- --tabs-tab-before-content: "";
901
- --tabs-tab-before-background: var(--salt-navigable-indicator-hover);
902
- --tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
903
- --tabs-tab-before-inset: var(--tab-activationIndicator-inset);
904
- --tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
905
- --tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
906
- --tabs-tab-position: static;
907
- font-size: 12px;
908
- }
909
- .vuuDraggable-tabstrip-horizontal {
910
- --tab-thumb-height: 2px;
911
- --tab-thumb-left: 0px;
912
- --tabstrip-height: 28px;
913
- line-height: var(--tabstrip-height);
914
- }
915
- .vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
916
- --tabs-tab-before-background: var(--salt-navigable-indicator-active);
917
- }
918
- .vuuTabstrip-overflowMenu-dropTarget:after {
919
- background: var(--salt-selectable-background-selected);
920
- content: "";
921
- position: absolute;
922
- height: 2px;
923
- left: 0;
924
- right: 0;
925
- bottom: 0;
926
- }
927
-
928
- /* ../vuu-ui-controls/src/tabstrip/TabMenu.css */
929
- .vuuTabMenu {
930
- top: -2px;
931
- }
932
-
933
- /* ../vuu-ui-controls/src/tabstrip/Tab.css */
934
- .vuuTab {
935
- --saltEditableLabel-padding: 0;
936
- --saltEditableLabel-height: var(--tabstrip-height);
937
- --saltInputLegacy-minWidth: 4em;
938
- --saltEditableLabel-top: 3px;
939
- --tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
940
- --tab-cursor: pointer;
941
- --tab-position: relative;
942
- }
943
- .vuuTab {
944
- align-items: center;
945
- align-self: stretch;
946
- background: var(--tab-background);
947
- border: none;
948
- border-radius: var(--vuuTab-borderRadius, 0);
949
- color: var(--salt-text-primary-foreground);
950
- cursor: var(--vuuTab-cursor, var(--tab-cursor));
951
- display: var(--tabstrip-display);
952
- gap: 8px;
953
- height: var(--vuuTab-height, var(--tabstrip-height));
954
- letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
955
- min-width: var(--vuuTab-minWidth, 40px);
956
- outline: none;
957
- padding: var(--vuuTab-padding, 0 24px);
958
- position: var(--vuuTab-position, var(--tab-position));
959
- user-select: none;
960
- width: var(--tab-width);
961
- }
962
- .vuuTab {
963
- margin: 0 var(--tab-spacing) 0 0;
964
- }
965
- .vuuTab-selected {
966
- background: var(--vuuTab-background-selected, var(--tab-background));
967
- color: var(--salt-text-primary-foreground);
968
- font-weight: var(--salt-navigable-fontWeight-active);
969
- }
970
- .vuuTab-main {
971
- align-items: center;
972
- border: none;
973
- color: inherit;
974
- cursor: inherit;
975
- display: flex;
976
- font-family: inherit;
977
- font-size: inherit;
978
- font-weight: inherit;
979
- height: var(--vuuTabstrip-height, var(--salt-size-stackable));
980
- outline: none;
981
- position: relative;
982
- }
983
- .vuuTab-closeable .vuuTab-main {
984
- border-right: solid transparent var(--salt-size-unit);
985
- }
986
- .vuuTab .vuuTab-closeButton {
987
- display: flex;
988
- align-items: center;
989
- justify-content: center;
990
- }
991
- .vuuTab-close-icon {
992
- display: none;
993
- }
994
- .salt-density-touch .vuuTab-close-icon,
995
- .salt-density-low .vuuTab-close-icon {
996
- display: block;
997
- }
998
- .salt-density-touch .vuuTab-close-icon-small,
999
- .salt-density-low .vuuTab-close-icon-small {
1000
- display: none;
1001
- }
1002
- .vuuTab .vuuTab-text {
1003
- display: inline-block;
1004
- position: relative;
1005
- overflow: hidden;
1006
- text-align: var(--salt-text-textAlign-embedded);
1007
- text-overflow: ellipsis;
1008
- top: var(--vuuTab-top, var(--tab-top, auto));
1009
- white-space: nowrap;
1010
- z-index: var(--salt-zIndex-default);
1011
- }
1012
- .vuuTab .vuuTab-text:before {
1013
- height: 0;
1014
- content: attr(data-text);
1015
- display: block;
1016
- visibility: hidden;
1017
- font-weight: var(--salt-navigable-fontWeight-active);
1018
- }
1019
- .vuuTab-editing:after {
1020
- content: "";
1021
- position: absolute;
1022
- top: 0;
1023
- left: 0;
1024
- right: 0;
1025
- bottom: 2px;
1026
- outline-color: var(--salt-focused-outlineColor);
1027
- outline-style: var(--salt-focused-outlineStyle);
1028
- outline-width: var(--salt-focused-outlineWidth);
1029
- outline-offset: -2px;
1030
- }
1031
- .vuuTab.vuuFocusVisible {
1032
- background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
1033
- outline-color: var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));
1034
- outline-style: dashed;
1035
- outline-width: 1px;
1036
- outline-offset: -1px;
1037
- }
1038
- .vuuTab:before {
1039
- content: var(--tab-before-content, none);
1040
- content: "";
1041
- background: var(--tab-before-background);
1042
- height: var(--tab-before-height);
1043
- inset: var(--tab-before-inset);
1044
- position: absolute;
1045
- width: var(--tab-before-width);
1046
- z-index: 1;
1047
- }
1048
- .vuuTabstrip-draggingTab .vuuTab-selected:before {
1049
- --tab-before-content: "";
1050
- --tab-before-background: var(--salt-navigable-indicator-color-active);
1051
- --tab-before-height: var(--tab-thumb-height);
1052
- --tab-before-inset: var(--tab-activationIndicator-inset);
1053
- --tab-before-width: var(--tab-activationIndicator-thumb-width);
1054
- }
1055
- .vuuTab-selected:before {
1056
- --tab-before-content: "";
1057
- background: var(--salt-navigable-indicator-active);
1058
- height: var(--tab-thumb-height);
1059
- position: absolute;
1060
- left: var(--tab-thumb-left);
1061
- bottom: 0px;
1062
- top: var(--tab-thumb-top, auto);
1063
- transition: var(--tab-thumb-transition, none);
1064
- width: var(--tab-thumb-width, 100%);
1065
- }
1066
- .vuuTab:hover:not(.vuuTab-closeHover) {
1067
- background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
1068
- }
1069
-
1070
- /* ../vuu-ui-controls/src/tree/Tree.css */
1071
- .vuuTree {
1072
- --tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));
1073
- --tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));
1074
- --tree-toggle-width: 12px;
1075
- --tree-icon-color: var(--vuuTree-icon-color, #4c505b);
1076
- --tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);
1077
- --tree-node-indent: 0px;
1078
- --list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, 0.1));
1079
- --list-item-height: var(--hw-list-item-height, 30px);
1080
- --list-item-padding: var(--hw-list-item-padding, 0 6px);
1081
- --list-item-header-bg: var(--hw-list-item-header-bg, black);
1082
- --list-item-header-color: var(--hw-list-item-header-color, white);
1083
- --list-item-header-font-weight: bold;
1084
- --list-item-header-twisty-color: black;
1085
- --list-item-header-twisty-content: "";
1086
- --list-item-header-twisty-top: 50%;
1087
- --list-item-header-twisty-left: -18px;
1088
- --list-item-header-twisty-right: auto;
1089
- --list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);
1090
- --list-item-selected-color: white;
1091
- --list-item-text-color: var(--hw-gray-800);
1092
- --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
1093
- list-style: none;
1094
- margin: 0;
1095
- padding: 0 1px;
1096
- font-size: var(--vuuTree-font-size, 14px);
1097
- max-height: inherit;
1098
- outline: none;
1099
- overflow-y: auto;
1100
- position: relative;
1101
- user-select: none;
1102
- }
1103
- .vuuTree-viewport {
1104
- --list-item-height: 30px;
1105
- box-sizing: border-box;
1106
- max-height: inherit;
1107
- overflow: auto;
1108
- }
1109
- .vuuTree-scrollingContentContainer {
1110
- box-sizing: inherit;
1111
- position: relative;
1112
- }
1113
- .vuuTree-scrollingContentContainer .vuuTreeNode {
1114
- line-height: 30px;
1115
- position: absolute;
1116
- top: 0;
1117
- left: 0;
1118
- right: 0;
1119
- will-change: transform;
1120
- }
1121
- .vuuTreeNode {
1122
- list-style: none;
1123
- }
1124
- .vuuTreeNode:not([aria-expanded]),
1125
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
1126
- --checkbox-border-color: black;
1127
- --checkbox-border-width: 1px;
1128
- --checkbox-tick: black;
1129
- --list-item-padding-left: 6px;
1130
- --svg-toggle: var(--tree-node-collapse);
1131
- align-items: center;
1132
- color: var(--list-item-text-color);
1133
- display: flex;
1134
- flex-wrap: nowrap;
1135
- height: var(--list-item-height);
1136
- line-height: var(--list-item-height);
1137
- padding: var(--list-item-padding);
1138
- padding-left: var(--padding-left);
1139
- position: relative;
1140
- cursor: default;
1141
- margin: 0;
1142
- white-space: nowrap;
1143
- }
1144
- .vuuTreeNode:not([aria-expanded]) {
1145
- --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
1146
- }
1147
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
1148
- --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
1149
- }
1150
- .vuuTreeNode-icon {
1151
- background-color: var(--tree-icon-color);
1152
- display: inline-block;
1153
- height: 18px;
1154
- margin-right: 6px;
1155
- -webkit-mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
1156
- mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
1157
- flex: 0 0 18px;
1158
- }
1159
- .vuuTreeNode[aria-expanded] {
1160
- flex-direction: column;
1161
- }
1162
- .vuuTreeNode[aria-expanded] {
1163
- flex-direction: column;
1164
- height: auto;
1165
- }
1166
- .vuuTreeNode > *[role=group] {
1167
- padding-left: 0px;
1168
- }
1169
- .vuuTreeNode {
1170
- padding-left: calc(var(--padding-left) + var(--tree-node-indent));
1171
- }
1172
- .vuuTreeNode[aria-level="2"] {
1173
- --tree-node-indent: 12px;
1174
- }
1175
- .vuuTreeNode[aria-level="3"] {
1176
- --tree-node-indent: 24px;
1177
- }
1178
- .vuuTreeNode[aria-level="4"] {
1179
- --tree-node-indent: 36px;
1180
- }
1181
- .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],
1182
- .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted] > div:first-child {
1183
- background-color: var(--list-hilited-bg);
1184
- }
1185
- .vuuTreeNode-toggle {
1186
- cursor: pointer;
1187
- }
1188
- .vuuTreeNode > .vuuTreeNode-toggle {
1189
- display: inline-block;
1190
- height: 100%;
1191
- left: 0;
1192
- position: absolute;
1193
- width: calc(var(--list-item-padding-left) + var(--tree-toggle-width));
1194
- }
1195
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label:after {
1196
- content: var(--list-item-header-twisty-content);
1197
- -webkit-mask: var(--svg-toggle) center center/8px 8px no-repeat;
1198
- mask: var(--svg-toggle) center center/8px 8px no-repeat;
1199
- background-color: var(--list-item-header-twisty-color);
1200
- height: 18px;
1201
- margin-top: -9px;
1202
- left: var(--tree-node-indent);
1203
- position: absolute;
1204
- top: var(--list-item-header-twisty-top);
1205
- transition: transform 0.3s;
1206
- width: 18px;
1207
- }
1208
- .vuuTreeNode[aria-selected=true] {
1209
- --list-item-header-twisty-color: var(--list-item-selected-color);
1210
- }
1211
- .vuuTreeNode:not(.focusVisible):focus {
1212
- background-color: rgba(0, 0, 0, 0.1);
1213
- }
1214
- .vuuTreeNode:not([aria-expanded]).focusVisible:before,
1215
- .vuuTreeNode[aria-expanded].focusVisible > div:first-child:before {
1216
- content: "";
1217
- position: absolute;
1218
- top: 0px;
1219
- left: var(--tree-focus-offset, 0px);
1220
- right: 0;
1221
- bottom: 0px;
1222
- border: dotted var(--focus-visible-border-color) 2px;
1223
- background-color: var(--list-hilited-bg);
1224
- }
1225
- .vuuTreeNode[aria-expanded=false] > *:first-child:after {
1226
- --svg-toggle: var(--tree-node-expand);
1227
- }
1228
- .vuuTreeNode[aria-expanded=true] > *:first-child:after {
1229
- transform: var(--tree-node-expanded-transform);
1230
- }
1231
- .vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],
1232
- .vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true] > div:first-child {
1233
- --checkbox-border-color: var(--list-item-selected-color);
1234
- --checkbox-tick: var(--list-item-selected-color);
1235
- --focus-visible-border-color: var(--list-item-selected-color);
1236
- background-color: var(--list-item-selected-bg);
1237
- color: var(--list-item-selected-color);
1238
- }
1239
- .with-checkbox .vuuTreeNode {
1240
- padding-left: 28px;
1241
- }
1242
- .with-checkbox .vuuTreeNode:before {
1243
- border-style: solid;
1244
- border-width: var(--checkbox-border-width);
1245
- border-color: var(--checkbox-border-color);
1246
- content: "";
1247
- height: 12px;
1248
- left: 3px;
1249
- margin-top: -7px;
1250
- position: absolute;
1251
- top: 50%;
1252
- width: 12px;
1253
- }
1254
-
1255
- /* src/layout-view/View.css */
1256
- .vuuView {
1257
- border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
1258
- border-width: var(--vuuView-borderWidth, 1px);
1259
- border-style: var(--vuuView-borderStyle, none);
1260
- display: flex;
1261
- flex-direction: column;
1262
- margin: var(--vuuView-margin, 0px);
1263
- min-height: 50px;
1264
- min-width: 50px;
1265
- outline: none;
1266
- overflow: hidden;
1267
- position: relative;
1268
- }
1269
- .vuuView.focus-visible:after {
1270
- content: "";
1271
- position: absolute;
1272
- top: 0;
1273
- left: 0;
1274
- right: 0;
1275
- bottom: 0;
1276
- border: dotted cornflowerblue 2px;
1277
- }
1278
- .vuuView.dragging {
1279
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1280
- }
1281
- .vuuView-main {
1282
- display: flex;
1283
- flex-direction: var(--vuuView-flexDirection, column);
1284
- flex-wrap: var(--vuuView-flex-wrap, nowrap);
1285
- flex: 1;
1286
- overflow: hidden;
1287
- position: relative;
1288
- }
1289
- .vuuView-main > * {
1290
- flex-basis: auto;
1291
- flex-grow: var(--vuuView-flex-grow, 1);
1292
- flex-shrink: var(--vuuView-flex-shrink, 1);
1293
- }
1294
- .vuuView-collapsed .vuuView-main {
1295
- display: none;
1296
- }
1297
- .vuuView-collapsed + .Splitter {
1298
- display: none;
1299
- }
1300
- .vuuView-collapsed .Toolbar-vertical {
1301
- border-right: solid 1px var(--grey40);
1302
- }
1303
- .vuuView-collapsed .Toolbar-vertical .toolbar-title {
1304
- display: none;
1305
- }
1306
-
1307
- /* src/layout-header/Header.css */
1308
- .vuuHeader {
1309
- --saltButton-height: 24px;
1310
- --saltButton-width: 24px;
1311
- }
1312
- .salt-density-high .vuuHeader {
1313
- --saltToolbarField-marginTop: 0;
1314
- }
1315
-
1316
- /* src/overflow-container/OverflowContainer.css */
1317
- .vuuOverflowContainer {
1318
- --item-gap: 4px;
1319
- --overflow-direction: row;
1320
- --overflow-width: 0px;
1321
- --overflow-order: 99;
1322
- --border-size: calc((var(--overflow-container-height) - 24px) / 2);
1323
- background-color: var(--vuuOverflowContainer-background, black);
1324
- height: var(--overflow-container-height);
1325
- }
1326
- .vuuOverflowContainer-horizontal {
1327
- --item-align: center;
1328
- --item-margin: 0 0 0 var(--item-gap);
1329
- }
1330
- .vuuOverflowContainer-vertical {
1331
- --item-align: stretch;
1332
- --item-margin: var(--item-gap) 0 0 0;
1333
- --overflow-direction: column;
1334
- }
1335
- .vuuOverflowContainer-wrapContainer {
1336
- align-items: var(--item-align);
1337
- display: flex;
1338
- flex-direction: var(--overflow-direction);
1339
- flex-wrap: wrap;
1340
- height: var(--overflow-container-height);
1341
- min-width: 44px;
1342
- overflow: hidden;
1343
- position: relative;
1344
- width: 100%;
1345
- }
1346
- .vuuOverflowContainer-wrapContainer.overflowed {
1347
- --overflow-order: 2;
1348
- --overflow-left: auto;
1349
- --overflow-position: relative;
1350
- --overflow-width: auto;
1351
- }
1352
- .vuuOverflowContainer-item:first-child {
1353
- --item-gap: 0;
1354
- }
1355
- .vuuOverflowContainer-item:first-child {
1356
- --item-margin: 0;
1357
- }
1358
- .vuuOverflowContainer-item {
1359
- align-items: inherit;
1360
- display: flex;
1361
- order: 1;
1362
- position: relative;
1363
- height: var(--overflow-container-height);
1364
- margin: var(--item-margin);
1365
- }
1366
- .vuuOverflowContainer-item.wrapped {
1367
- --overflow-item-bg: #ccc;
1368
- order: 3;
1369
- }
1370
- .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
1371
- display: none;
1372
- }
1373
- .vuuOverflowContainer-item.vuuDropTarget-settling {
1374
- visibility: hidden;
1375
- }
1376
- .vuuOverflowContainer-OverflowIndicator {
1377
- align-items: center;
1378
- background-color: transparent;
1379
- display: flex;
1380
- height: var(--overflow-container-height);
1381
- height: var(--overflow-container-height);
1382
- order: var(--overflow-order);
1383
- overflow: hidden;
1384
- left: var(--overflow-left, 100%);
1385
- position: var(--overflow-position, absolute);
1386
- width: var(--overflow-width);
1387
- }
1388
-
1389
- /* src/palette/Palette.css */
1390
- .vuuPalette-horizontal {
1391
- align-items: center;
1392
- display: flex;
1393
- }
1394
- .vuuPaletteItem {
1395
- --vuu-icon-color: var(--salt-separable-primary-borderColor);
1396
- --vuu-icon-inset: calc(50% - 12px) auto auto -3px;
1397
- --vuu-icon-height: 24px;
1398
- --vuu-icon-width: 24px;
1399
- --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
1400
- }
1401
- .vuuPaletteItem[data-draggable]:after {
1402
- height: 22px;
1403
- width: 6px;
1404
- content: "";
1405
- position: absolute;
1406
- background-image:
1407
- linear-gradient(45deg, rgb(180, 183, 190) 25%, transparent 25%),
1408
- linear-gradient(-45deg, rgb(180, 183, 190) 25%, transparent 25%),
1409
- linear-gradient(45deg, transparent 75%, rgb(180, 183, 190) 25%),
1410
- linear-gradient(-45deg, transparent 75%, rgb(180, 183, 190) 25%);
1411
- background-size: 4px 4px;
1412
- background-position:
1413
- 0 0,
1414
- 2px 0,
1415
- 2px -2px,
1416
- 0 2px;
1417
- }
1418
- .vuuSimpleDraggableWrapper > .vuuPaletteItem {
1419
- --vuu-icon-color: var(--salt-selectable-foreground);
1420
- }
1421
-
1422
- /* src/stack/Stack.css */
1423
- .Tabs {
1424
- display: flex;
1425
- box-sizing: border-box;
1426
- flex-direction: column;
1427
- }
1428
- .Tabs-horizontal {
1429
- --vuu-tabs-border-style: none solid none none;
1430
- flex-direction: row;
1431
- }
1432
- .Tabs .Toolbar:before {
1433
- left: 0;
1434
- width: 100%;
1435
- bottom: 0;
1436
- height: 1px;
1437
- content: "";
1438
- position: absolute;
1439
- background: var(--grey60);
1440
- }
1441
- .vuuTabHeader {
1442
- --saltTabs-activationIndicator-background: transparent;
1443
- --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
1444
- border-color: var(--salt-container-primary-borderColor);
1445
- border-style: var(--vuu-tabs-border-style, none none solid none);
1446
- border-width: 1px;
1447
- }
1448
- .vuuTabHeader + .hwFlexbox,
1449
- .vuuTabHeader + * {
1450
- flex: 1;
1451
- }
1452
- .vuuTabHeader + .vuuView > .vuuHeader {
1453
- height: 0;
1454
- overflow: hidden;
1455
- }
1456
- .Layout-svg-button {
1457
- --spacing-medium: 5px;
1458
- }
1459
-
1460
- /* src/tools/devtools-box/layout-configurator.css */
1461
- [data-design-mode=true] .Component {
1462
- filter: grayscale(100%);
1463
- opacity: 0.4;
1464
- }
1465
- [data-design-mode=true] .Component:after {
1466
- color: black;
1467
- content: "Component";
1468
- height: 12px;
1469
- background-color: yellow;
1470
- }
1471
- .LayoutConfigurator {
1472
- --margin-color: #f3cea5;
1473
- --border-color: #fddda0;
1474
- --padding-color: #c6d092;
1475
- --content-color: #8cb6c0;
1476
- display: flex;
1477
- flex-direction: column;
1478
- align-items: stretch;
1479
- background-color: var(--margin-color);
1480
- }
1481
- .LayoutConfigurator .layout-outer {
1482
- flex: 1 1 auto;
1483
- display: flex;
1484
- flex-direction: column;
1485
- align-items: stretch;
1486
- }
1487
- .LayoutBox {
1488
- --hw-control-font-size: 13px;
1489
- --hw-text-input-bg: rgba(255, 255, 255, 0.3);
1490
- --hwTextInput-padding: 3px;
1491
- --hw-text-input-position: absolute;
1492
- --hwTextInput-width: 30px;
1493
- flex: 1 1 auto;
1494
- }
1495
- .LayoutBox > .layout-top {
1496
- flex: 0 0 40px;
1497
- padding-left: 12px;
1498
- display: flex;
1499
- flex-direction: row;
1500
- align-items: center;
1501
- position: relative;
1502
- }
1503
- .LayoutBox > .layout-bottom {
1504
- flex: 0 0 40px;
1505
- position: relative;
1506
- display: flex;
1507
- flex-direction: row;
1508
- align-items: center;
1509
- }
1510
- .LayoutBox > .layout-inner > .layout-right,
1511
- .LayoutBox > .layout-inner > .layout-left {
1512
- flex: 0 0 40px;
1513
- display: flex;
1514
- flex-direction: column;
1515
- justify-content: center;
1516
- align-items: center;
1517
- }
1518
- .layout-top,
1519
- .layout-bottom {
1520
- --hw-text-input-margin: 0 0 0 -15px;
1521
- }
1522
- .layout-top > .layout-input,
1523
- .layout-bottom > .layout-input {
1524
- left: 50%;
1525
- }
1526
- .LayoutBox > .layout-inner {
1527
- flex: 1 1 auto;
1528
- display: flex;
1529
- flex-direction: row;
1530
- align-items: stretch;
1531
- }
1532
- .LayoutBox.layout-margin {
1533
- background-color: var(--margin-color);
1534
- border: dashed 2px black;
1535
- }
1536
- .LayoutBox.layout-border {
1537
- background-color: var(--border-color);
1538
- border: solid 2px black;
1539
- }
1540
- .LayoutBox.layout-padding {
1541
- background-color: var(--padding-color);
1542
- border: dashed 2px black;
1543
- }
1544
- .LayoutBox .layout-content {
1545
- flex: 1 1 auto;
1546
- background-color: var(--content-color);
1547
- border: solid 2px #808080;
1548
- }
1549
- .LayoutBox .layout-title {
1550
- color: #161616;
1551
- font-size: 11px;
1552
- left: 4px;
1553
- line-height: 15px;
1554
- position: absolute;
1555
- top: 1px;
1556
- }
1557
-
1558
- /* src/tools/devtools-tree/layout-tree-viewer.css */
1559
- .hwLayoutTreeViewer {
1560
- }
1561
- .hwLayoutTreeNode {
1562
- cursor: default;
1563
- }
1564
- .hwLayoutTreeNode:hover {
1565
- background-color: rgba(255, 255, 255, 0.2);
1566
- }
1567
- .hwLayoutTreeNode[aria-selected=true] {
1568
- background-color: cornflowerblue;
1569
- color: white;
1570
- }
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:1;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}.Splitter{--splitter-size: 3px;--splitter-border-width: 4px;--splitter-border-style: none;--splitter-border-color: white;align-items:center;background-color:var(--salt-palette-neutral-secondary-separator);border-color:var(--splitter-border-color);border-style:var(--splitter-border-style);box-sizing:border-box;display:flex;justify-content:center;position:relative;outline:none;z-index:1}.Splitter:hover{background-color:var(--salt-palette-neutral-primary-separator)}.active.Splitter{background-color:var(--salt-palette-interact-outline)}.Splitter.column{cursor:ns-resize;height:var(--splitter-size);border-width:var(--splitter-border-width) 0}.Splitter:not(.column){cursor:ew-resize;width:var(--splitter-size);border-width:0 var(--splitter-border-width)}.Splitter:before{border:none;border-radius:0;content:"";display:block;padding:0}.Splitter .grab-zone{position:absolute;background-color:#ff000003;cursor:inherit}.Splitter.column .grab-zone{left:0;right:0;top:-5px;bottom:-5px}.Splitter:not(.column) .grab-zone{left:-5px;right:-5px;top:0;bottom:0}.active.Splitter:not(.column) .grab-zone{background-color:#ffffff0d;left:-150px;right:-150px}.Splitter:not(.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%)}.active.Splitter.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%)}.active.Splitter:not(.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%)}.Splitter.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)))}.vuuDraggable{background:transparent;box-shadow:var(--salt-overlayable-shadow-drag);cursor:var(--salt-draggable-grab-cursor-active);position:absolute;opacity:.95;z-index:2000}.vuuDraggable-spacer{display:var(--vuuDraggable-display, inline-block);height:var(--vuuDraggable-spacer-height, var(--tabstrip-height));transition:var(--vuuDraggable-transitionProp, width) .3s ease;width:var(--vuuDraggable-spacer-width, 0)}.vuuDraggable-dropIndicatorPosition{display:var(--saltDraggable-display, inline-block);height:0px;width:100%}.vuuDraggable-dropIndicatorContainer{transition:var(--vuuDraggable-transitionProp, top) .2s ease}.vuuDraggable-dropIndicator{background-color:var(--salt-palette-accent-background);height:2px;width:100%}.vuuDraggable-dropIndicator:before{content:"";width:6px;height:6px;border-radius:3px;background-color:var(--salt-palette-accent-background);position:absolute;top:-2px;left:-3px}.vuuDraggable-settling{transition-property:left,top;transition-duration:.15s;transition-timing-function:ease-out}.vuuDraggable-spacer{order:1}.vuuEditableLabel{--saltInput-background: transparent;--saltInput-minWidth: 14px;--saltInput-position: absolute;--editableLabel-padding: var(--saltEditableLabel-padding, 6px);--editableLabel-height: var(--saltEditableLabel-height, 26px);color:inherit;cursor:default;display:flex;flex-direction:column;font-size:var(--salt-text-fontSize);height:var(--editableLabel-height);justify-content:center;outline:none;padding:0 var(--editableLabel-padding);position:relative;z-index:var(--salt-zIndex-default)}.vuuEditableLabel:before{content:attr(data-text);display:block;height:0px;visibility:hidden;white-space:pre-wrap}.vuuEditableLabel .saltInput{font-weight:var(--salt-text-fontWeight);left:var(--editableLabel-padding, 0);padding:0;outline-style:none;position:absolute;right:var(--editableLabel-padding, 0);top:var(--saltEditableLabel-top, 2px);width:auto}.vuuEditableLabel .saltInput-activationIndicator{display:none}.vuuEditableLabel-input{background-color:transparent;border:none;box-sizing:content-box;display:block;flex:1;font:inherit;height:20px;margin:0;min-width:0;outline:none;padding:0}.saltHighlighter-highlight{font-weight:var(--salt-text-fontWeight-strong)}.vuuCheckboxIcon{--vuu-icon-size: 14px;--vuu-icon-left: -1px;--vuu-icon-top: -1px;--vuu-icon-svg: var(--vuu-svg-tick);border-style:solid;border-color:var(--vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor));border-radius:var(--vuuCheckboxIcon-borderRadius, 3px);border-width:1px;display:inline-block;height:var(--vuuCheckboxIcon-size, 14px);position:relative;width:var(--vuuCheckboxIcon-size, 14px)}.vuuCheckboxIcon-checked{background-color:var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));border-color:var(--vuuCheckboxIcon-borderColor-checked, var(--salt-selectable-borderColor-selected))}.vuuCheckboxIcon-checked:after{content:"";background-color:#fff;left:var(--vuu-icon-left, auto);height:var(--vuu-icon-height, var(--vuu-icon-size, 12px));-webkit-mask:var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);mask:var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;position:absolute;top:var(--vuu-icon-top, auto);width:var(--vuu-icon-width, var(--vuu-icon-size, 12px))}.vuuListItem{--list-item-text-color: var(--salt-text-primary-foreground);--list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));--list-item-text-color-active: var(--salt-text-primary-foreground);--list-item-background-active: var(--salt-selectable-background-selected);--list-item-alignItems: center}.vuuListItem.saltHighlighted{--saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);--list-item-background: var(--salt-selectable-background-hover)}.vuuListItemHeader{font-weight:var(--salt-text-fontWeight-strong)}.vuuListItemHeader[data-sticky]{position:sticky;top:0;z-index:1}.vuuListItem{color:var(--list-item-text-color);cursor:var(--vuuList-item-cursor, pointer);background:var(--vuuList-item-background, var(--list-item-background));font-size:var(--salt-text-fontSize);text-align:var(--salt-text-textAlign);line-height:var(--salt-text-lineHeight);height:var(--vuuList-item-height, var(--list-item-height, auto));margin-bottom:var(--list-item-gap);padding:0 var(--salt-size-unit);left:0;right:0;display:flex;position:relative;align-items:var(--list-item-alignItems);white-space:nowrap}.vuuListItem:last-child{margin-bottom:0}.vuuListItem-checkbox{--list-item-background-active: var(--salt-selectable-background);--list-item-text-color-active: var(--salt-text-primary-foreground);--list-item-text-padding: 0 0 0 var(--salt-size-unit)}.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox){--list-item-background: var(--list-item-background-active);color:var(--list-item-text-color-active)}.vuuListItem.saltDisabled{--list-item-text-color: var(--salt-text-primary-foreground-disabled);cursor:var(--salt-selectable-cursor-disabled)}.vuuListItem.vuuFocusVisible{outline-style:var(--salt-focused-outlineStyle);outline-width:var(--salt-focused-outlineWidth);outline-offset:-2px;outline-color:var(--salt-focused-outlineColor)}.vuuListItem.vuuFocusVisible:after{content:none}.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible{outline-color:var(--list-item-selected-focus-outlineColor)}.vuuListItem-textWrapper{flex:1;overflow:hidden;padding:var(--list-item-text-padding, 0px);white-space:nowrap;text-overflow:ellipsis}.vuuListItem-proxy{position:absolute!important;visibility:hidden}.vuuDraggable-list-item{--vuuList-item-height: 24px;background-color:#fff}.vuuListItem.vuuDraggable-dragAway{display:none}.vuuList{--list-background: var(--salt-container-primary-background);--list-borderStyle: var(--vuuList-borderStyle,--salt-container-borderStyle);--list-borderWidth: var(--salt-size-border);--list-height: auto;--list-item-height: var(--salt-size-stackable);--list-item-gap: 0px;--list-maxHeight: 100%;--vuuDraggable-display: block;--vuuDraggable-spacer-height: 0;--vuuDraggable-spacer-width: 100%;--vuuDraggable-transitionProp: height;background:var(--list-background);border-color:var(--salt-container-primary-borderColor);border-style:var(--list-borderStyle);border-width:var(--list-borderWidth);height:var(--saltList-height, var(--list-height));max-height:var(--list-maxHeight);outline:none;overflow-y:auto;position:relative;user-select:none;width:var(--saltList-width, auto)}.vuuList-borderless{--list-borderStyle: none}.vuuList-viewport{--list-item-height: 30px;max-height:calc(var(--list-maxHeight) - 2 * var(--list-borderWidth));overflow:auto}.vuuListItemHeader{--saltList-item-background: var(--list-item-header-background);color:var(--list-item-header-color)}.vuuListItemHeader[data-sticky=true]{--saltList-item-background: var(--list-background);position:sticky;top:0;z-index:1}.vuuList-collapsible .vuuListItemHeader:after{border-width:var(--checkbox-borderWidth);border-color:var(--checkbox-borderColor);content:var(--list-item-header-twisty-content);-webkit-mask:var(--list-svg-chevron-down) center center/12px 12px no-repeat;mask:var(--list-svg-chevron-down) center center/12px 12px no-repeat;background:var(--list-item-header-twisty-color);height:12px;left:var(--list-item-header-twisty-left);right:var(--list-item-header-twisty-right);margin-top:-8px;position:absolute;top:var(--list-item-header-twisty-top);transition:transform .3s;width:12px}.vuuListItemHeader[aria-expanded=false]:after{transform:rotate(-90deg)}.vuuList-scrollingContentContainer{box-sizing:inherit;position:relative}.vuuList-virtualized .vuuListItem{line-height:30px;position:absolute;top:0;left:0;right:0;will-change:transform}.vuuList.saltFocusVisible:after{inset:2px}.vuuTabstrip{--vuuOverflowContainer-background: transparent;--tabstrip-dragging-display: none;--tabstrip-display: inline-flex;--tabstrip-background: transparent;align-self:var(--saltTabs-tabstrip-alignSelf, stretch);font-size:var(--salt-text-fontSize);font-weight:var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));position:relative;overflow:visible;display:flex;min-width:28px;width:var(--tabstrip-width)}.vuuTabstrip-horizontal{--tabstrip-height: var(--vuuTabstrip-height, 28px);--tabstrip-width: var(--vuuTabstrip-width, 100%);--tab-width: auto;--tab-thumb-height: 2px;--tab-thumb-left: var(--tab-thumb-offset, 0);--tab-thumb-top: auto;--tab-thumb-width: var(--tab-thumb-size, 100%);align-items:flex-start;border-bottom:var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor))}.vuuTabstrip-vertical{--tabstrip-height: var(--vuuTabstrip-height, 100%);--tabstrip-width: var(--vuuTabstrip-width, 100px);--tab-width: 100%;--tab-thumb-height: var(--tab-thumb-size, 100%);--tab-thumb-left: 0;--tab-thumb-top: var(--tab-thumb-offset, 0);--tab-thumb-width: 2px;align-self:flex-start;display:inline-flex}.vuuTabstrip-draggingTab .vuuTab{pointer-events:none}.vuuTabstrip-addTabButton{--saltButton-height: 20px;--saltButton-width: 20px}.vuuTabstrip-overflowMenu.saltDropdown{--saltIcon-margin: 2px 0 0 0px}.vuuTabstrip-overflowMenu-open{--saltButton-background: var(--salt-actionable-secondary-background-active);--saltButton-text-color: var(--salt-actionable-secondary-text-color-active)}.vuuTabstrip-overflowMenu-open .saltButton{--saltIcon-color: var(--salt-actionable-secondary-foreground-active)}.vuuTabstrip-inner{width:100%;align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:1;flex-wrap:wrap;justify-content:flex-start;line-height:var(--tabstrip-height)}.vuuTabstrip-vertical .vuuTabstrip-inner{flex-direction:column;height:auto}.vuuTabstrip-centered .vuuTabstrip-inner{justify-content:center}.vuuDraggable[class*=vuuTabstrip]{--tabstrip-display: flex;--tabstrip-height: 100%;--tabstrip-dragging-display: block;--tabs-tab-background: var(--salt-navigable-primary-background-hover);--tabs-tab-before-content: "";--tabs-tab-before-background: var(--salt-navigable-indicator-hover);--tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);--tabs-tab-before-inset: var(--tab-activationIndicator-inset);--tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);--tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);--tabs-tab-position: static;font-size:12px}.vuuDraggable-tabstrip-horizontal{--tab-thumb-height: 2px;--tab-thumb-left: 0px;--tabstrip-height: 28px;line-height:var(--tabstrip-height)}.vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before{--tabs-tab-before-background: var(--salt-navigable-indicator-active)}.vuuTabstrip-overflowMenu-dropTarget:after{background:var(--salt-selectable-background-selected);content:"";position:absolute;height:2px;left:0;right:0;bottom:0}.vuuTabMenu{top:-2px}.vuuTab{--saltEditableLabel-padding: 0;--saltEditableLabel-height: var(--tabstrip-height);--saltInputLegacy-minWidth: 4em;--saltEditableLabel-top: 3px;--tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));--tab-cursor: pointer;--tab-position: relative}.vuuTab{align-items:center;align-self:stretch;background:var(--tab-background);border:none;border-radius:var(--vuuTab-borderRadius, 0);color:var(--salt-text-primary-foreground);cursor:var(--vuuTab-cursor, var(--tab-cursor));display:var(--tabstrip-display);gap:8px;height:var(--vuuTab-height, var(--tabstrip-height));letter-spacing:var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));min-width:var(--vuuTab-minWidth, 40px);outline:none;padding:var(--vuuTab-padding, 0 24px);position:var(--vuuTab-position, var(--tab-position));user-select:none;width:var(--tab-width)}.vuuTab{margin:0 var(--tab-spacing) 0 0}.vuuTab-selected{background:var(--vuuTab-background-selected, var(--tab-background));color:var(--salt-text-primary-foreground);font-weight:var(--salt-navigable-fontWeight-active)}.vuuTab-main{align-items:center;border:none;color:inherit;cursor:inherit;display:flex;font-family:inherit;font-size:inherit;font-weight:inherit;height:var(--vuuTabstrip-height, var(--salt-size-stackable));outline:none;position:relative}.vuuTab-closeable .vuuTab-main{border-right:solid transparent var(--salt-size-unit)}.vuuTab .vuuTab-closeButton{display:flex;align-items:center;justify-content:center}.vuuTab-close-icon{display:none}.salt-density-touch .vuuTab-close-icon,.salt-density-low .vuuTab-close-icon{display:block}.salt-density-touch .vuuTab-close-icon-small,.salt-density-low .vuuTab-close-icon-small{display:none}.vuuTab .vuuTab-text{display:inline-block;position:relative;overflow:hidden;text-align:var(--salt-text-textAlign-embedded);text-overflow:ellipsis;top:var(--vuuTab-top, var(--tab-top, auto));white-space:nowrap;z-index:var(--salt-zIndex-default)}.vuuTab .vuuTab-text:before{height:0;content:attr(data-text);display:block;visibility:hidden;font-weight:var(--salt-navigable-fontWeight-active)}.vuuTab-editing:after{content:"";position:absolute;top:0;left:0;right:0;bottom:2px;outline-color:var(--salt-focused-outlineColor);outline-style:var(--salt-focused-outlineStyle);outline-width:var(--salt-focused-outlineWidth);outline-offset:-2px}.vuuTab.vuuFocusVisible{background:var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));outline-color:var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));outline-style:dashed;outline-width:1px;outline-offset:-1px}.vuuTab:before{content:var(--tab-before-content, none);content:"";background:var(--tab-before-background);height:var(--tab-before-height);inset:var(--tab-before-inset);position:absolute;width:var(--tab-before-width);z-index:1}.vuuTabstrip-draggingTab .vuuTab-selected:before{--tab-before-content: "";--tab-before-background: var(--salt-navigable-indicator-color-active);--tab-before-height: var(--tab-thumb-height);--tab-before-inset: var(--tab-activationIndicator-inset);--tab-before-width: var(--tab-activationIndicator-thumb-width)}.vuuTab-selected:before{--tab-before-content: "";background:var(--salt-navigable-indicator-active);height:var(--tab-thumb-height);position:absolute;left:var(--tab-thumb-left);bottom:0px;top:var(--tab-thumb-top, auto);transition:var(--tab-thumb-transition, none);width:var(--tab-thumb-width, 100%)}.vuuTab:hover:not(.vuuTab-closeHover){background:var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover))}.vuuTree{--tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));--tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));--tree-toggle-width: 12px;--tree-icon-color: var(--vuuTree-icon-color, #4c505b);--tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);--tree-node-indent: 0px;--list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, .1));--list-item-height: var(--hw-list-item-height, 30px);--list-item-padding: var(--hw-list-item-padding, 0 6px);--list-item-header-bg: var(--hw-list-item-header-bg, black);--list-item-header-color: var(--hw-list-item-header-color, white);--list-item-header-font-weight: bold;--list-item-header-twisty-color: black;--list-item-header-twisty-content: "";--list-item-header-twisty-top: 50%;--list-item-header-twisty-left: -18px;--list-item-header-twisty-right: auto;--list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);--list-item-selected-color: white;--list-item-text-color: var(--hw-gray-800);--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));list-style:none;margin:0;padding:0 1px;font-size:var(--vuuTree-font-size, 14px);max-height:inherit;outline:none;overflow-y:auto;position:relative;user-select:none}.vuuTree-viewport{--list-item-height: 30px;box-sizing:border-box;max-height:inherit;overflow:auto}.vuuTree-scrollingContentContainer{box-sizing:inherit;position:relative}.vuuTree-scrollingContentContainer .vuuTreeNode{line-height:30px;position:absolute;top:0;left:0;right:0;will-change:transform}.vuuTreeNode{list-style:none}.vuuTreeNode:not([aria-expanded]),.vuuTreeNode[aria-expanded]>.vuuTreeNode-label{--checkbox-border-color: black;--checkbox-border-width: 1px;--checkbox-tick: black;--list-item-padding-left: 6px;--svg-toggle: var(--tree-node-collapse);align-items:center;color:var(--list-item-text-color);display:flex;flex-wrap:nowrap;height:var(--list-item-height);line-height:var(--list-item-height);padding:var(--list-item-padding);padding-left:var(--padding-left);position:relative;cursor:default;margin:0;white-space:nowrap}.vuuTreeNode:not([aria-expanded]){--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) )}.vuuTreeNode[aria-expanded]>.vuuTreeNode-label{--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) )}.vuuTreeNode-icon{background-color:var(--tree-icon-color);display:inline-block;height:18px;margin-right:6px;-webkit-mask:var(--vuu-icon-svg) center center/12px 12px no-repeat;mask:var(--vuu-icon-svg) center center/12px 12px no-repeat;flex:0 0 18px}.vuuTreeNode[aria-expanded]{flex-direction:column}.vuuTreeNode[aria-expanded]{flex-direction:column;height:auto}.vuuTreeNode>*[role=group]{padding-left:0}.vuuTreeNode{padding-left:calc(var(--padding-left) + var(--tree-node-indent))}.vuuTreeNode[aria-level="2"]{--tree-node-indent: 12px}.vuuTreeNode[aria-level="3"]{--tree-node-indent: 24px}.vuuTreeNode[aria-level="4"]{--tree-node-indent: 36px}.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted]>div:first-child{background-color:var(--list-hilited-bg)}.vuuTreeNode-toggle{cursor:pointer}.vuuTreeNode>.vuuTreeNode-toggle{display:inline-block;height:100%;left:0;position:absolute;width:calc(var(--list-item-padding-left) + var(--tree-toggle-width))}.vuuTreeNode[aria-expanded]>.vuuTreeNode-label:after{content:var(--list-item-header-twisty-content);-webkit-mask:var(--svg-toggle) center center/8px 8px no-repeat;mask:var(--svg-toggle) center center/8px 8px no-repeat;background-color:var(--list-item-header-twisty-color);height:18px;margin-top:-9px;left:var(--tree-node-indent);position:absolute;top:var(--list-item-header-twisty-top);transition:transform .3s;width:18px}.vuuTreeNode[aria-selected=true]{--list-item-header-twisty-color: var(--list-item-selected-color)}.vuuTreeNode:not(.focusVisible):focus{background-color:#0000001a}.vuuTreeNode:not([aria-expanded]).focusVisible:before,.vuuTreeNode[aria-expanded].focusVisible>div:first-child:before{content:"";position:absolute;top:0px;left:var(--tree-focus-offset, 0px);right:0;bottom:0px;border:dotted var(--focus-visible-border-color) 2px;background-color:var(--list-hilited-bg)}.vuuTreeNode[aria-expanded=false]>*:first-child:after{--svg-toggle: var(--tree-node-expand)}.vuuTreeNode[aria-expanded=true]>*:first-child:after{transform:var(--tree-node-expanded-transform)}.vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],.vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true]>div:first-child{--checkbox-border-color: var(--list-item-selected-color);--checkbox-tick: var(--list-item-selected-color);--focus-visible-border-color: var(--list-item-selected-color);background-color:var(--list-item-selected-bg);color:var(--list-item-selected-color)}.with-checkbox .vuuTreeNode{padding-left:28px}.with-checkbox .vuuTreeNode:before{border-style:solid;border-width:var(--checkbox-border-width);border-color:var(--checkbox-border-color);content:"";height:12px;left:3px;margin-top:-7px;position:absolute;top:50%;width:12px}.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}.vuuOverflowContainer{--item-gap: 4px;--overflow-direction: row;--overflow-width: 0px;--overflow-order: 99;--border-size: calc((var(--overflow-container-height) - 24px) / 2);background-color:var(--vuuOverflowContainer-background, black);height:var(--overflow-container-height)}.vuuOverflowContainer-horizontal{--item-align: center;--item-margin: 0 0 0 var(--item-gap)}.vuuOverflowContainer-vertical{--item-align: stretch;--item-margin: var(--item-gap) 0 0 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:first-child{--item-gap: 0}.vuuOverflowContainer-item:first-child{--item-margin: 0}.vuuOverflowContainer-item{align-items:inherit;display:flex;order:1;position:relative;height:var(--overflow-container-height);margin:var(--item-margin)}.vuuOverflowContainer-item.wrapped{--overflow-item-bg: #ccc;order:3}.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);overflow:hidden;left:var(--overflow-left, 100%);position:var(--overflow-position, absolute);width:var(--overflow-width)}.vuuPalette-horizontal{align-items:center;display:flex}.vuuPaletteItem{--vuu-icon-color: var(--salt-separable-primary-borderColor);--vuu-icon-inset:calc(50% - 12px) auto auto -3px;--vuu-icon-height: 24px;--vuu-icon-width: 24px;--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3)}.vuuPaletteItem[data-draggable]:after{height:22px;width:6px;content:"";position:absolute;background-image:linear-gradient(45deg,rgb(180,183,190) 25%,transparent 25%),linear-gradient(-45deg,rgb(180,183,190) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgb(180,183,190) 25%),linear-gradient(-45deg,transparent 75%,rgb(180,183,190) 25%);background-size:4px 4px;background-position:0 0,2px 0,2px -2px,0 2px}.vuuSimpleDraggableWrapper>.vuuPaletteItem{--vuu-icon-color: var(--salt-selectable-foreground)}.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}[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}
1571
2
  /*# sourceMappingURL=index.css.map */