@vuu-ui/vuu-layout 0.8.11-debug → 0.8.12

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,1752 +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: 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
- /* 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
- .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
- /* 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
- /* 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
- /* 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-filters/src/filter-builder-menu/FilterBuilderMenu.css */
585
- .vuuFilterBuilderMenu {
586
- margin: 0;
587
- }
588
- .vuuFilterBuilderMenu-trigger {
589
- display: inline-block;
590
- height: 26px;
591
- width: 0px;
592
- }
593
- .vuuFilterBuilderMenuList {
594
- --vuuList-borderStyle: none;
595
- }
596
- .vuuListItem.vuuMenuButton {
597
- color: var(--vuu-color-gray-50);
598
- font-size: 9px;
599
- padding: 0 8px;
600
- }
601
- .vuuListItem.vuuMenuButton:after {
602
- border-radius: 6px;
603
- content: "";
604
- position: absolute;
605
- height: 16px;
606
- background-color: transparent;
607
- left: 4px;
608
- right: 4px;
609
- border: solid 1px var(--salt-actionable-primary-foreground);
610
- }
611
-
612
- /* ../vuu-filters/src/filter-clause/ExpandoCombobox.css */
613
- .vuuExpandoCombobox {
614
- --expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);
615
- --expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);
616
- --saltInput-outline: none;
617
- --saltInput-fontSize: var(--expando-combobox-fontSize);
618
- --saltInput-height: var(--expando-combobox-height);
619
- --saltInput-minWidth: 4px;
620
- display: inline-flex;
621
- flex-direction: column;
622
- height: var(--expando-combobox-height);
623
- min-width: 4px;
624
- padding: 0;
625
- }
626
- .vuuExpandoCombobox .saltInput {
627
- background-color: transparent;
628
- position: absolute;
629
- }
630
- .vuuExpandoCombobox .vuuDropdown {
631
- height: 100%;
632
- }
633
- .vuuExpandoCombobox-Input.saltInput {
634
- border: none;
635
- left: 0px;
636
- margin: 0;
637
- min-height: 100%;
638
- padding: 0;
639
- right: 0px;
640
- width: auto;
641
- }
642
- .vuuExpandoCombobox .saltInput-input {
643
- border: none;
644
- box-sizing: content-box;
645
- display: block;
646
- flex: 1;
647
- font: inherit;
648
- margin: 0;
649
- min-width: 0;
650
- outline: none;
651
- padding: 0;
652
- }
653
- .vuuExpandoCombobox:before {
654
- content: attr(data-text);
655
- display: block;
656
- font-size: var(--expando-combobox-fontSize);
657
- height: 0px;
658
- overflow: hidden;
659
- white-space: pre-wrap;
660
- }
661
-
662
- /* ../vuu-filters/src/filter-clause/CloseButton.css */
663
- .vuu-theme {
664
- --salt-actionable-secondary-background: #ffffff;
665
- --salt-actionable-secondary-background-hover: #f37880;
666
- --salt-actionable-secondary-background-disabled: #ffffff;
667
- --salt-actionable-secondary-foreground: #606477;
668
- --salt-actionable-secondary-foreground-hover: #15171b;
669
- --salt-actionable-secondary-foreground-active: #ffffff;
670
- --salt-actionable-secondary-foreground-disabled: #9b9ea8;
671
- }
672
- .vuuFilterClause-closeButton {
673
- height: 16px;
674
- width: 16px;
675
- border-radius: 6px;
676
- padding: 0;
677
- }
678
- .vuuFilterClause-closeButton:focus-visible {
679
- }
680
- .vuuFilterClause-closeButton:not(:hover) {
681
- background: var(--salt-actionable-secondary-background);
682
- }
683
-
684
- /* ../vuu-filters/src/filter-clause/FilterClauseEditor.css */
685
- .vuuFilterClause {
686
- --vuuExpandoInput-top: 0;
687
- --vuuExpandoInput-height: 16px;
688
- --vuuExpandoCombobox-height: 16px;
689
- --saltButton-height: 16px;
690
- --saltButton-width: 16px;
691
- display: flex;
692
- flex-direction: row;
693
- width: fit-content;
694
- border-color: var(--vuu-color-gray-45);
695
- border-radius: 6px;
696
- border-width: 1px;
697
- border-style: solid;
698
- background: #ffffff;
699
- --salt-focused-outlineStyle: dotted;
700
- }
701
- .vuuFilterClause:focus-within {
702
- border-color: var(--vuu-color-purple-10);
703
- }
704
- .vuu-density-high .vuuFilterClause {
705
- padding: 4px 8px;
706
- gap: 4px;
707
- --salt-text-lineHeight: 12px;
708
- --saltInputLegacy-fontSize: 12px;
709
- --saltInputLegacy-minWidth: 12px;
710
- }
711
- .vuu-density-high .vuuFilterClause .saltInput {
712
- padding: 0;
713
- min-height: 16px;
714
- height: 16px;
715
- }
716
- .vuuFilterClause .vuuExpandoCombobox {
717
- flex-basis: auto;
718
- flex-shrink: 0;
719
- flex-grow: 0;
720
- }
721
- .vuuFilterClauseOperator-hidden {
722
- display: none;
723
- }
724
- .vuuFilterClause :not(.vuuFilterClauseNumericValue) .saltInput {
725
- }
726
- .vuuFilterClause .saltInput-focused,
727
- .vuuFilterClause .saltTokenizedInput-focused {
728
- outline: none;
729
- color: var(--salt-text-primary-foreground);
730
- }
731
- .vuuFilterClause .saltInput-input::selection {
732
- color: #ffffff;
733
- }
734
- .vuu-theme .saltList {
735
- --list-borderWidth: 1px;
736
- --list-borderStyle: solid;
737
- border-radius: 4px;
738
- box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
739
- }
740
- .saltListItem[aria-selected=true]:not(.saltListItem-checkbox) {
741
- --list-item-background: var(--list-item-background-active);
742
- color: var(--list-item-text-color-active);
743
- }
744
- .saltTokenizedInput {
745
- height: 16px;
746
- min-height: 16px;
747
- }
748
- .saltTokenizedInput .saltInputPill {
749
- --pill-fontSize: 12px;
750
- --saltButton-borderStyle: none;
751
- --pill-background: none;
752
- height: 16px;
753
- margin: 0;
754
- }
755
- .saltTokenizedInput-pillGroup {
756
- padding: 0;
757
- height: 16px;
758
- }
759
-
760
- /* ../vuu-filters/src/filter-pill-menu/FilterPillMenu.css */
761
- .vuuFilterPillMenu {
762
- top: -1px;
763
- }
764
-
765
- /* ../vuu-filters/src/filter-pill/FilterPill.css */
766
- .vuuFilterPill {
767
- --vuuToolbarItem-outlineColor: white;
768
- align-items: center;
769
- background: var(--salt-taggable-background);
770
- border: solid 1px var(--salt-taggable-foreground);
771
- border-radius: 26px;
772
- color: var(--vuu-color-gray-50);
773
- display: inline-flex;
774
- height: 26px;
775
- max-width: var(--vuuFilterPill-maxWidth, 200px);
776
- padding: 0 8px;
777
- position: relative;
778
- user-select: none;
779
- outline: none;
780
- }
781
- .vuuFilterPill[aria-selected=true] {
782
- --vuuPopupMenu-iconColor: white;
783
- --salt-text-background-selected: var(--vuu-color-blue-40);
784
- --salt-text-color-selected: var(--salt-text-primary-foreground);
785
- --saltInput-background-hover: var(--salt-taggable-background-active);
786
- --saltInput-color: var(--salt-taggable-foreground-active);
787
- background: var(--salt-taggable-background-active);
788
- color: white;
789
- }
790
- .vuuFilterPill:not([aria-selected="true"]):hover {
791
- --vuuPopupMenu-iconColor: var(--vuu-color-gray-80);
792
- background-color: var(--salt-taggable-background-hover);
793
- border-color: var(--salt-taggable-background-hover);
794
- color: var(--vuu-color-gray-80);
795
- }
796
-
797
- /* ../vuu-filters/src/filter-bar/FilterBar.css */
798
- .vuuFilterBar {
799
- --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>');
800
- --vuuToolbar-height: 26px;
801
- --salt-container-primary-borderColor: var(--vuu-color-purple-10);
802
- --vuuOverflowContainer-minWidth: 0;
803
- --saltButton-height: 26px;
804
- --saltButton-width: 26px;
805
- align-items: center;
806
- background-color: var(--salt-container-secondary-background);
807
- border-bottom: solid 1px #D6D7DA;
808
- display: flex;
809
- gap: 4px;
810
- height: 33px;
811
- padding: 3px 8px;
812
- }
813
- .vuuFilterbar-icon {
814
- display: inline-block;
815
- height: 16px;
816
- width: 16px;
817
- }
818
- .vuuFilterBar [data-icon=tune] {
819
- --vuu-icon-size: 16px;
820
- --vuu-icon-svg: var(--vuu-svg-tune);
821
- }
822
- .vuuFilterBar [data-icon=plus] {
823
- --vuu-icon-size: 16px;
824
- }
825
- .vuuFilterBar .vuuToolbar {
826
- flex: 0 1 auto;
827
- }
828
-
829
- /* ../vuu-filters/src/filter-input/FilterInput.css */
830
- .salt-theme {
831
- --vuuFilterEditor-lineHeight: 28px;
832
- }
833
- .salt-density-high {
834
- --vuuFilterEditor-buttonWidth: 20px;
835
- --vuuFilterEditor-height: 22px;
836
- --vuuFilterEditor-lineHeight: 20px;
837
- }
838
- .vuuFilterInput {
839
- --vuuFilterEditor-background: var(--salt-container-primary-background);
840
- --vuuFilterEditor-color: var(--salt-text-primary-foreground);
841
- --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
842
- --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
843
- --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
844
- --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
845
- --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
846
- --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
847
- --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
848
- --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
849
- --vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);
850
- --vuuFilterEditor-suggestion-height: 24px;
851
- --vuuFilterEditor-variableColor: blue;
852
- align-items: center;
853
- border-color: var(--salt-container-secondary-borderColor);
854
- border-style: solid none;
855
- border-width: 1px;
856
- box-sizing: border-box;
857
- display: flex;
858
- height: var(--vuuFilterEditor-height, 30px);
859
- }
860
- .vuuFilterInput-Editor {
861
- flex: 1 1 auto;
862
- height: 100%;
863
- }
864
- .vuuFilterInput-FilterButton,
865
- .vuuFilterInput-ClearButton {
866
- --vuu-icon-size: 12px;
867
- --saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px);
868
- }
869
- .vuuIllustration {
870
- --vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);
871
- background: var(--salt-container-secondary-background);
872
- color: var(--salt-text-secondary-foreground);
873
- }
874
-
875
- /* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
876
- .vuuStatus-container {
877
- display: flex;
878
- }
879
- .vuuStatus-text {
880
- align-self: center;
881
- }
882
- .vuuStatus {
883
- --vuu-icon-height: 18px;
884
- --vuu-icon-padding: var(--vuuStatus-padding, 6px);
885
- --vuu-icon-width: var(--vuuStatus-width, auto);
886
- --vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
887
- align-items: center;
888
- display: inline-flex;
889
- height: var(--vuu-icon-height);
890
- justify-content: center;
891
- min-width: var(--vuu-icon-min-width);
892
- padding: 0 var(--vuu-icon-padding);
893
- width: var(--vuu-icon-width);
894
- position: relative;
895
- }
896
- .vuuStatus[data-icon]::after {
897
- inset: 0 0 0 0;
898
- content: "";
899
- box-shadow: 0 0 0 0 black;
900
- position: absolute;
901
- mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
902
- -webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
903
- }
904
- .vuuActiveStatus::after {
905
- --vuu-icon-svg: var(--svg-active-status);
906
- background-color: rgb(0, 255, 0);
907
- }
908
- .vuuConnectingStatus::after {
909
- --vuu-icon-svg: var(--svg-connecting-status);
910
- background-color: orange;
911
- transform: scale(1);
912
- animation: infinite pulse 1s;
913
- }
914
- .vuuDisconnectedStatus::after {
915
- --vuu-icon-svg: var(--svg-disconnected-status);
916
- background-color: red;
917
- transform: scale(1);
918
- animation: infinite pulse 0.5s;
919
- }
920
- @keyframes pulse {
921
- 0% {
922
- transform: scale(0.95);
923
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
924
- }
925
- 70% {
926
- transform: scale(1);
927
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
928
- }
929
- 100% {
930
- transform: scale(0.95);
931
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
932
- }
933
- }
934
-
935
- /* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
936
- .saveLayoutPanel {
937
- --salt-selectable-foreground-hover: #6d18bdc3;
938
- --salt-selectable-foreground-selected: #6D18BD;
939
- --salt-selectable-borderColor-selected: #6D18BD;
940
- --saltInputLegacy-fontSize: 12px;
941
- --salt-text-label-fontSize: 10px;
942
- --saltFormFieldLegacy-label-paddingLeft: 0;
943
- --saltFormField-label-fontWeight: 400;
944
- }
945
- .saveLayoutPanel-panelContainer {
946
- display: flex;
947
- padding: 16px;
948
- flex-direction: column;
949
- align-items: flex-start;
950
- gap: 16px;
951
- }
952
- .saveLayoutPanel-panelContent {
953
- display: flex;
954
- align-items: flex-start;
955
- gap: 32px;
956
- }
957
- .saveLayoutPanel-formContainer {
958
- display: flex;
959
- width: 217px;
960
- flex-direction: column;
961
- align-items: flex-start;
962
- gap: 16px;
963
- }
964
- .saveLayoutPanel-formField {
965
- display: flex;
966
- flex-direction: column;
967
- gap: 1px;
968
- }
969
- .saveLayoutPanel-inputText {
970
- color: var(--light-text-secondary, #606477);
971
- font-family: Nunito Sans Regular;
972
- font-feature-settings:
973
- "ss02" on,
974
- "ss01" on,
975
- "salt" on,
976
- "liga" off;
977
- font-size: 12px;
978
- font-weight: 400;
979
- line-height: 16px;
980
- border: none;
981
- padding-left: 4px;
982
- width: 100%;
983
- outline: none;
984
- }
985
- .saveLayoutPanel-settingsGroup {
986
- display: flex;
987
- flex-wrap: wrap;
988
- align-items: flex-end;
989
- gap: 10px;
990
- width: 100%;
991
- line-height: 16px;
992
- }
993
- .saveLayoutPanel-screenshotContainer {
994
- display: flex;
995
- width: 304px;
996
- height: 208px;
997
- padding: 11px 15.5px;
998
- justify-content: center;
999
- align-items: center;
1000
- border: 1px solid #E8E8E8;
1001
- background: var(--dark-text-primary, #FFF);
1002
- }
1003
- .saveLayoutPanel-screenshot {
1004
- display: flex;
1005
- justify-content: center;
1006
- align-items: center;
1007
- background: lightgray 50% / cover no-repeat;
1008
- width: 273px;
1009
- height: 186px;
1010
- flex-shrink: 0;
1011
- }
1012
- .saveLayoutPanel-buttonsContainer {
1013
- display: flex;
1014
- padding-top: 8px;
1015
- justify-content: flex-end;
1016
- align-items: flex-start;
1017
- gap: 8px;
1018
- align-self: stretch;
1019
- }
1020
- .saveLayoutPanel-cancelButton,
1021
- .saveLayoutPanel-saveButton {
1022
- display: flex;
1023
- height: fit-content;
1024
- padding: 4px 8px;
1025
- align-items: flex-start;
1026
- gap: 8px;
1027
- border-radius: 6px;
1028
- font-feature-settings:
1029
- "ss02" on,
1030
- "ss01" on,
1031
- "salt" on,
1032
- "liga" off;
1033
- font-size: 12px;
1034
- font-style: normal;
1035
- font-weight: 700;
1036
- line-height: 133.333%;
1037
- letter-spacing: 0.48px;
1038
- text-transform: uppercase;
1039
- }
1040
- .saveLayoutPanel-cancelButton {
1041
- color: var(--actionable-primary-foreground-default, #606477);
1042
- background: var(--actionable-primary-background-default, #FFF);
1043
- }
1044
- .saveLayoutPanel-saveButton {
1045
- background: #6D18BD;
1046
- border-color: #6D18BD;
1047
- color: white;
1048
- }
1049
- .saveLayoutPanel-saveButton.saltButton:disabled {
1050
- background: #6D18BD;
1051
- border-color: #6D18BD;
1052
- color: white;
1053
- opacity: 0.3;
1054
- }
1055
- .saveLayoutPanel-saveButton.saltButton:hover {
1056
- background: #F37880;
1057
- border-color: #F37880;
1058
- color: white;
1059
- }
1060
-
1061
- /* ../vuu-shell/src/layout-management/LayoutList.css */
1062
- .vuuLayoutList {
1063
- align-self: stretch;
1064
- height: 100%;
1065
- overflow: hidden;
1066
- }
1067
- .vuuLayoutList-header {
1068
- color: var(--light-text-primary, #15171B);
1069
- font-weight: 700;
1070
- letter-spacing: 0.48px;
1071
- text-transform: uppercase;
1072
- display: flex;
1073
- padding: 16px 0px;
1074
- border-bottom: 1px solid rgba(119, 124, 148, 0.10);
1075
- line-height: 200%;
1076
- }
1077
- .vuuLayoutList-groupName {
1078
- display: flex;
1079
- padding-top: 24px;
1080
- color: var(--light-text-secondary, #606477);
1081
- font-weight: 700;
1082
- letter-spacing: 0.48px;
1083
- line-height: 200%;
1084
- }
1085
- .vuuLayoutList-layoutContainer {
1086
- display: flex;
1087
- align-items: center;
1088
- gap: 8px;
1089
- padding: 8px 0px;
1090
- flex: 1 1 auto;
1091
- cursor: pointer;
1092
- }
1093
- .vuuLayoutList-layoutName {
1094
- color: var(--light-text-primary, #15171B);
1095
- font-weight: 600;
1096
- line-height: 133.333%;
1097
- text-transform: capitalize;
1098
- }
1099
- .vuuLayoutList-screenshot {
1100
- width: 60px;
1101
- height: 45.6px;
1102
- border: 1px solid #D6D7DA;
1103
- }
1104
- .vuuLayoutList-layoutDetails {
1105
- color: var(--light-text-secondary, #606477);
1106
- font-size: 10px;
1107
- font-weight: 600;
1108
- line-height: 150%;
1109
- }
1110
-
1111
- /* ../vuu-shell/src/feature-list/FeatureList.css */
1112
- .vuuFeatureList {
1113
- background: var(--vuuFeatureList-background, var(--salt-container-primary-background));
1114
- height: 100%;
1115
- padding: 180px 32px 0 24px;
1116
- }
1117
- .vuuFeatureList-header {
1118
- font-size: 12px;
1119
- font-weight: 700;
1120
- }
1121
-
1122
- /* ../vuu-shell/src/left-nav/LeftNav.css */
1123
- .vuuLeftNav {
1124
- --salt-navigable-fontWeight-active: 700;
1125
- --vuuTab-background-selected: rgba(255, 255, 255, 0.10);
1126
- --vuuTab-hover-background: rgba(255, 255, 255, 0.10);
1127
- --vuuTab-before-content: none;
1128
- --vuuTab-borderRadius: 6px;
1129
- --vuuTab-height: 40px;
1130
- --vuuTab-padding: 0 0 0 48px;
1131
- --vuuTabstrip-fontWeight: 700;
1132
- --vuuTabstrip-width: 100%;
1133
- --svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');
1134
- --svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');
1135
- --svg-templates: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');
1136
- --svg-layouts: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 10H14V11.3333H15.3333V10ZM15.3333 12.6667H14V14H15.3333V12.6667ZM15.3333 7.33333H14V8.66667H15.3333V7.33333ZM10 2H8.66667V3.33333H10V2ZM15.3333 4.66667H14V6H15.3333V4.66667ZM0.666672 14H7.33334V10H0.666672V14ZM2.00001 4.66667H0.666672V6H2.00001V4.66667ZM10 12.6667H8.66667V14H10V12.6667ZM12.6667 2H11.3333V3.33333H12.6667V2ZM15.3333 2H14V3.33333H15.3333V2ZM12.6667 12.6667H11.3333V14H12.6667V12.6667ZM2.00001 7.33333H0.666672V8.66667H2.00001V7.33333ZM7.33334 2H6.00001V3.33333H7.33334V2ZM4.66667 2H3.33334V3.33333H4.66667V2ZM2.00001 2H0.666672V3.33333H2.00001V2Z"/></svg>');
1137
- --vuu-light-text-primary: #15171b;
1138
- box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
1139
- margin-bottom: 4px;
1140
- position: relative;
1141
- transition: width .3s ease-in-out;
1142
- z-index: 0;
1143
- }
1144
- .vuuLeftNav-menu-full {
1145
- --menu-width: var(--nav-menu-expanded-width);
1146
- }
1147
- .vuuLeftNav-menu-icons {
1148
- --menu-width: var(--nav-menu-collapsed-width);
1149
- }
1150
- .vuuLeftNav-menu-icons-content {
1151
- --menu-width: var(--nav-menu-collapsed-width);
1152
- }
1153
- .vuuLeftNav-menu-full-content {
1154
- --menu-width: var(--nav-menu-expanded-width);
1155
- }
1156
- .vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,
1157
- .vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary {
1158
- display: block;
1159
- }
1160
- .vuuLeftNav-menu-primary {
1161
- background-color: #2A015F;
1162
- container-type: inline-size;
1163
- display: flex;
1164
- flex-direction: column;
1165
- height: 100%;
1166
- padding: 32px 16px;
1167
- transition: width ease .3s;
1168
- width: var(--menu-width, 100%);
1169
- }
1170
- .vuuLeftNav-menu-secondary {
1171
- flex: 1 1 auto;
1172
- height: 100%;
1173
- display: none;
1174
- position: absolute;
1175
- top: 0;
1176
- right: 0;
1177
- width: 240px;
1178
- z-index: -1;
1179
- }
1180
- .vuuLeftNav .vuuTabstrip {
1181
- margin-top: 102px;
1182
- }
1183
- .vuuLeftNav .vuuTab {
1184
- --vuuTab-focusVisible-color: pink;
1185
- --vuu-icon-color: white;
1186
- --vuu-icon-left: 12px;
1187
- --vuu-icon-size: 16px;
1188
- border-left: solid 4px transparent;
1189
- }
1190
- .vuuLeftNav .vuuTab-selected {
1191
- --vuu-icon-color: var(--salt-navigable-indicator-active);
1192
- border-left: solid 4px var(--salt-navigable-indicator-active);
1193
- }
1194
- .vuuLeftNav-logo {
1195
- display: flex;
1196
- flex: 0 0 auto;
1197
- justify-content: center;
1198
- }
1199
- .vuuLeftNav-main {
1200
- flex: 1 1 auto;
1201
- }
1202
- .vuuLeftNav-menu {
1203
- color: white;
1204
- margin-top: 102px;
1205
- padding: 0;
1206
- }
1207
- .vuuLeftNav [data-icon=demo] {
1208
- --vuu-icon-svg: var(--svg-demo);
1209
- }
1210
- .vuuLeftNav [data-icon=tables] {
1211
- --vuu-icon-svg: var(--svg-tables);
1212
- }
1213
- .vuuLeftNav [data-icon=templates] {
1214
- --vuu-icon-svg: var(--svg-templates);
1215
- }
1216
- .vuuLeftNav [data-icon=layouts] {
1217
- --vuu-icon-svg: var(--svg-layouts);
1218
- }
1219
- @container (max-width: 100px) {
1220
- .vuuTab {
1221
- --vuuTab-padding: 0 0 0 42px;
1222
- }
1223
- .vuuTab-main {
1224
- display: none !important;
1225
- }
1226
- }
1227
- .vuuLeftNav-buttonBar {
1228
- align-items: center;
1229
- display: flex;
1230
- flex: 0 0 100px;
1231
- justify-content: center;
1232
- }
1233
- .vuuLeftNav-toggleButton {
1234
- --vuu-icon-color: var(--vuu-light-text-primary);
1235
- --vuu-icon-left: 11px;
1236
- --vuu-icon-top: 10px;
1237
- --vuu-icon-size: 16px;
1238
- background-color: var(--salt-navigable-indicator-active);
1239
- border-width: 0;
1240
- border-radius: 18px;
1241
- height: 36px;
1242
- position: relative;
1243
- width: 36px;
1244
- }
1245
- .vuuLeftNav-toggleButton-open {
1246
- --vuu-icon-left: 9px;
1247
- }
1248
- .vuuLeftNav-drawer {
1249
- display: flex;
1250
- padding: 40px 32px 0px 24px;
1251
- flex-direction: column;
1252
- align-items: flex-start;
1253
- flex-shrink: 0;
1254
- align-self: stretch;
1255
- background: #FFF;
1256
- box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
1257
- height: 100%;
1258
- }
1259
-
1260
- /* ../vuu-shell/src/login/LoginPanel.css */
1261
- .vuuLoginPanel {
1262
- --hwTextInput-border: solid 1px #ccc;
1263
- --hwTextInput-height: 28px;
1264
- --hwTextInput-padding: 0 12px;
1265
- --hwTextInput-width: 100%;
1266
- --login-row-height: 60px;
1267
- align-content: center;
1268
- align-items: center;
1269
- border: solid 1px lightgray;
1270
- display: flex;
1271
- flex-direction: column;
1272
- gap: 24px;
1273
- justify-content: center;
1274
- justify-items: center;
1275
- margin: 0 auto;
1276
- padding: 48px 48px 24px 48px;
1277
- width: fit-content;
1278
- }
1279
- .vuuLoginPanel-login {
1280
- grid-column: 2/3;
1281
- align-self: end;
1282
- justify-self: end;
1283
- }
1284
-
1285
- /* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
1286
- .vuuSessionEditingForm {
1287
- display: flex;
1288
- flex-direction: column;
1289
- gap: 3px;
1290
- min-width: 400px;
1291
- padding: 6px;
1292
- }
1293
- .vuuSessionEditingForm-content {
1294
- display: flex;
1295
- flex-direction: column;
1296
- flex: 1 1 auto;
1297
- gap: 3px;
1298
- overflow: auto;
1299
- }
1300
- .vuuSessionEditingForm-field {
1301
- align-items: center;
1302
- display: flex;
1303
- height: 32px;
1304
- }
1305
- .vuuSessionEditingForm-fieldLabel {
1306
- flex: 0 0 50%;
1307
- }
1308
- .vuuSessionEditingForm-fieldValue {
1309
- max-width: 50%;
1310
- }
1311
- .vuuSessionEditingForm-fieldValue.vuuReadOnly {
1312
- font-weight: var(--salt-text-label-fontWeight-strong);
1313
- }
1314
- .vuuSessionEditingForm-buttonbar {
1315
- align-items: center;
1316
- border-top: solid 1px var(--salt-container-primary-borderColor);
1317
- display: flex;
1318
- justify-content: flex-end;
1319
- flex: 0 0 autox;
1320
- gap: 6px;
1321
- padding-top: 6px;
1322
- }
1323
- .vuuSessionEditingForm-errorBanner {
1324
- --vuu-icon-left: 3px;
1325
- --vuu-icon-size: 18px;
1326
- --vuu-icon-top: 3px;
1327
- border: solid 1px var(--salt-status-error-borderColor);
1328
- line-height: 24px;
1329
- padding: 0 6px 0 26px;
1330
- position: relative;
1331
- }
1332
-
1333
- /* ../vuu-shell/src/user-profile/UserPanel.css */
1334
- .vuuUserPanel {
1335
- background-color: white;
1336
- display: flex;
1337
- flex-direction: column;
1338
- max-height: 400px;
1339
- padding: 12px;
1340
- }
1341
- vuuUserPanel-history {
1342
- flex: 1 1 auto;
1343
- }
1344
- .vuuUserPanel-buttonBar {
1345
- --saltButton-width: 100%;
1346
- align-items: flex-end;
1347
- border-top: 1px solid var(--surface3);
1348
- display: flex;
1349
- flex: 0 0 32px;
1350
- justify-content: flex-start;
1351
- }
1352
- .btn-logout {
1353
- --hwButton-icon-left: 12px;
1354
- --hwButton-padding: 0 6px 0 24px;
1355
- padding-left: 24px;
1356
- }
1357
-
1358
- /* ../vuu-shell/src/user-profile/UserProfile.css */
1359
- .vuuUserProfile {
1360
- --svg-icon: var(--svg-user);
1361
- }
1362
-
1363
- /* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
1364
- .vuuThemeSwitch {
1365
- --saltButton-minWidth: 22px;
1366
- --svg-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 31q2.9 0 4.95-2.05Q31 26.9 31 24q0-2.9-2.05-4.95Q26.9 17 24 17q-2.9 0-4.95 2.05Q17 21.1 17 24q0 2.9 2.05 4.95Q21.1 31 24 31Zm0 3q-4.15 0-7.075-2.925T14 24q0-4.15 2.925-7.075T24 14q4.15 0 7.075 2.925T34 24q0 4.15-2.925 7.075T24 34ZM3.5 25.5q-.65 0-1.075-.425Q2 24.65 2 24q0-.65.425-1.075Q2.85 22.5 3.5 22.5h5q.65 0 1.075.425Q10 23.35 10 24q0 .65-.425 1.075-.425.425-1.075.425Zm36 0q-.65 0-1.075-.425Q38 24.65 38 24q0-.65.425-1.075.425-.425 1.075-.425h5q.65 0 1.075.425Q46 23.35 46 24q0 .65-.425 1.075-.425.425-1.075.425ZM24 10q-.65 0-1.075-.425Q22.5 9.15 22.5 8.5v-5q0-.65.425-1.075Q23.35 2 24 2q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 10 24 10Zm0 36q-.65 0-1.075-.425-.425-.425-.425-1.075v-5q0-.65.425-1.075Q23.35 38 24 38q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 46 24 46ZM12 14.1l-2.85-2.8q-.45-.45-.425-1.075.025-.625.425-1.075.45-.45 1.075-.45t1.075.45L14.1 12q.4.45.4 1.05 0 .6-.4 1-.4.45-1.025.45-.625 0-1.075-.4Zm24.7 24.75L33.9 36q-.4-.45-.4-1.075t.45-1.025q.4-.45 1-.45t1.05.45l2.85 2.8q.45.45.425 1.075-.025.625-.425 1.075-.45.45-1.075.45t-1.075-.45ZM33.9 14.1q-.45-.45-.45-1.05 0-.6.45-1.05l2.8-2.85q.45-.45 1.075-.425.625.025 1.075.425.45.45.45 1.075t-.45 1.075L36 14.1q-.4.4-1.025.4-.625 0-1.075-.4ZM9.15 38.85q-.45-.45-.45-1.075t.45-1.075L12 33.9q.45-.45 1.05-.45.6 0 1.05.45.45.45.45 1.05 0 .6-.45 1.05l-2.8 2.85q-.45.45-1.075.425-.625-.025-1.075-.425ZM24 24Z"/></svg>');
1367
- --svg-dark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 42q-7.5 0-12.75-5.25T6 24q0-7.5 5.25-12.75T24 6q.4 0 .85.025.45.025 1.15.075-1.8 1.6-2.8 3.95-1 2.35-1 4.95 0 4.5 3.15 7.65Q28.5 25.8 33 25.8q2.6 0 4.95-.925T41.9 22.3q.05.6.075.975Q42 23.65 42 24q0 7.5-5.25 12.75T24 42Zm0-3q5.45 0 9.5-3.375t5.05-7.925q-1.25.55-2.675.825Q34.45 28.8 33 28.8q-5.75 0-9.775-4.025T19.2 15q0-1.2.25-2.575.25-1.375.9-3.125-4.9 1.35-8.125 5.475Q9 18.9 9 24q0 6.25 4.375 10.625T24 39Zm-.2-14.85Z"/></svg>');
1368
- padding: 2px;
1369
- }
1370
- .salt-density-high .vuuThemeSwitch {
1371
- --saltButton-minWidth: 16px;
1372
- --saltButton-width: 18px;
1373
- --vuuThemeSwitch-iconSize: 16px;
1374
- }
1375
- .vuuThemeSwitch [data-icon] {
1376
- --vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
1377
- }
1378
- .vuuThemeSwitch [data-icon=light] {
1379
- --vuu-icon-svg: var(--svg-light);
1380
- }
1381
- .vuuThemeSwitch [data-icon=dark] {
1382
- --vuu-icon-svg: var(--svg-dark);
1383
- }
1384
- .vuuThemeSwitch .saltToggleButton {
1385
- height: 20px;
1386
- width: 20px;
1387
- }
1388
-
1389
- /* ../vuu-shell/src/app-header/AppHeader.css */
1390
- .vuuAppHeader {
1391
- align-items: center;
1392
- background: var(--vuuAppHeader-background, var(--salt-container-primary-background));
1393
- border-bottom: solid 1px var(--salt-container-secondary-borderColor);
1394
- display: flex;
1395
- height: 40px;
1396
- justify-content: flex-end;
1397
- }
1398
- .vuu-theme .vuuAppHeader {
1399
- border-radius: 8px;
1400
- border: 1px solid #D6D7DA;
1401
- height: 44px;
1402
- margin-bottom: 8px;
1403
- }
1404
-
1405
- /* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
1406
- .vuuContextPanel {
1407
- position: relative;
1408
- transition: width .3s ease-in-out;
1409
- width: var(--vuu-side-panel-width, 0px) !important;
1410
- z-index: 1;
1411
- }
1412
- .vuuContextPanel-expanded {
1413
- --vuu-side-panel-width: 300px !important;
1414
- --vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
1415
- --vuu-side-panel-padding: 24px;
1416
- }
1417
- .vuuContextPanel-overlay {
1418
- width: 0px !important;
1419
- }
1420
- .vuuContextPanel-inner {
1421
- background-color: var(--salt-container-primary-background);
1422
- box-shadow: var(--vuu-side-panel-shadow, none);
1423
- display: flex;
1424
- flex-direction: column;
1425
- height: 100%;
1426
- overflow: auto;
1427
- padding-bottom: 24px;
1428
- padding-top: 24px;
1429
- padding-left: var(--vuu-side-panel-padding, 0);
1430
- padding-right: var(--vuu-side-panel-padding, 0);
1431
- position: absolute;
1432
- right: 0;
1433
- top: 0;
1434
- transition-property:
1435
- padding-left,
1436
- padding-right,
1437
- width;
1438
- transition-duration: .3s;
1439
- transition-timing-function: ease-in-out;
1440
- width: var(--vuu-side-panel-width, 0px);
1441
- }
1442
- .vuuContextPanel-header {
1443
- align-items: center;
1444
- display: flex;
1445
- flex-wrap: nowrap;
1446
- flex: 0 0 27px;
1447
- justify-content: space-between;
1448
- }
1449
- .vuuContextPanel-title {
1450
- font-size: 20px;
1451
- font-weight: 700;
1452
- white-space: nowrap;
1453
- }
1454
- .vuuContextPanel-content {
1455
- flex: 1 1 auto;
1456
- width: 100%;
1457
- }
1458
-
1459
- /* ../vuu-shell/src/shell.css */
1460
- .vuuShell {
1461
- background-color: var(--vuu-color-gray-25);
1462
- height: var(--vuuShell-height, 100vh);
1463
- width: var(--vuuShell-width, 100vw);
1464
- }
1465
- .vuuShell-mainTabs {
1466
- background: var(--salt-container-primary-background);
1467
- }
1468
- .vuuShell-palette {
1469
- --vuuView-border: none;
1470
- --vuuView-margin: 0;
1471
- }
1472
- .vuuShell-warningPlaceholder {
1473
- background-color: var(--salt-container-background-high);
1474
- height: 100%;
1475
- }
1476
- .vuuToolbarProxy {
1477
- background: var(--salt-container-primary-background);
1478
- }
1479
-
1480
- /* src/measured-container/MeasuredContainer.css */
1481
- .vuuMeasuredContainer {
1482
- height: var(--vuuMeasuredContainer-height, var(--measured-css-height));
1483
- width: var(--measured-css-width);
1484
- }
1485
-
1486
- /* src/overflow-container/OverflowContainer.css */
1487
- .vuuOverflowContainer {
1488
- --item-gap: 2px;
1489
- --overflow-direction: row;
1490
- --overflow-width: 0px;
1491
- --border-size: calc((var(--overflow-container-height) - 24px) / 2);
1492
- background-color: var(--vuuOverflowContainer-background);
1493
- height: var(--overflow-container-height);
1494
- }
1495
- .vuuOverflowContainer-horizontal {
1496
- --item-align: center;
1497
- --item-margin: 0 var(--item-gap) 0 var(--item-gap);
1498
- }
1499
- .vuuOverflowContainer-vertical {
1500
- --item-align: stretch;
1501
- --item-margin: var(--item-gap) 0 var(--item-gap) 0;
1502
- --overflow-direction: column;
1503
- }
1504
- .vuuOverflowContainer-wrapContainer {
1505
- align-items: var(--item-align);
1506
- display: flex;
1507
- flex-direction: var(--overflow-direction);
1508
- flex-wrap: wrap;
1509
- height: var(--overflow-container-height);
1510
- min-width: var(--vuuOverflowContainer-minWidth, 44px);
1511
- overflow: hidden;
1512
- position: relative;
1513
- width: 100%;
1514
- }
1515
- .vuuOverflowContainer-wrapContainer.overflowed {
1516
- --overflow-order: 2;
1517
- --overflow-left: auto;
1518
- --overflow-position: relative;
1519
- --overflow-width: auto;
1520
- }
1521
- .vuuOverflowContainer-item {
1522
- align-items: inherit;
1523
- display: flex;
1524
- order: 1;
1525
- position: relative;
1526
- height: var(--overflow-container-height);
1527
- margin: var(--item-margin);
1528
- }
1529
- .vuuOverflowContainer-item[data-align=right] {
1530
- margin-left: auto;
1531
- }
1532
- .vuuOverflowContainer-item.wrapped {
1533
- --overflow-item-bg: #ccc;
1534
- order: 3;
1535
- }
1536
- .vuuOverflowContainer-item.vuuDraggable-dragAway,
1537
- .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
1538
- display: none;
1539
- }
1540
- .vuuOverflowContainer-item.vuuDropTarget-settling {
1541
- visibility: hidden;
1542
- }
1543
- .vuuOverflowContainer-OverflowIndicator {
1544
- align-items: center;
1545
- background-color: transparent;
1546
- display: flex;
1547
- height: var(--overflow-container-height);
1548
- height: var(--overflow-container-height);
1549
- order: var(--overflow-order, 99);
1550
- overflow: hidden;
1551
- left: var(--overflow-left, 100%);
1552
- position: var(--overflow-position, absolute);
1553
- width: var(--overflow-width);
1554
- }
1555
- .vuuDraggable-vuuOverflowContainer {
1556
- align-items: center;
1557
- display: flex;
1558
- height: 44px;
1559
- }
1560
-
1561
- /* src/palette/Palette.css */
1562
- .vuuPalette {
1563
- --vuuList-borderStyle: none;
1564
- }
1565
- .vuuPalette-horizontal {
1566
- align-items: center;
1567
- display: flex;
1568
- }
1569
- .vuuPaletteItem {
1570
- --vuu-icon-color: var(--salt-text-primary-foreground);
1571
- --vuu-icon-left: 0;
1572
- --vuu-icon-size: 16px;
1573
- --vuu-icon-top: 11px;
1574
- --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
1575
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
1576
- padding-left: 12px;
1577
- font-size: 12px;
1578
- font-weight: 600;
1579
- }
1580
- .vuuSimpleDraggableWrapper > .vuuPaletteItem {
1581
- --vuu-icon-color: var(--salt-selectable-foreground);
1582
- }
1583
- .salt-theme .vuuPaletteItem {
1584
- font-size: 11px;
1585
- font-weight: normal;
1586
- }
1587
-
1588
- /* src/stack/Stack.css */
1589
- .Tabs {
1590
- display: flex;
1591
- box-sizing: border-box;
1592
- flex-direction: column;
1593
- }
1594
- .Tabs-horizontal {
1595
- --vuu-tabs-border-style: none solid none none;
1596
- flex-direction: row;
1597
- }
1598
- .Tabs .Toolbar:before {
1599
- left: 0;
1600
- width: 100%;
1601
- bottom: 0;
1602
- height: 1px;
1603
- content: "";
1604
- position: absolute;
1605
- background: var(--grey60);
1606
- }
1607
- .vuuTabHeader {
1608
- --saltTabs-activationIndicator-background: transparent;
1609
- --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
1610
- border-color: var(--salt-container-primary-borderColor);
1611
- border-style: var(--vuu-tabs-border-style, none none solid none);
1612
- border-width: 1px;
1613
- }
1614
- .vuuTabHeader + .hwFlexbox,
1615
- .vuuTabHeader + * {
1616
- flex: 1;
1617
- }
1618
- .vuuTabHeader + .vuuView > .vuuHeader {
1619
- height: 0;
1620
- overflow: hidden;
1621
- }
1622
- .Layout-svg-button {
1623
- --spacing-medium: 5px;
1624
- }
1625
-
1626
- /* src/toolbar/Toolbar.css */
1627
- .vuuToolbar {
1628
- background: var(--vuuToolbar-background, inherit);
1629
- height: var(--vuuToolbar-height, 36px);
1630
- }
1631
- .vuuToolbarItem {
1632
- height: 100%;
1633
- }
1634
- .vuuToolbarItem.vuuFocusVisible {
1635
- outline-color: var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));
1636
- outline-style: dashed;
1637
- outline-width: 1px;
1638
- outline-offset: -1px;
1639
- }
1640
-
1641
- /* src/tools/devtools-box/layout-configurator.css */
1642
- [data-design-mode=true] .Component {
1643
- filter: grayscale(100%);
1644
- opacity: 0.4;
1645
- }
1646
- [data-design-mode=true] .Component:after {
1647
- color: black;
1648
- content: "Component";
1649
- height: 12px;
1650
- background-color: yellow;
1651
- }
1652
- .LayoutConfigurator {
1653
- --margin-color: #f3cea5;
1654
- --border-color: #fddda0;
1655
- --padding-color: #c6d092;
1656
- --content-color: #8cb6c0;
1657
- display: flex;
1658
- flex-direction: column;
1659
- align-items: stretch;
1660
- background-color: var(--margin-color);
1661
- }
1662
- .LayoutConfigurator .layout-outer {
1663
- flex: 1 1 auto;
1664
- display: flex;
1665
- flex-direction: column;
1666
- align-items: stretch;
1667
- }
1668
- .LayoutBox {
1669
- --hw-control-font-size: 13px;
1670
- --hw-text-input-bg: rgba(255, 255, 255, 0.3);
1671
- --hwTextInput-padding: 3px;
1672
- --hw-text-input-position: absolute;
1673
- --hwTextInput-width: 30px;
1674
- flex: 1 1 auto;
1675
- }
1676
- .LayoutBox > .layout-top {
1677
- flex: 0 0 40px;
1678
- padding-left: 12px;
1679
- display: flex;
1680
- flex-direction: row;
1681
- align-items: center;
1682
- position: relative;
1683
- }
1684
- .LayoutBox > .layout-bottom {
1685
- flex: 0 0 40px;
1686
- position: relative;
1687
- display: flex;
1688
- flex-direction: row;
1689
- align-items: center;
1690
- }
1691
- .LayoutBox > .layout-inner > .layout-right,
1692
- .LayoutBox > .layout-inner > .layout-left {
1693
- flex: 0 0 40px;
1694
- display: flex;
1695
- flex-direction: column;
1696
- justify-content: center;
1697
- align-items: center;
1698
- }
1699
- .layout-top,
1700
- .layout-bottom {
1701
- --hw-text-input-margin: 0 0 0 -15px;
1702
- }
1703
- .layout-top > .layout-input,
1704
- .layout-bottom > .layout-input {
1705
- left: 50%;
1706
- }
1707
- .LayoutBox > .layout-inner {
1708
- flex: 1 1 auto;
1709
- display: flex;
1710
- flex-direction: row;
1711
- align-items: stretch;
1712
- }
1713
- .LayoutBox.layout-margin {
1714
- background-color: var(--margin-color);
1715
- border: dashed 2px black;
1716
- }
1717
- .LayoutBox.layout-border {
1718
- background-color: var(--border-color);
1719
- border: solid 2px black;
1720
- }
1721
- .LayoutBox.layout-padding {
1722
- background-color: var(--padding-color);
1723
- border: dashed 2px black;
1724
- }
1725
- .LayoutBox .layout-content {
1726
- flex: 1 1 auto;
1727
- background-color: var(--content-color);
1728
- border: solid 2px #808080;
1729
- }
1730
- .LayoutBox .layout-title {
1731
- color: #161616;
1732
- font-size: 11px;
1733
- left: 4px;
1734
- line-height: 15px;
1735
- position: absolute;
1736
- top: 1px;
1737
- }
1738
-
1739
- /* src/tools/devtools-tree/layout-tree-viewer.css */
1740
- .hwLayoutTreeViewer {
1741
- }
1742
- .hwLayoutTreeNode {
1743
- cursor: default;
1744
- }
1745
- .hwLayoutTreeNode:hover {
1746
- background-color: rgba(255, 255, 255, 0.2);
1747
- }
1748
- .hwLayoutTreeNode[aria-selected=true] {
1749
- background-color: cornflowerblue;
1750
- color: white;
1751
- }
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}.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}.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{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;max-width:var(--vuuFilterPill-maxWidth, 200px);padding:0 8px;position:relative;user-select:none;outline:none}.vuuFilterPill.vuuToolbarItem{height:26px}.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: 28px;--salt-container-primary-borderColor: var(--vuu-color-purple-10);--vuuOverflowContainer-minWidth: 0;--saltButton-height: 26px;--saltButton-width: 26px;align-items:center;background-color:var(--salt-container-secondary-background);border-bottom:solid 1px #D6D7DA;display:flex;flex:var(--vuuFilterBar-flex);gap:4px;height:33px;padding:0 8px}.vuuFilterbar-icon{display:inline-block;height:16px;width:16px}.vuuFilterBar [data-icon=tune]{--vuu-icon-size: 16px;--vuu-icon-svg: var(--vuu-svg-tune)}.vuuFilterBar [data-icon=plus]{--vuu-icon-size: 16px}.vuuFilterBar .vuuToolbar{flex:0 1 auto}.salt-theme{--vuuFilterEditor-lineHeight: 28px}.salt-density-high{--vuuFilterEditor-buttonWidth: 20px;--vuuFilterEditor-height: 22px;--vuuFilterEditor-lineHeight: 20px}.vuuFilterInput{--vuuFilterEditor-background: var(--salt-container-primary-background);--vuuFilterEditor-color: var(--salt-text-primary-foreground);--vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);--vuuFilterEditor-fontSize: var(--salt-text-fontSize);--vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);--vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);--vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);--vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);--vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);--vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);--vuuFilterEditor-suggestion-height: 24px;--vuuFilterEditor-variableColor: var(--vuu-color_purple-10);align-items:center;border-color:var(--salt-container-secondary-borderColor);border-style:solid none;border-width:1px;box-sizing:border-box;display:flex;height:var(--vuuFilterEditor-height, 30px)}.vuuFilterInput-Editor{flex:1 1 auto;height:100%}.vuuFilterInput-FilterButton,.vuuFilterInput-ClearButton{--vuu-icon-size: 12px;--saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px)}.vuuIllustration{--vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);background:var(--salt-container-secondary-background);color:var(--salt-text-secondary-foreground)}.vuuStatus-container{display:flex}.vuuStatus-text{align-self:center}.vuuStatus{--vuu-icon-height: 18px;--vuu-icon-padding: var(--vuuStatus-padding, 6px);--vuu-icon-width: var(--vuuStatus-width, auto);--vuu-icon-min-width: var(--vuuStatus-min-width, 20px);align-items:center;display:inline-flex;height:var(--vuu-icon-height);justify-content:center;min-width:var(--vuu-icon-min-width);padding:0 var(--vuu-icon-padding);width:var(--vuu-icon-width);position:relative}.vuuStatus[data-icon]:after{inset:0 0 0 0;content:"";box-shadow:0 0 #000;position:absolute;mask:var(--vuu-icon-svg) center center/20px 20px no-repeat;-webkit-mask:var(--vuu-icon-svg) center center/20px 20px no-repeat}.vuuActiveStatus:after{--vuu-icon-svg: var(--svg-active-status);background-color:#0f0}.vuuConnectingStatus:after{--vuu-icon-svg: var(--svg-connecting-status);background-color:orange;transform:scale(1);animation:infinite pulse 1s}.vuuDisconnectedStatus:after{--vuu-icon-svg: var(--svg-disconnected-status);background-color:red;transform:scale(1);animation:infinite pulse .5s}@keyframes pulse{0%{transform:scale(.95);box-shadow:0 0 #000000b3}70%{transform:scale(1);box-shadow:0 0 #0000}to{transform:scale(.95);box-shadow:0 0 #0000}}.saveLayoutPanel{--salt-selectable-foreground-hover: #6d18bdc3;--salt-selectable-foreground-selected: #6D18BD;--salt-selectable-borderColor-selected: #6D18BD;--saltInputLegacy-fontSize: 12px;--salt-text-label-fontSize: 10px;--saltFormFieldLegacy-label-paddingLeft: 0;--saltFormField-label-fontWeight: 400}.saveLayoutPanel-panelContainer{display:flex;padding:16px;flex-direction:column;align-items:flex-start;gap:16px}.saveLayoutPanel-panelContent{display:flex;align-items:flex-start;gap:32px}.saveLayoutPanel-formContainer{display:flex;width:217px;flex-direction:column;align-items:flex-start;gap:16px}.saveLayoutPanel-formField{display:flex;flex-direction:column;gap:1px}.saveLayoutPanel-inputText{color:var(--light-text-secondary, #606477);font-family:Nunito Sans Regular;font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-size:12px;font-weight:400;line-height:16px;border:none;padding-left:4px;width:100%;outline:none}.saveLayoutPanel-settingsGroup{display:flex;flex-wrap:wrap;align-items:flex-end;gap:10px;width:100%;line-height:16px}.saveLayoutPanel-screenshotContainer{display:flex;width:304px;height:208px;padding:11px 15.5px;justify-content:center;align-items:center;border:1px solid #E8E8E8;background:var(--dark-text-primary, #FFF)}.saveLayoutPanel-screenshot{display:flex;justify-content:center;align-items:center;background:lightgray 50% / cover no-repeat;width:273px;height:186px;flex-shrink:0}.saveLayoutPanel-buttonsContainer{display:flex;padding-top:8px;justify-content:flex-end;align-items:flex-start;gap:8px;align-self:stretch}.saveLayoutPanel-cancelButton,.saveLayoutPanel-saveButton{display:flex;height:fit-content;padding:4px 8px;align-items:flex-start;gap:8px;border-radius:6px;font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-size:12px;font-style:normal;font-weight:700;line-height:133.333%;letter-spacing:.48px;text-transform:uppercase}.saveLayoutPanel-cancelButton{color:var(--actionable-primary-foreground-default, #606477);background:var(--actionable-primary-background-default, #FFF)}.saveLayoutPanel-saveButton{background:#6D18BD;border-color:#6d18bd;color:#fff}.saveLayoutPanel-saveButton.saltButton:disabled{background:#6D18BD;border-color:#6d18bd;color:#fff;opacity:.3}.saveLayoutPanel-saveButton.saltButton:hover{background:#F37880;border-color:#f37880;color:#fff}.vuuLayoutList{--vuuMeasuredContainer-flex: 1 1 1px;align-self:stretch;display:flex;flex-direction:column;height:100%;overflow:hidden}.vuuLayoutList-header{color:var(--light-text-primary, #15171B);flex:0 0 47px;font-weight:700;letter-spacing:.48px;text-transform:uppercase;display:flex;padding:16px 0;border-bottom:1px solid rgba(119,124,148,.1);line-height:200%}.vuuLayoutList-groupName{display:flex;padding-top:24px;color:var(--light-text-secondary, #606477);font-weight:700;letter-spacing:.48px;line-height:200%}.vuuLayoutList-layoutContainer{display:flex;align-items:center;gap:8px;padding:8px 0;flex:1 1 auto;cursor:pointer}.vuuLayoutList-layoutName{color:var(--light-text-primary, #15171B);font-weight:600;line-height:133.333%;text-transform:capitalize}.vuuLayoutList-screenshot{width:60px;height:45.6px;border:1px solid #D6D7DA}.vuuLayoutList-layoutDetails{color:var(--light-text-secondary, #606477);font-size:10px;font-weight:600;line-height:150%}.vuuFeatureList{background:var(--vuuFeatureList-background, var(--salt-container-primary-background));display:flex;flex-direction:column;height:100%;padding:195px 32px 16px 24px}.vuuFeatureList-header{flex:0 0 40px;font-size:12px;font-weight:700;line-height:2}.vuuFeatureList-content{flex:1 1 auto;font-size:12px;font-weight:700}.vuuLeftNav{--salt-navigable-fontWeight-active: 700;--vuuTab-background-selected: rgba(255, 255, 255, .1);--vuuTab-hover-background: rgba(255, 255, 255, .1);--vuuTab-before-content: none;--vuuTab-borderRadius: 6px;--vuuTab-height: 40px;--vuuTab-padding: 0 0 0 48px;--vuuTabstrip-fontWeight: 700;--vuuTabstrip-width: 100%;--svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');--svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');--svg-templates: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');--svg-layouts: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 10H14V11.3333H15.3333V10ZM15.3333 12.6667H14V14H15.3333V12.6667ZM15.3333 7.33333H14V8.66667H15.3333V7.33333ZM10 2H8.66667V3.33333H10V2ZM15.3333 4.66667H14V6H15.3333V4.66667ZM0.666672 14H7.33334V10H0.666672V14ZM2.00001 4.66667H0.666672V6H2.00001V4.66667ZM10 12.6667H8.66667V14H10V12.6667ZM12.6667 2H11.3333V3.33333H12.6667V2ZM15.3333 2H14V3.33333H15.3333V2ZM12.6667 12.6667H11.3333V14H12.6667V12.6667ZM2.00001 7.33333H0.666672V8.66667H2.00001V7.33333ZM7.33334 2H6.00001V3.33333H7.33334V2ZM4.66667 2H3.33334V3.33333H4.66667V2ZM2.00001 2H0.666672V3.33333H2.00001V2Z"/></svg>');--vuu-light-text-primary: #15171b;box-shadow:3px 4px 4px #00000026;margin-bottom:4px;position:relative;transition:width .3s ease-in-out;z-index:0}.vuuLeftNav-menu-full{--menu-width: var(--nav-menu-expanded-width)}.vuuLeftNav-menu-icons,.vuuLeftNav-menu-icons-content{--menu-width: var(--nav-menu-collapsed-width)}.vuuLeftNav-menu-full-content{--menu-width: var(--nav-menu-expanded-width)}.vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,.vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary{display:block}.vuuLeftNav-menu-primary{background-color:#2a015f;container-type:inline-size;display:flex;flex-direction:column;height:100%;padding:32px 16px;transition:width ease .3s;width:var(--menu-width, 100%)}.vuuLeftNav-menu-secondary{flex:1 1 auto;height:100%;display:none;position:absolute;top:0;right:0;width:var(--nav-menu-content-width, 240px);z-index:-1}.vuuLeftNav .vuuTabstrip{margin-top:102px}.vuuLeftNav .vuuTab{--vuuTab-focusVisible-color: pink;--vuu-icon-color: white;--vuu-icon-left: 12px;--vuu-icon-size: 16px;border-left:solid 4px transparent}.vuuLeftNav .vuuTab-selected{--vuu-icon-color: var(--salt-navigable-indicator-active);border-left:solid 4px var(--salt-navigable-indicator-active)}.vuuLeftNav-logo{display:flex;flex:0 0 auto;justify-content:center}.vuuLeftNav-main{flex:1 1 auto}.vuuLeftNav-menu{color:#fff;margin-top:102px;padding:0}.vuuLeftNav [data-icon=demo]{--vuu-icon-svg: var(--svg-demo)}.vuuLeftNav [data-icon=tables]{--vuu-icon-svg: var(--svg-tables)}.vuuLeftNav [data-icon=templates]{--vuu-icon-svg: var(--svg-templates)}.vuuLeftNav [data-icon=layouts]{--vuu-icon-svg: var(--svg-layouts)}@container (max-width: 100px){.vuuTab{--vuuTab-padding: 0 0 0 42px}.vuuTab-main{display:none!important}}.vuuLeftNav-buttonBar{align-items:center;display:flex;flex:0 0 100px;justify-content:center}.vuuLeftNav-toggleButton{--vuu-icon-color: var(--vuu-light-text-primary);--vuu-icon-left: 11px;--vuu-icon-top: 10px;--vuu-icon-size: 16px;background-color:var(--salt-navigable-indicator-active);border-width:0;border-radius:18px;height:36px;position:relative;width:36px}.vuuLeftNav-toggleButton-open{--vuu-icon-left: 9px}.vuuLeftNav-drawer{display:flex;padding:40px 32px 0 24px;flex-direction:column;align-items:flex-start;flex-shrink:0;align-self:stretch;background:#FFF;box-shadow:3px 4px 4px #00000026;height:100%}.vuuLoginPanel{--hwTextInput-border: solid 1px #ccc;--hwTextInput-height: 28px;--hwTextInput-padding: 0 12px;--hwTextInput-width: 100%;--login-row-height: 60px;align-content:center;align-items:center;border:solid 1px lightgray;display:flex;flex-direction:column;gap:24px;justify-content:center;justify-items:center;margin:0 auto;padding:48px 48px 24px;width:fit-content}.vuuLoginPanel-login{grid-column:2/3;align-self:end;justify-self:end}.vuuSessionEditingForm{display:flex;flex-direction:column;gap:3px;min-width:400px;padding:6px}.vuuSessionEditingForm-content{display:flex;flex-direction:column;flex:1 1 auto;gap:3px;overflow:auto}.vuuSessionEditingForm-field{align-items:center;display:flex;height:32px}.vuuSessionEditingForm-fieldLabel{flex:0 0 50%}.vuuSessionEditingForm-fieldValue{max-width:50%}.vuuSessionEditingForm-fieldValue.vuuReadOnly{font-weight:var(--salt-text-label-fontWeight-strong)}.vuuSessionEditingForm-buttonbar{align-items:center;border-top:solid 1px var(--salt-container-primary-borderColor);display:flex;justify-content:flex-end;flex:0 0 autox;gap:6px;padding-top:6px}.vuuSessionEditingForm-errorBanner{--vuu-icon-left: 3px;--vuu-icon-size: 18px;--vuu-icon-top: 3px;border:solid 1px var(--salt-status-error-borderColor);line-height:24px;padding:0 6px 0 26px;position:relative}.vuuUserPanel{background-color:#fff;display:flex;flex-direction:column;max-height:400px;padding:12px}vuuUserPanel-history{flex:1 1 auto}.vuuUserPanel-buttonBar{--saltButton-width: 100%;align-items:flex-end;border-top:1px solid var(--surface3);display:flex;flex:0 0 32px;justify-content:flex-start}.btn-logout{--hwButton-icon-left: 12px;--hwButton-padding: 0 6px 0 24px;padding-left:24px}.vuuUserProfile{--svg-icon: var(--svg-user)}.vuuThemeSwitch{--saltButton-minWidth: 22px;--svg-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 31q2.9 0 4.95-2.05Q31 26.9 31 24q0-2.9-2.05-4.95Q26.9 17 24 17q-2.9 0-4.95 2.05Q17 21.1 17 24q0 2.9 2.05 4.95Q21.1 31 24 31Zm0 3q-4.15 0-7.075-2.925T14 24q0-4.15 2.925-7.075T24 14q4.15 0 7.075 2.925T34 24q0 4.15-2.925 7.075T24 34ZM3.5 25.5q-.65 0-1.075-.425Q2 24.65 2 24q0-.65.425-1.075Q2.85 22.5 3.5 22.5h5q.65 0 1.075.425Q10 23.35 10 24q0 .65-.425 1.075-.425.425-1.075.425Zm36 0q-.65 0-1.075-.425Q38 24.65 38 24q0-.65.425-1.075.425-.425 1.075-.425h5q.65 0 1.075.425Q46 23.35 46 24q0 .65-.425 1.075-.425.425-1.075.425ZM24 10q-.65 0-1.075-.425Q22.5 9.15 22.5 8.5v-5q0-.65.425-1.075Q23.35 2 24 2q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 10 24 10Zm0 36q-.65 0-1.075-.425-.425-.425-.425-1.075v-5q0-.65.425-1.075Q23.35 38 24 38q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 46 24 46ZM12 14.1l-2.85-2.8q-.45-.45-.425-1.075.025-.625.425-1.075.45-.45 1.075-.45t1.075.45L14.1 12q.4.45.4 1.05 0 .6-.4 1-.4.45-1.025.45-.625 0-1.075-.4Zm24.7 24.75L33.9 36q-.4-.45-.4-1.075t.45-1.025q.4-.45 1-.45t1.05.45l2.85 2.8q.45.45.425 1.075-.025.625-.425 1.075-.45.45-1.075.45t-1.075-.45ZM33.9 14.1q-.45-.45-.45-1.05 0-.6.45-1.05l2.8-2.85q.45-.45 1.075-.425.625.025 1.075.425.45.45.45 1.075t-.45 1.075L36 14.1q-.4.4-1.025.4-.625 0-1.075-.4ZM9.15 38.85q-.45-.45-.45-1.075t.45-1.075L12 33.9q.45-.45 1.05-.45.6 0 1.05.45.45.45.45 1.05 0 .6-.45 1.05l-2.8 2.85q-.45.45-1.075.425-.625-.025-1.075-.425ZM24 24Z"/></svg>');--svg-dark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 42q-7.5 0-12.75-5.25T6 24q0-7.5 5.25-12.75T24 6q.4 0 .85.025.45.025 1.15.075-1.8 1.6-2.8 3.95-1 2.35-1 4.95 0 4.5 3.15 7.65Q28.5 25.8 33 25.8q2.6 0 4.95-.925T41.9 22.3q.05.6.075.975Q42 23.65 42 24q0 7.5-5.25 12.75T24 42Zm0-3q5.45 0 9.5-3.375t5.05-7.925q-1.25.55-2.675.825Q34.45 28.8 33 28.8q-5.75 0-9.775-4.025T19.2 15q0-1.2.25-2.575.25-1.375.9-3.125-4.9 1.35-8.125 5.475Q9 18.9 9 24q0 6.25 4.375 10.625T24 39Zm-.2-14.85Z"/></svg>');padding:2px}.salt-density-high .vuuThemeSwitch{--saltButton-minWidth: 16px;--saltButton-width: 18px;--vuuThemeSwitch-iconSize: 16px}.vuuThemeSwitch [data-icon]{--vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px)}.vuuThemeSwitch [data-icon=light]{--vuu-icon-svg: var(--svg-light)}.vuuThemeSwitch [data-icon=dark]{--vuu-icon-svg: var(--svg-dark)}.vuuThemeSwitch .saltToggleButton{height:20px;width:20px}.vuuAppHeader{align-items:center;background:var(--vuuAppHeader-background, var(--salt-container-primary-background));border-bottom:solid 1px var(--salt-container-secondary-borderColor);display:flex;height:40px;justify-content:flex-end}.vuu-theme .vuuAppHeader{border-radius:8px;border:1px solid #D6D7DA;height:44px;margin-bottom:8px}.vuuContextPanel{position:relative;transition:width .3s ease-in-out;width:var(--vuu-side-panel-width, 0px)!important;z-index:1}.vuuContextPanel-expanded{--vuu-side-panel-width: 300px !important;--vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, .1);--vuu-side-panel-padding: 24px}.vuuContextPanel-overlay{width:0px!important}.vuuContextPanel-inner{background-color:var(--salt-container-primary-background);box-shadow:var(--vuu-side-panel-shadow, none);display:flex;flex-direction:column;height:100%;overflow:auto;padding-bottom:24px;padding-top:24px;padding-left:var(--vuu-side-panel-padding, 0);padding-right:var(--vuu-side-panel-padding, 0);position:absolute;right:0;top:0;transition-property:padding-left,padding-right,width;transition-duration:.3s;transition-timing-function:ease-in-out;width:var(--vuu-side-panel-width, 0px)}.vuuContextPanel-header{align-items:center;display:flex;flex-wrap:nowrap;flex:0 0 27px;justify-content:space-between}.vuuContextPanel-title{font-size:20px;font-weight:700;white-space:nowrap}.vuuContextPanel-content{flex:1 1 auto;width:100%}.vuuShell{background-color:var(--vuu-color-gray-25);height:var(--vuuShell-height, 100vh);width:var(--vuuShell-width, 100vw)}.vuuShell-mainTabs{background:var(--salt-container-primary-background)}.vuuShell-palette{--vuuView-border: none;--vuuView-margin: 0}.vuuShell-warningPlaceholder{background-color:var(--salt-container-background-high);height:100%}.vuuToolbarProxy{background:var(--salt-container-primary-background)}.vuuShell-mainTabs>.vuuTabstrip>.vuuOverflowContainer-wrapContainer{background:var(--vuu-color-gray-25)}.vuuMeasuredContainer{flex:var(--vuuMeasuredContainer-flex, none);height:var(--vuuMeasuredContainer-height, var(--measured-css-height));min-height:0;width:var(--measured-css-width)}.vuuOverflowContainer{--item-gap: 2px;--overflow-direction: row;--overflow-height: var(--item-height);--overflow-top:top:0;--overflow-width: 0px;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-height: auto;--item-margin: var(--item-gap) 0 var(--item-gap) 0;--overflow-direction: column;--overflow-height: 0;--overflow-left: 0;--overflow-top: 100%;--overflow-width: auto}.vuuOverflowContainer-wrapContainer{--item-height: var(--overflow-container-height);align-items:var(--item-align);display:flex;flex-direction:var(--overflow-direction);flex-wrap:wrap;height:var(--item-height);min-width:var(--vuuOverflowContainer-minWidth, 44px);overflow:hidden;position:relative;width:100%}.vuuOverflowContainer-wrapContainer-overflowed{--overflow-order: 2;--overflow-left: auto;--overflow-position: relative;--overflow-width: auto}.vuuOverflowContainer-vertical.vuuOverflowContainer-wrapContainer-overflowed{--overflow-height: auto}.vuuOverflowContainer-item{align-items:inherit;display:flex;order:1;position:relative;height:var(--item-height);margin:var(--item-margin)}.vuuOverflowContainer-item[data-align=right]{margin-left:auto}.vuuOverflowContainer-item.wrapped{--overflow-item-bg: #ccc;order:3}.vuuOverflowContainer-item.vuuDraggable-dragAway,.vuuOverflowContainer-item:has(.vuuDraggable-dragAway){display:none}.vuuOverflowContainer-item.vuuDropTarget-settling{visibility:hidden}.vuuOverflowContainer-OverflowIndicator{align-items:center;background-color:transparent;display:flex;height:var(--overflow-height);order:var(--overflow-order, 99);overflow:hidden;left:var(--overflow-left, 100%);top:var(--overflow-top, 100%);position:var(--overflow-position, absolute);width:var(--overflow-width)}.vuuDraggable-vuuOverflowContainer{align-items:center;display:flex;height:44px}.vuuPalette{--vuuList-borderStyle: none}.vuuPalette-horizontal{align-items:center;display:flex}.vuuPaletteItem{--vuu-icon-color: var(--salt-text-primary-foreground);--vuu-icon-left: 0;--vuu-icon-size: 16px;--vuu-icon-top: 11px;--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);border-bottom:solid 1px var(--salt-separable-tertiary-borderColor);padding-left:12px;font-size:12px;font-weight:600}.vuuSimpleDraggableWrapper>.vuuPaletteItem{--vuu-icon-color: var(--salt-selectable-foreground)}.salt-theme .vuuPaletteItem{font-size:11px;font-weight:400}.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:0px}.vuuPopupMenu:focus,.vuuToolbarItem:focus,.vuuToolbarItem:focus-visible{outline-color:var(--vuuToolbarItem-outlineColor, var(--vuu-color-purple-10));outline-style:dashed;outline-width:1px;outline-offset:0px}[data-design-mode=true] .Component{filter:grayscale(100%);opacity:.4}[data-design-mode=true] .Component:after{color:#000;content:"Component";height:12px;background-color:#ff0}.LayoutConfigurator{--margin-color: #f3cea5;--border-color: #fddda0;--padding-color: #c6d092;--content-color: #8cb6c0;display:flex;flex-direction:column;align-items:stretch;background-color:var(--margin-color)}.LayoutConfigurator .layout-outer{flex:1 1 auto;display:flex;flex-direction:column;align-items:stretch}.LayoutBox{--hw-control-font-size: 13px;--hw-text-input-bg: rgba(255, 255, 255, .3);--hwTextInput-padding: 3px;--hw-text-input-position: absolute;--hwTextInput-width: 30px;flex:1 1 auto}.LayoutBox>.layout-top{flex:0 0 40px;padding-left:12px;display:flex;flex-direction:row;align-items:center;position:relative}.LayoutBox>.layout-bottom{flex:0 0 40px;position:relative;display:flex;flex-direction:row;align-items:center}.LayoutBox>.layout-inner>.layout-right,.LayoutBox>.layout-inner>.layout-left{flex:0 0 40px;display:flex;flex-direction:column;justify-content:center;align-items:center}.layout-top,.layout-bottom{--hw-text-input-margin: 0 0 0 -15px}.layout-top>.layout-input,.layout-bottom>.layout-input{left:50%}.LayoutBox>.layout-inner{flex:1 1 auto;display:flex;flex-direction:row;align-items:stretch}.LayoutBox.layout-margin{background-color:var(--margin-color);border:dashed 2px black}.LayoutBox.layout-border{background-color:var(--border-color);border:solid 2px black}.LayoutBox.layout-padding{background-color:var(--padding-color);border:dashed 2px black}.LayoutBox .layout-content{flex:1 1 auto;background-color:var(--content-color);border:solid 2px #808080}.LayoutBox .layout-title{color:#161616;font-size:11px;left:4px;line-height:15px;position:absolute;top:1px}.hwLayoutTreeNode{cursor:default}.hwLayoutTreeNode:hover{background-color:#fff3}.hwLayoutTreeNode[aria-selected=true]{background-color:#6495ed;color:#fff}
1752
2
  /*# sourceMappingURL=index.css.map */