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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.css CHANGED
@@ -1,4530 +1,3 @@
1
- /* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
2
- .vuuStatus-container {
3
- display: flex;
4
- }
5
- .vuuStatus-text {
6
- align-self: center;
7
- }
8
- .vuuStatus {
9
- --vuu-icon-height: 18px;
10
- --vuu-icon-padding: var(--vuuStatus-padding, 6px);
11
- --vuu-icon-width: var(--vuuStatus-width, auto);
12
- --vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
13
- align-items: center;
14
- display: inline-flex;
15
- height: var(--vuu-icon-height);
16
- justify-content: center;
17
- min-width: var(--vuu-icon-min-width);
18
- padding: 0 var(--vuu-icon-padding);
19
- width: var(--vuu-icon-width);
20
- position: relative;
21
- }
22
- .vuuStatus[data-icon]::after {
23
- inset: 0 0 0 0;
24
- content: "";
25
- box-shadow: 0 0 0 0 black;
26
- position: absolute;
27
- mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
28
- -webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
29
- }
30
- .vuuActiveStatus::after {
31
- --vuu-icon-svg: var(--svg-active-status);
32
- background-color: rgb(0, 255, 0);
33
- }
34
- .vuuConnectingStatus::after {
35
- --vuu-icon-svg: var(--svg-connecting-status);
36
- background-color: orange;
37
- transform: scale(1);
38
- animation: infinite pulse 1s;
39
- }
40
- .vuuDisconnectedStatus::after {
41
- --vuu-icon-svg: var(--svg-disconnected-status);
42
- background-color: red;
43
- transform: scale(1);
44
- animation: infinite pulse 0.5s;
45
- }
46
- @keyframes pulse {
47
- 0% {
48
- transform: scale(0.95);
49
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
50
- }
51
- 70% {
52
- transform: scale(1);
53
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
54
- }
55
- 100% {
56
- transform: scale(0.95);
57
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
58
- }
59
- }
60
-
61
- /* ../vuu-layout/src/dock-layout/Drawer.css */
62
- .vuuDrawer {
63
- --drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);
64
- --vuu-close-icon-svg: var(--svg-chevron-double-right);
65
- transition: flex-basis;
66
- transition-duration: var(--drawer-transition-duration);
67
- position: relative;
68
- z-index: 1;
69
- flex-basis: 0;
70
- flex-grow: 1;
71
- flex-shrink: 1;
72
- min-width: 0;
73
- min-height: 0;
74
- display: flex;
75
- }
76
- .vuuDrawer-peekaboo {
77
- flex-basis: var(--drawer-peek-size);
78
- flex-grow: 0;
79
- flex-shrink: 0;
80
- }
81
- .vuuDrawer-inline.vuuDrawer-open {
82
- flex-basis: var(--drawer-size);
83
- flex-grow: 0;
84
- flex-shrink: 0;
85
- }
86
- .vuuDrawer-liner {
87
- background-color: var(--drawer-bg);
88
- overflow: hidden;
89
- position: relative;
90
- }
91
- .vuuDrawer-content {
92
- height: 100%;
93
- overflow: hidden;
94
- position: absolute;
95
- top: 0;
96
- right: var(--drawer-peek-size);
97
- transition: right;
98
- transition-duration: var(--drawer-transition-duration);
99
- width: 100%;
100
- flex: 1 1 100%;
101
- }
102
- .vuuDrawer-open .vuuDrawer-content {
103
- right: 0;
104
- }
105
- .vuuDrawer-left {
106
- border-right: var(--drawer-leading-edge-border);
107
- }
108
- .vuuDrawer-right {
109
- border-left: var(--drawer-leading-edge-border);
110
- }
111
- .vuuDrawer-top {
112
- border-bottom: var(--drawer-leading-edge-border);
113
- }
114
- .vuuDrawer-bottom {
115
- border-top: var(--drawer-leading-edge-border);
116
- }
117
- .vuuDrawer-left .vuuDrawer-liner,
118
- .vuuDrawer-right .vuuDrawer-liner {
119
- height: 100%;
120
- transition: width;
121
- }
122
- .vuuDrawer-top .vuuDrawer-liner,
123
- .vuuDrawer-bottom .vuuDrawer-liner {
124
- width: 100%;
125
- transition: height;
126
- }
127
- .vuuDrawer-inline .vuuDrawer-liner {
128
- width: 100%;
129
- height: 100%;
130
- }
131
- .vuuDrawer-over .vuuDrawer-liner {
132
- position: absolute;
133
- transition-duration: 0.4s;
134
- }
135
- .vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner {
136
- top: 0;
137
- left: 0;
138
- width: 0;
139
- }
140
- .vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner {
141
- top: 0;
142
- right: 0;
143
- width: 0;
144
- }
145
- .vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner {
146
- height: 0;
147
- top: 0;
148
- left: 0;
149
- }
150
- .vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner {
151
- bottom: 0;
152
- height: 0;
153
- left: 0;
154
- }
155
- .vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
156
- .vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
157
- width: var(--drawer-peek-size);
158
- }
159
- .vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
160
- .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
161
- height: var(--drawer-peek-size);
162
- }
163
- .vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
164
- .vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
165
- width: var(--drawer-size);
166
- }
167
- .vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
168
- .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
169
- height: var(--drawer-size);
170
- }
171
- .vuuDrawer-top,
172
- .vuuDrawer-left {
173
- order: 0;
174
- }
175
- .vuuDrawer-bottom,
176
- .vuuDrawer-right {
177
- order: 99;
178
- }
179
- .vuuDrawer-left,
180
- .vuuDrawer-right {
181
- flex-direction: column;
182
- }
183
- .vuuToggleButton-container {
184
- --saltButton-height: 28px;
185
- --saltButton-width: 28px;
186
- --vuu-icon-size: 12px;
187
- flex: 0 0 28px;
188
- }
189
- .vuuDrawer-open {
190
- --vuu-close-icon-svg: var(--svg-chevron-double-left);
191
- }
192
-
193
- /* ../vuu-layout/src/dock-layout/DockLayout.css */
194
- .vuuDockLayout {
195
- --chest-bg: var(--hw-chest-bg, inherit);
196
- --drawer-bg: var(--hw-drawer-bg, inherit);
197
- --drawer-size: var(--hw-drawer-size, 200px);
198
- --drawer-peek-size: var(--hw-drawer-peek-size, 32px);
199
- --drawer-transition-duration: var(--hw-drawer-transition-duration, 0.4s);
200
- background-color: var(--chest-bg);
201
- display: flex;
202
- }
203
- .vuuDockLayout-horizontal {
204
- flex-direction: row;
205
- }
206
- .vuuDockLayout-vertical {
207
- flex-direction: column;
208
- }
209
- .vuuDockLayout-content {
210
- background-color: var(--chest-bg);
211
- flex-grow: 1;
212
- flex-shrink: 1;
213
- overflow: hidden;
214
- display: flex;
215
- align-items: center;
216
- justify-content: center;
217
- }
218
- .vuuDockLayout-horizontal .vuuDockLayout-content {
219
- flex-basis: 100%;
220
- }
221
- .vuuDockLayout-vertical .vuuDockLayout-content {
222
- flex-basis: 100%;
223
- }
224
-
225
- /* ../vuu-layout/src/Component.css */
226
-
227
- /* ../vuu-layout/src/drag-drop/DropMenu.css */
228
- .vuuDropMenu {
229
- margin-left: -50%;
230
- margin-bottom: -50%;
231
- background-color: white;
232
- border: solid 1px var(--grey40);
233
- display: inline-flex;
234
- justify-content: center;
235
- align-items: center;
236
- padding: 3px;
237
- border-radius: 3px;
238
- }
239
- .vuuDropMenu-left,
240
- .vuuDropMenu-right {
241
- flex-direction: column;
242
- }
243
- .vuuDropMenu-bottom {
244
- transform: translate(0, -30px);
245
- }
246
- .vuuDropMenu-right {
247
- transform: translate(-20px, 0);
248
- }
249
- .vuuDropMenu-item {
250
- --vuu-icon-size: 20px;
251
- width: 32px;
252
- height: 32px;
253
- background-color: var(--grey20);
254
- border-bottom: solid 1px var(--grey40);
255
- cursor: pointer;
256
- display: flex;
257
- align-items: center;
258
- justify-content: center;
259
- }
260
- .vuuDropMenu-item .Icon {
261
- transform: scale(1.25);
262
- transform-origin: center center;
263
- }
264
- .vuuDropMenu-left .vuuDropMenu-item .hwIcon {
265
- transform: scale(1.25) rotate(180deg);
266
- transform-origin: center center;
267
- }
268
- .vuuDropMenu-top .vuuDropMenu-item .hwIcon {
269
- transform: scale(1.25) rotate(270deg);
270
- transform-origin: center center;
271
- }
272
- .vuuDropMenu-bottom .vuuDropMenu-item .hwIcon {
273
- transform: scale(1.25) rotate(90deg);
274
- transform-origin: center center;
275
- }
276
- .vuuDropMenu-item .hwIcon-path {
277
- fill: grey;
278
- }
279
- .vuuDropMenu-item:hover {
280
- background-color: rgba(200, 200, 200, 0.5);
281
- }
282
- .vuuDropMenu-item:hover .hwIcon-path-2 {
283
- fill: blue;
284
- }
285
- .vuuDropMenu-item:last-child {
286
- border-bottom: none;
287
- }
288
-
289
- /* ../vuu-layout/src/drag-drop/DropTargetRenderer.css */
290
- #hw-drag-canvas {
291
- visibility: hidden;
292
- z-index: 10;
293
- position: absolute;
294
- top: 0px;
295
- left: 0;
296
- right: 0;
297
- bottom: 0;
298
- background-color: transparent;
299
- }
300
- #hw-drag-canvas > svg {
301
- position: absolute;
302
- }
303
- .drawing #hw-drag-canvas {
304
- visibility: visible;
305
- }
306
- path.drop-target {
307
- stroke: blue;
308
- stroke-width: 4px;
309
- fill: transparent;
310
- }
311
- path.drop-target.centre {
312
- stroke: red;
313
- }
314
- #vuu-drop-outline {
315
- fill: rgba(0, 0, 255, .3);
316
- stroke: none;
317
- stroke-dasharray: 4 2;
318
- }
319
- #hw-drop-guides {
320
- fill: none;
321
- stroke: rgba(0, 0, 0, 0.3);
322
- stroke-dasharray: 2 3;
323
- }
324
-
325
- /* ../vuu-layout/src/DraggableLayout.css */
326
- .DraggableLayout {
327
- display: inline-block;
328
- outline: none;
329
- }
330
- [data-dragging=true] {
331
- position: absolute !important;
332
- z-index: 100;
333
- }
334
- .vuuSimpleDraggableWrapper {
335
- background-color: white;
336
- box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
337
- }
338
- .vuuSimpleDraggableWrapper > * {
339
- height: 100%;
340
- width: 100%;
341
- }
342
-
343
- /* ../vuu-layout/src/placeholder/Placeholder.css */
344
- .vuuPlaceholder {
345
- flex-basis: 0;
346
- flex-grow: 1;
347
- flex-shrink: 1;
348
- }
349
- .vuuPlaceholder-shim {
350
- flex-grow: 0;
351
- flex-shrink: 0;
352
- }
353
-
354
- /* ../vuu-layout/src/flexbox/Splitter.css */
355
- .vuuSplitter {
356
- --splitter-background: var(--salt-separable-secondary-borderColor);
357
- --splitter-borderColor: var(--salt-separable-secondary-borderColor);
358
- --splitter-borderStyle: none;
359
- --splitter-borderWidth: 0;
360
- --splitter-size: 3px;
361
- align-items: center;
362
- background-color: var(--splitter-background);
363
- border-color: var(--splitter-borderColor);
364
- border-style: var(--splitter-borderStyle);
365
- border-width: var(--splitter-borderWidth);
366
- box-sizing: border-box;
367
- display: flex;
368
- justify-content: center;
369
- position: relative;
370
- outline: none;
371
- z-index: 1;
372
- }
373
- .vuuSplitter:hover {
374
- --splitter-background: var(--salt-separable-primary-borderColor);
375
- }
376
- .vuuSplitter-active {
377
- --splitter-background: var(--salt-separable-primary-borderColor);
378
- }
379
- .vuuSplitter-column {
380
- cursor: ns-resize;
381
- height: var(--splitter-size);
382
- }
383
- .vuuSplitter:not(.vuuSplitter-column) {
384
- cursor: ew-resize;
385
- width: var(--splitter-size);
386
- }
387
- .vuuSplitter:before {
388
- border: none;
389
- border-radius: 0;
390
- content: "";
391
- display: block;
392
- padding: 0;
393
- }
394
- .vuuSplitter-grab-zone {
395
- position: absolute;
396
- background-color: rgba(255, 0, 0, 0.01);
397
- cursor: inherit;
398
- }
399
- .vuuSplitter-column .vuuSplitter-grab-zone {
400
- left: 0;
401
- right: 0;
402
- top: -5px;
403
- bottom: -5px;
404
- }
405
- .vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
406
- left: -5px;
407
- right: -5px;
408
- top: 0;
409
- bottom: 0;
410
- }
411
- .vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
412
- background-color: rgba(255, 255, 255, .05);
413
- left: -150px;
414
- right: -150px;
415
- }
416
- .vuuSplitter:not(.vuuSplitter-column):before {
417
- width: 1px;
418
- height: 10px;
419
- 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%);
420
- }
421
- .vuuSplitter-active.vuuSplitter-column:before {
422
- 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%);
423
- }
424
- .vuuSplitter-active:not(.vuuSplitter-column):before {
425
- 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%);
426
- }
427
- .vuuSplitter-column:before {
428
- width: 10px;
429
- height: 1px;
430
- 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%);
431
- }
432
-
433
- /* ../vuu-layout/src/flexbox/Flexbox.css */
434
- :root {
435
- --hw-space-unit: 4px;
436
- --hw-flex-gap: 3;
437
- --hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
438
- }
439
- .hwFlexbox {
440
- background-color: var(--container1-background);
441
- box-sizing: border-box;
442
- display: flex;
443
- gap: calc(var(--spacing) * var(--space));
444
- min-height: 0;
445
- min-width: 0;
446
- overflow: hidden;
447
- }
448
- .hwFlexbox-column {
449
- flex-direction: column;
450
- }
451
- .hwFlexbox-row {
452
- flex-direction: row;
453
- }
454
- .hwFlexbox > .Splitter {
455
- flex-basis: auto;
456
- flex-grow: 0;
457
- flex-shrink: 0;
458
- }
459
- .hwFlexbox.full-page {
460
- height: 100vh;
461
- width: 100vw;
462
- }
463
- .flex-fill {
464
- border-color: red;
465
- flex: 0;
466
- flex-grow: 1;
467
- flex-shrink: 1;
468
- }
469
- .vuuView.flex-fill {
470
- border-color: red;
471
- }
472
-
473
- /* ../vuu-layout/src/flexbox/FluidGrid.css */
474
- :root {
475
- --hw-space-unit: 4px;
476
- --hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
477
- }
478
- .hwFluidGrid {
479
- --gap: var(--gutter-width);
480
- display: flex;
481
- gap: calc(var(--grid-gap) * var(--hw-space-unit));
482
- flex-wrap: wrap;
483
- padding: 0;
484
- }
485
- .hwFluidGrid > * {
486
- --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
487
- --gutter-count: calc(var(--parent-col-count) - 1);
488
- --total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
489
- --available-width: calc(100% - var(--total-gutter-width));
490
- flex-basis: 0;
491
- flex-grow: 1;
492
- flex-shrink: 1;
493
- position: relative;
494
- }
495
- .hwFluidGrid > *:after {
496
- content: "";
497
- position: absolute;
498
- top: 0;
499
- left: 0;
500
- right: 0;
501
- bottom: 0;
502
- border: dashed 2px blue;
503
- }
504
- .hwFluidGrid > [data-xs] {
505
- --internal-gutter-count: calc(var(--col-span) - 1);
506
- --percent-width: calc(var(--col-span) / var(--parent-col-count));
507
- --internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
508
- flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
509
- flex-grow: 0;
510
- }
511
- .hwFluidGrid > [data-xs="1"] {
512
- --col-span: 1;
513
- }
514
- .hwFluidGrid > [data-xs="2"] {
515
- --col-span: 2;
516
- }
517
- .hwFluidGrid > [data-xs="3"] {
518
- --col-span: 3;
519
- }
520
- .hwFluidGrid > [data-xs="4"] {
521
- --col-span: 4;
522
- }
523
- .hwFluidGrid > [data-xs="6"] {
524
- --col-span: 6;
525
- }
526
- .hwFluidGrid > [data-xs="8"] {
527
- --col-span: 8;
528
- }
529
- .hwFluidGrid > [data-xs="9"] {
530
- --col-span: 9;
531
- }
532
- .hwFluidGrid > [data-xs="10"] {
533
- --col-span: 10;
534
- }
535
- .hwFluidGrid > [data-xs="11"] {
536
- --col-span: 11;
537
- }
538
- .hwFluidGrid > [data-xs="12"] {
539
- --col-span: 12;
540
- }
541
- @media (min-width: 600px) {
542
- .hwFluidGrid > [data-sm="1"] {
543
- --col-span: 1;
544
- }
545
- .hwFluidGrid > [data-sm="2"] {
546
- --col-span: 2;
547
- }
548
- .hwFluidGrid > [data-sm="3"] {
549
- --col-span: 3;
550
- }
551
- .hwFluidGrid > [data-sm="4"] {
552
- --col-span: 4;
553
- }
554
- .hwFluidGrid > [data-sm="6"] {
555
- --col-span: 6;
556
- }
557
- .hwFluidGrid > [data-sm="8"] {
558
- --col-span: 8;
559
- }
560
- .hwFluidGrid > [data-sm="9"] {
561
- --col-span: 9;
562
- }
563
- .hwFluidGrid > [data-sm="10"] {
564
- --col-span: 10;
565
- }
566
- .hwFluidGrid > [data-sm="11"] {
567
- --col-span: 11;
568
- }
569
- .hwFluidGrid > [data-sm="12"] {
570
- --col-span: 12;
571
- }
572
- }
573
- .hwFluidGrid-show-grid {
574
- --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
575
- --grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
576
- --grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
577
- --grid-available-width: calc(100% - var(--grid-total-gutter-width));
578
- --grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
579
- --column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
580
- 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)));
581
- }
582
-
583
- /* ../vuu-ui-controls/src/dropdown/Dropdown.css */
584
- .vuuDropdown {
585
- --saltIcon-margin: 2px 0 0 8px;
586
- --saltButton-borderStyle: solid;
587
- --saltButton-borderColor: var(--salt-editable-borderColor);
588
- --saltButton-borderWidth: 1px;
589
- --saltButton-borderRadius: 6px;
590
- --saltButton-height: var(--vuuDropdown-height, auto);
591
- display: inline-block;
592
- line-height: 0;
593
- position: relative;
594
- width: var(--vuuDropdown-width, auto);
595
- }
596
- .vuuDropdown-fullWidth {
597
- width: 100%;
598
- }
599
- .vuuDropdown-popup {
600
- background: var(--salt-container-primary-background);
601
- z-index: calc(var(--salt-zIndex-flyover) - 1);
602
- }
603
- .vuuDropdown-popup-component {
604
- --vuuList-borderStyle: none;
605
- }
606
- .vuuDropdownButton {
607
- width: 100%;
608
- }
609
-
610
- /* ../vuu-ui-controls/src/dropdown/DropdownButton.css */
611
- .vuuDropdownButton {
612
- --saltButton-background-hover: var(--salt-actionable-secondary-background);
613
- --saltButton-background-active: var(--salt-actionable-secondary-background);
614
- --saltButton-fontWeight: var(--salt-text-fontWeight-strong);
615
- --saltButton-textAlign: left;
616
- --saltButton-textTransform: none;
617
- --saltButton-width: 100%;
618
- --vuu-icon-size: 16px;
619
- }
620
- .vuuDropdownButton:active {
621
- --saltIcon-color: var(--salt-actionable-secondary-foreground);
622
- --saltButton-text-color-active: var(--salt-actionable-secondary-foreground);
623
- }
624
- .vuuDropdownButton-fullwidth {
625
- width: 100%;
626
- }
627
- .vuuDropdownButton-content {
628
- align-items: center;
629
- flex: 1;
630
- width: 100%;
631
- display: flex;
632
- white-space: nowrap;
633
- }
634
- .vuuDropdownButton-buttonLabel {
635
- display: inline-block;
636
- letter-spacing: 0;
637
- overflow: hidden;
638
- text-overflow: ellipsis;
639
- width: 100%;
640
- }
641
- .vuuDropdownButton-formField.saltButton:focus,
642
- .vuuDropdownButton-formField.saltButton:focus-visible {
643
- outline: none;
644
- }
645
-
646
- /* ../vuu-ui-controls/src/list/Highlighter.css */
647
- .saltHighlighter-highlight {
648
- font-weight: var(--salt-text-fontWeight-strong);
649
- }
650
-
651
- /* ../vuu-ui-controls/src/list/CheckboxIcon.css */
652
- .vuuCheckboxIcon {
653
- --vuu-icon-size: 12px;
654
- --vuu-icon-left: -1px;
655
- --vuu-icon-top: -1px;
656
- --vuu-icon-svg: var(--vuu-svg-tick);
657
- border-style: solid;
658
- border-color: var(--vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor));
659
- border-radius: var(--vuuCheckboxIcon-borderRadius, 3px);
660
- border-width: 1px;
661
- display: inline-block;
662
- height: var(--vuuCheckboxIcon-size, 12px);
663
- position: relative;
664
- width: var(--vuuCheckboxIcon-size, 12px);
665
- }
666
- .vuuCheckboxIcon-checked {
667
- background-color: var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));
668
- border-color: var(--vuuCheckboxIcon-borderColor-checked, var(--salt-selectable-borderColor-selected));
669
- }
670
- .vuuCheckboxIcon-checked:after {
671
- content: "";
672
- background-color: white;
673
- left: var(--vuu-icon-left, auto);
674
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
675
- -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
676
- mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
677
- mask-repeat: no-repeat;
678
- -webkit-mask-repeat: no-repeat;
679
- position: absolute;
680
- top: var(--vuu-icon-top, auto);
681
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
682
- }
683
-
684
- /* ../vuu-ui-controls/src/list/ListItem.css */
685
- .vuuListItem {
686
- --list-item-text-color: var(--salt-text-primary-foreground);
687
- --list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));
688
- --list-item-text-color-active: var(--salt-text-primary-foreground);
689
- --list-item-background-active: var(--salt-selectable-background-selected);
690
- --list-item-alignItems: center;
691
- }
692
- .vuuListItem.vuuHighlighted {
693
- --saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);
694
- --list-item-background: var(--salt-selectable-background-hover);
695
- }
696
- .vuuListItemHeader {
697
- font-weight: var(--salt-text-fontWeight-strong);
698
- }
699
- .vuuListItemHeader[data-sticky] {
700
- position: sticky;
701
- top: 0;
702
- z-index: 1;
703
- }
704
- .vuuListItem {
705
- color: var(--list-item-text-color);
706
- cursor: var(--vuuList-item-cursor, pointer);
707
- background: var(--vuuList-item-background, var(--list-item-background));
708
- font-size: var(--salt-text-fontSize);
709
- text-align: var(--salt-text-textAlign);
710
- line-height: var(--salt-text-lineHeight);
711
- height: var(--vuuList-item-height, var(--list-item-height, auto));
712
- margin-bottom: var(--list-item-gap);
713
- padding: 0 var(--vuuListItem-padding, var(--salt-size-unit));
714
- left: 0;
715
- right: 0;
716
- display: flex;
717
- position: relative;
718
- align-items: var(--list-item-alignItems);
719
- white-space: nowrap;
720
- }
721
- .vuuListItem:last-child {
722
- margin-bottom: 0px;
723
- }
724
- .vuuListItem-checkbox {
725
- --list-item-background-active: var(--salt-selectable-background);
726
- --list-item-text-color-active: var(--salt-text-primary-foreground);
727
- --list-item-text-padding: 0 0 0 var(--salt-size-unit);
728
- }
729
- .vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox) {
730
- --list-item-background: var(--list-item-background-active);
731
- color: var(--list-item-text-color-active);
732
- }
733
- .vuuListItem.vuuDisabled {
734
- --list-item-text-color: var(--salt-text-primary-foreground-disabled);
735
- cursor: var(--salt-selectable-cursor-disabled);
736
- }
737
- .vuuListItem.vuuFocusVisible {
738
- outline-style: var(--salt-focused-outlineStyle);
739
- outline-width: var(--salt-focused-outlineWidth);
740
- outline-offset: -2px;
741
- outline-color: var(--salt-focused-outlineColor);
742
- }
743
- .vuuListItem.vuuFocusVisible:after {
744
- content: none;
745
- }
746
- .vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible {
747
- outline-color: var(--list-item-selected-focus-outlineColor);
748
- }
749
- .vuuListItem-textWrapper {
750
- flex: 1;
751
- overflow: hidden;
752
- padding: var(--list-item-text-padding, 0px);
753
- white-space: nowrap;
754
- text-overflow: ellipsis;
755
- }
756
- .vuuListItem-proxy {
757
- position: absolute !important;
758
- visibility: hidden;
759
- }
760
- .vuuDraggable-list-item {
761
- --vuuList-item-height: 24px;
762
- background-color: white;
763
- }
764
- .vuuListItem.vuuDraggable-dragAway {
765
- display: none;
766
- }
767
-
768
- /* ../vuu-ui-controls/src/drag-drop/Draggable.css */
769
- .vuuDraggable {
770
- background: transparent;
771
- box-shadow: var(--salt-overlayable-shadow-drag);
772
- cursor: var(--salt-draggable-grab-cursor-active);
773
- position: absolute;
774
- opacity: .95;
775
- z-index: 2000;
776
- }
777
- .vuuDraggable-spacer {
778
- display: var(--vuuDraggable-display, inline-block);
779
- height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
780
- transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
781
- width: var(--vuuDraggable-spacer-width, 0);
782
- }
783
- .vuuDraggable-dropIndicatorPosition {
784
- display: var(--saltDraggable-display, inline-block);
785
- height: 0px;
786
- width: 100%;
787
- }
788
- .vuuDraggable-dropIndicatorContainer {
789
- transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
790
- }
791
- .vuuDraggable-dropIndicator {
792
- background-color: var(--salt-palette-accent-background);
793
- height: 2px;
794
- width: 100%;
795
- }
796
- .vuuDraggable-dropIndicator:before {
797
- content: "";
798
- width: 6px;
799
- height: 6px;
800
- border-radius: 3px;
801
- background-color: var(--salt-palette-accent-background);
802
- position: absolute;
803
- top: -2px;
804
- left: -3px;
805
- }
806
- .vuuDraggable-settling {
807
- transition-property: left, top;
808
- transition-duration: .15s;
809
- transition-timing-function: ease-out;
810
- }
811
- .vuuDraggable-spacer {
812
- order: 1;
813
- }
814
-
815
- /* ../vuu-ui-controls/src/list/List.css */
816
- .vuuList {
817
- --list-background: var(--salt-container-primary-background);
818
- --list-borderStyle: var(--vuuList-borderStyle,var(--salt-container-borderStyle));
819
- --list-borderWidth: var(--salt-size-border);
820
- --list-height: auto;
821
- --list-item-height: var(--salt-size-stackable);
822
- --list-item-gap: 0px;
823
- --list-maxHeight: 100%;
824
- --vuuDraggable-display: block;
825
- --vuuDraggable-spacer-height: 0;
826
- --vuuDraggable-spacer-width: 100%;
827
- --vuuDraggable-transitionProp: height;
828
- --vuuMeasuredContainer-height: var(--computed-list-height);
829
- background: var(--list-background);
830
- border-color: var(--salt-container-primary-borderColor);
831
- border-style: var(--list-borderStyle);
832
- border-width: var(--list-borderWidth);
833
- height: var(--saltList-height, var(--list-height));
834
- max-height: var(--list-maxHeight);
835
- outline: none;
836
- position: relative;
837
- user-select: none;
838
- width: var(--saltList-width, auto);
839
- }
840
- .vuuList-contentSized {
841
- box-sizing: content-box;
842
- }
843
- .vuuList-borderless {
844
- --list-borderStyle: none;
845
- }
846
- .vuuList-viewport {
847
- height: var(--computed-list-height, var(--measured-px-height));
848
- overflow: auto;
849
- width: var(--measured-px-width);
850
- }
851
- .vuuListItemHeader {
852
- --saltList-item-background: var(--list-item-header-background);
853
- color: var(--list-item-header-color);
854
- }
855
- .vuuListItemHeader[data-sticky=true] {
856
- --saltList-item-background: var(--list-background);
857
- position: sticky;
858
- top: 0;
859
- z-index: 1;
860
- }
861
- .vuuList-collapsible .vuuListItemHeader:after {
862
- border-width: var(--checkbox-borderWidth);
863
- border-color: var(--checkbox-borderColor);
864
- content: var(--list-item-header-twisty-content);
865
- -webkit-mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
866
- mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
867
- background: var(--list-item-header-twisty-color);
868
- height: 12px;
869
- left: var(--list-item-header-twisty-left);
870
- right: var(--list-item-header-twisty-right);
871
- margin-top: -8px;
872
- position: absolute;
873
- top: var(--list-item-header-twisty-top);
874
- transition: transform 0.3s;
875
- width: 12px;
876
- }
877
- .vuuListItemHeader[aria-expanded=false]:after {
878
- transform: rotate(-90deg);
879
- }
880
- .vuuList-scrollingContentContainer {
881
- box-sizing: inherit;
882
- position: relative;
883
- }
884
- .vuuList-virtualized .vuuListItem {
885
- line-height: 30px;
886
- position: absolute;
887
- top: 0;
888
- left: 0;
889
- right: 0;
890
- will-change: transform;
891
- }
892
- .vuuList.saltFocusVisible:after {
893
- inset: 2px;
894
- }
895
-
896
- /* ../vuu-ui-controls/src/list/RadioIcon.css */
897
- .vuuRadioIcon {
898
- --vuu-icon-size: 12px;
899
- --vuu-icon-left: -1px;
900
- --vuu-icon-top: -1px;
901
- --vuu-icon-svg: var(--vuu-svg-radio);
902
- border-style: solid;
903
- border-color: var(--vuuRadioIcon-borderColor, var(--salt-selectable-borderColor));
904
- border-radius: 50%;
905
- border-width: 1px;
906
- display: inline-block;
907
- height: var(--vuuRadioIcon-size, 12px);
908
- position: relative;
909
- width: var(--vuuRadioIcon-size, 12px);
910
- }
911
- .vuuRadioIcon-checked {
912
- background-image: var(--vuu-svg-radio);
913
- border: none;
914
- background-repeat: no-repeat;
915
- }
916
- .vuuRadioIcon-checked:after {
917
- content: "";
918
- left: var(--vuu-icon-left, auto);
919
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
920
- -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
921
- mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
922
- mask-repeat: no-repeat;
923
- -webkit-mask-repeat: no-repeat;
924
- position: absolute;
925
- top: var(--vuu-icon-top, auto);
926
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
927
- }
928
-
929
- /* ../vuu-ui-controls/src/list/ChevronIcon.css */
930
- .vuuChevronIcon {
931
- --vuu-icon-size: 14px;
932
- --vuu-icon-left: -1px;
933
- --vuu-icon-top: -1px;
934
- height: var(--vuuChevronIcon-size, 14px);
935
- position: relative;
936
- width: var(--vuuChevronIcon-size, 14px);
937
- cursor: pointer;
938
- }
939
- .vuuChevronIcon:after {
940
- content: "";
941
- background-color: #777C94;
942
- left: var(--vuu-icon-left, auto);
943
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
944
- -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
945
- mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
946
- mask-repeat: no-repeat;
947
- -webkit-mask-repeat: no-repeat;
948
- position: absolute;
949
- top: var(--vuu-icon-top, auto);
950
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
951
- }
952
- .vuuChevronIcon.up {
953
- --vuu-icon-svg: var(--vuu-svg-chevron-up);
954
- }
955
- .vuuChevronIcon.down {
956
- --vuu-icon-svg: var(--vuu-svg-chevron-down);
957
- }
958
- .vuuChevronIcon.left {
959
- --vuu-icon-svg: var(--vuu-svg-chevron-left);
960
- }
961
- .vuuChevronIcon.right {
962
- --vuu-icon-svg: var(--vuu-svg-chevron-right);
963
- }
964
-
965
- /* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
966
- .vuuEditableLabel {
967
- --editableLabel-padding: var(--vuuEditableLabel-padding, 6px);
968
- --editableLabel-height: var(--vuuEditableLabel-height, 26px);
969
- --saltInput-background: transparent;
970
- --saltInput-height: calc(var(--editableLabel-height) - 4px);
971
- --saltInput-minWidth: 14px;
972
- color: inherit;
973
- cursor: default;
974
- display: flex;
975
- flex-direction: column;
976
- font-size: var(--salt-text-fontSize);
977
- height: var(--editableLabel-height);
978
- justify-content: center;
979
- max-width: 170px;
980
- outline: none;
981
- overflow: hidden;
982
- padding: 0 var(--editableLabel-padding);
983
- position: relative;
984
- text-overflow: ellipsis;
985
- white-space: nowrap;
986
- z-index: var(--salt-zIndex-default);
987
- }
988
- .vuuEditableLabel:before {
989
- content: attr(data-text);
990
- display: block;
991
- height: 0px;
992
- visibility: hidden;
993
- white-space: pre-wrap;
994
- }
995
- .vuuEditableLabel .saltInput {
996
- font-weight: var(--salt-text-fontWeight);
997
- left: var(--editableLabel-padding, 0);
998
- padding: 0;
999
- outline-style: none;
1000
- position: absolute;
1001
- right: var(--editableLabel-padding, 0);
1002
- top: var(--saltEditableLabel-top, 2px);
1003
- width: auto;
1004
- }
1005
- .vuuEditableLabel .saltInput-activationIndicator {
1006
- display: none;
1007
- }
1008
- .vuuEditableLabel-input {
1009
- background-color: transparent;
1010
- border: none;
1011
- box-sizing: content-box;
1012
- color: inherit;
1013
- display: block;
1014
- flex: 1;
1015
- font: inherit;
1016
- height: 20px;
1017
- margin: 0;
1018
- min-width: 0;
1019
- outline: none;
1020
- padding: 0;
1021
- }
1022
- .vuuEditableLabel-label {
1023
- overflow: hidden;
1024
- text-overflow: ellipsis;
1025
- white-space: nowrap;
1026
- }
1027
-
1028
- /* ../vuu-ui-controls/src/expando-input/ExpandoInput.css */
1029
- .vuuExpandoInput {
1030
- --salt-editable-secondary-background: white;
1031
- --expandoInput-height: var(--vuuExpandoInput-height, 26px);
1032
- --expandoInput-padding: var(--vuuExpandoInput-padding, 6px);
1033
- --saltInput-height: calc(var(--vuuExpandoInput-height) - 4px);
1034
- --saltInput-minWidth: var(--vuuExpandoInput-minWidth, 8px);
1035
- border: var(--vuuExpandoInput-border, none);
1036
- border-radius: var(--vuuExpandoInput-borderRadius, 0);
1037
- color: inherit;
1038
- cursor: default;
1039
- display: inline-block;
1040
- font-size: var(--salt-text-fontSize);
1041
- height: var(--expandoInput-height);
1042
- min-width: calc(var(--saltInput-minWidth) + 2 * var(--expandoInput-padding));
1043
- outline: none;
1044
- padding: 0 var(--expandoInput-padding);
1045
- position: relative;
1046
- }
1047
- .vuuExpandoInput:before {
1048
- content: attr(data-text);
1049
- display: block;
1050
- height: 0px;
1051
- visibility: hidden;
1052
- white-space: pre-wrap;
1053
- }
1054
- .vuuExpandoInput .saltInput {
1055
- font-weight: var(--salt-text-fontWeight);
1056
- left: var(--expandoInput-padding, 0);
1057
- padding: 0;
1058
- outline-style: none;
1059
- position: absolute;
1060
- right: var(--expandoInput-padding, 0);
1061
- top: var(--vuuExpandoInput-top, 2px);
1062
- width: auto;
1063
- }
1064
- .vuuExpandoInput .saltInput-activationIndicator {
1065
- display: none;
1066
- }
1067
- .vuuExpandoInput-input {
1068
- background-color: transparent;
1069
- border: none;
1070
- box-sizing: content-box;
1071
- display: block;
1072
- flex: 1;
1073
- font: inherit;
1074
- height: 20px;
1075
- margin: 0;
1076
- min-width: 0;
1077
- outline: none;
1078
- padding: 0;
1079
- }
1080
-
1081
- /* ../vuu-ui-controls/src/inputs/Checkbox.css */
1082
- .vuuCheckbox {
1083
- display: flex;
1084
- height: 24px;
1085
- align-items: center;
1086
- gap: 6px;
1087
- color: var(--light-text-primary, #15171B);
1088
- font-feature-settings:
1089
- "ss02" on,
1090
- "ss01" on,
1091
- "salt" on,
1092
- "liga" off;
1093
- font-size: 12px;
1094
- font-weight: 400;
1095
- cursor: pointer;
1096
- }
1097
-
1098
- /* ../vuu-ui-controls/src/inputs/RadioButton.css */
1099
- .vuuRadioButton {
1100
- display: flex;
1101
- height: 24px;
1102
- align-items: center;
1103
- gap: 6px;
1104
- color: var(--light-text-primary, #15171B);
1105
- font-feature-settings:
1106
- "ss02" on,
1107
- "ss01" on,
1108
- "salt" on,
1109
- "liga" off;
1110
- font-size: 12px;
1111
- font-weight: 400;
1112
- cursor: pointer;
1113
- }
1114
- .radio {
1115
- position: relative;
1116
- height: 12px;
1117
- }
1118
- input[type=radio] {
1119
- position: absolute;
1120
- appearance: none;
1121
- width: 100%;
1122
- height: 100%;
1123
- border-radius: 50%;
1124
- margin: 0;
1125
- top: 0;
1126
- }
1127
-
1128
- /* ../vuu-table/src/table/ColumnResizer.css */
1129
- .vuuColumnResizer {
1130
- background-color: var(--columnResizer-color);
1131
- cursor: col-resize;
1132
- height: var(--header-height);
1133
- position: relative;
1134
- width: 4px;
1135
- }
1136
- .vuuColumnResizer:hover {
1137
- --columnResizer-color: var(--salt-color-blue-500);
1138
- }
1139
- .vuuColumnResizer:after {
1140
- content: "";
1141
- position: absolute;
1142
- width: var(--columnResizer-width, 1px);
1143
- top: 0;
1144
- bottom: 0;
1145
- right: -1px;
1146
- background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
1147
- height: var(--columnResizer-height, calc(100% + 1px));
1148
- }
1149
-
1150
- /* ../vuu-table/src/table/TableCell.css */
1151
- .vuuTable {
1152
- --cell-outline-width: 2px;
1153
- user-select: none;
1154
- }
1155
- [role=cell] {
1156
- display: inline-block;
1157
- }
1158
- [data-align=end] {
1159
- margin-left: auto;
1160
- }
1161
- [data-align=end] + [data-align=end] {
1162
- margin-left: 0;
1163
- }
1164
- .vuuTable-table [role=cell] {
1165
- --saltEditableLabel-height: 17px;
1166
- --saltInput-height: 17px;
1167
- --saltInput-minHeight: 17px;
1168
- border-right: 1px solid var(--vuuTableCell-border-rightColor);
1169
- border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
1170
- color: var(--salt-text-primary-foreground);
1171
- cursor: default;
1172
- height: var(--vuuTable-rowHeight);
1173
- line-height: calc(var(--vuuTable-rowHeight) - 1px);
1174
- overflow: hidden;
1175
- padding: 0 5px;
1176
- vertical-align: top;
1177
- }
1178
- .vuuTable-headerCell:focus,
1179
- .vuuTable [role=cell]:focus {
1180
- outline: var(--vuuTableCell-outline, dotted var(--salt-color-blue-400) var(--cell-outline-width));
1181
- outline-offset: calc(var(--cell-outline-width) * -1);
1182
- box-shadow: inset 0 0 0 var(--cell-outline-width) white;
1183
- border-bottom: none;
1184
- }
1185
- .vuuTable-headerCell:focus .vuuTable-headerCell-inner {
1186
- padding-bottom: var(--cell-outline-width);
1187
- }
1188
- .vuuTable-headerCell:not(.vuuTable-headerCell-resizing):focus .vuuTable-headerCell-inner {
1189
- --columnResizer-color: transparent;
1190
- }
1191
- .vuuTable [role=cell]:focus {
1192
- border-right: none;
1193
- padding-bottom: 1px;
1194
- }
1195
- [role=cell][data-editable=true] {
1196
- --salt-text-fontSize: 10px;
1197
- --vuu-icon-size: 5px;
1198
- position: relative;
1199
- }
1200
- [role=cell][data-editable=true]:after {
1201
- top: 0;
1202
- content: "";
1203
- background-color: var(--salt-text-secondary-foreground, black);
1204
- left: 0;
1205
- height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
1206
- -webkit-mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
1207
- mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
1208
- mask-repeat: no-repeat;
1209
- -webkit-mask-repeat: no-repeat;
1210
- position: absolute;
1211
- transform: rotate(180deg);
1212
- width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
1213
- }
1214
- [role=cell]:focus[data-editable],
1215
- [role=cell]:focus-within[data-editable],
1216
- [role=cell]:has(.saltEditableLabel-editing) {
1217
- outline: solid var(--salt-color-blue-400) 1px;
1218
- background-color: white;
1219
- outline-offset: -1px;
1220
- }
1221
- [role=cell]:focus[data-editable=true]:after,
1222
- [role=cell]:has(.saltEditableLabel):after {
1223
- background-color: var(--salt-color-blue-400);
1224
- left: 1px;
1225
- top: 1px;
1226
- }
1227
- .vuuAlignRight {
1228
- text-align: right;
1229
- }
1230
-
1231
- /* ../vuu-table/src/table/TableGroupCell.css */
1232
- .vuuTableGroupCell {
1233
- --spacer-width: 20px;
1234
- --toggle-icon-transform: var(--row-toggle-icon-transform, none);
1235
- --vuu-icon-width: 18px;
1236
- align-items: center;
1237
- display: inline-flex;
1238
- }
1239
- .vuuTableGroupCell-spacer {
1240
- height: 100%;
1241
- position: relative;
1242
- width: var(--spacer-width);
1243
- }
1244
- .vuuTableGroupCell-spacer:after {
1245
- background: var(--salt-container-primary-borderColor);
1246
- content: "";
1247
- position: absolute;
1248
- top: 0;
1249
- bottom: -1px;
1250
- left: 9px;
1251
- width: 1px;
1252
- }
1253
- .vuuTableGroupCell-toggle {
1254
- transition: transform 0.25s;
1255
- transform: var(--toggle-icon-transform);
1256
- }
1257
-
1258
- /* ../vuu-table/src/table/TableRow.css */
1259
- .vuuTableRow {
1260
- --row-background: var(--table-background);
1261
- position: absolute;
1262
- top: 0;
1263
- }
1264
- .vuuTableRow-even {
1265
- --row-background: var(--row-background-even);
1266
- }
1267
- .vuuTableRow {
1268
- background-color: var(--row-background);
1269
- }
1270
- .vuuTableRow-expanded {
1271
- --row-toggle-icon-transform: rotate(90deg);
1272
- }
1273
- .vuuTableRow[aria-selected] {
1274
- background-color: var(--vuuTableRow-selected-background, var(--salt-selectable-background-selected));
1275
- --vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
1276
- }
1277
- .vuuTableRow-preSelected {
1278
- --vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
1279
- }
1280
-
1281
- /* ../vuu-table/src/table/TableGroupHeaderCell.css */
1282
- .salt-theme {
1283
- --svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>');
1284
- }
1285
- .vuuTable-groupHeaderCell {
1286
- --cell-align: "flex-start";
1287
- text-align: left;
1288
- background: var(--dataTable-background);
1289
- cursor: default;
1290
- height: var(--vuuTableHeaderHeight);
1291
- }
1292
- .vuuTable-groupHeaderCell-inner {
1293
- align-items: center;
1294
- display: flex;
1295
- height: 100%;
1296
- padding-left: 1px;
1297
- }
1298
- .vuuTable-groupHeaderCell-label {
1299
- align-items: center;
1300
- display: flex;
1301
- flex: 0 0 auto;
1302
- }
1303
- .vuuTable-groupHeaderCell-col {
1304
- align-items: center;
1305
- background-color: inherit;
1306
- display: inline-flex;
1307
- flex: 0 1 auto;
1308
- height: calc(var(--vuuTableHeaderHeight) - 2px);
1309
- justify-content: space-between;
1310
- padding-right: 8px;
1311
- position: relative;
1312
- }
1313
- .vuuTable-groupHeaderCell-close {
1314
- --vuu-icon-height: 18px;
1315
- --vuu-icon-width: 18px;
1316
- cursor: pointer;
1317
- left: 3px;
1318
- }
1319
- .vuuTable-groupHeaderCell-col:nth-child(odd) {
1320
- background-color: var(--salt-color-gray-50);
1321
- }
1322
- .vuuTable-groupHeaderCell-col:nth-child(even) {
1323
- background-color: var(--salt-color-gray-40);
1324
- }
1325
- .vuuTable-groupHeaderCell-col:first-child {
1326
- clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
1327
- padding-left: 3px;
1328
- z-index: 1;
1329
- }
1330
- .vuuTable-groupHeaderCell-col:not(:first-child) {
1331
- margin-left: -6px;
1332
- padding-left: 12px;
1333
- clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%, 8px 50%);
1334
- }
1335
- .vuuTable-groupHeaderCell-resizing {
1336
- --columnResizer-color: var(--salt-color-blue-500);
1337
- --columnResizer-height: var(--table-height);
1338
- --columnResizer-width: 2px;
1339
- }
1340
- .vuuTable-groupHeaderCell-pending {
1341
- --pending-content: "";
1342
- }
1343
- .vuuTable-groupHeaderCell-col:has(+ .vuuColumnResizer):after {
1344
- content: var(--pending-content);
1345
- width: 24px;
1346
- height: 24px;
1347
- background-image: var(--svg-spinner);
1348
- background-repeat: no-repeat;
1349
- background-size: cover;
1350
- }
1351
-
1352
- /* ../vuu-table/src/table/SortIndicator.css */
1353
- .vuuSortIndicator {
1354
- --menu-icon-size: 18px;
1355
- --menu-item-icon-color: black;
1356
- display: flex;
1357
- flex-direction: column;
1358
- position: relative;
1359
- width: 18px;
1360
- }
1361
- .vuuSortPosition {
1362
- font-size: 10px;
1363
- line-height: 10px;
1364
- text-align: center;
1365
- }
1366
-
1367
- /* ../vuu-table/src/table/TableHeaderCell.css */
1368
- .vuuTable-heading:nth-child(2) {
1369
- --heading-top: calc(var(--header-height));
1370
- }
1371
- .vuuTable-heading:nth-child(3) {
1372
- --heading-top: calc(var(--header-height) * 2);
1373
- }
1374
- .vuuTable-heading:nth-child(3) {
1375
- --heading-top: calc(var(--header-height) * 3);
1376
- }
1377
- .vuuTable-headingCell {
1378
- background: var(--dataTable-background);
1379
- border-color: var(--salt-separable-tertiary-borderColor);
1380
- border-style: solid solid solid none;
1381
- border-width: 1px;
1382
- color: var(--salt-text-secondary-foreground);
1383
- display: inline-block;
1384
- height: var(--vuuTableHeaderHeight);
1385
- padding: 0 !important;
1386
- }
1387
- .vuuTable-heading:has(+ .vuuTable-heading) > .vuuTable-headingCell {
1388
- border-bottom-color: transparent;
1389
- }
1390
- [role=columnHeader] {
1391
- --vuuTableCell-border-bottomColor: var(--salt-separable-tertiary-borderColor);
1392
- --cell-align: "flex-start";
1393
- display: inline-block;
1394
- text-align: left;
1395
- background: var(--dataTable-background);
1396
- border-right: 1px solid var(--vuuTableCell-border-rightColor);
1397
- border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
1398
- color: var(--salt-text-secondary-foreground);
1399
- cursor: default;
1400
- height: var(--vuuTableHeaderHeight);
1401
- padding: 0 !important;
1402
- vertical-align: top;
1403
- }
1404
- .vuuTable-headerCell-right {
1405
- --cell-align: flex-end;
1406
- }
1407
- .vuuTable-headerCell-inner {
1408
- align-items: stretch;
1409
- display: flex;
1410
- height: 100%;
1411
- padding: 0 0 0 3px;
1412
- }
1413
- .vuuTable-headerCell-inner:has(.vuuFilterIndicator) {
1414
- padding-left: 0;
1415
- }
1416
- .vuuTable-headerCell-label {
1417
- align-items: center;
1418
- justify-content: var(--cell-align);
1419
- display: flex;
1420
- flex: 1 1 auto;
1421
- }
1422
- .vuuTable-headerCell-resizing {
1423
- --columnResizer-color: var(--salt-color-blue-500);
1424
- --columnResizer-height: var(--table-height);
1425
- --columnResizer-width: 2px;
1426
- }
1427
- [role=headerCell].vuuPinLeft.vuuEndPin:after {
1428
- box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.4);
1429
- content: "";
1430
- position: absolute;
1431
- width: 1px;
1432
- background-color: transparent;
1433
- height: var(--table-height);
1434
- top: 0;
1435
- right: 0px;
1436
- }
1437
- [role=headerCell].vuuPinRight.vuuEndPin:after {
1438
- box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
1439
- content: "";
1440
- position: absolute;
1441
- width: 1px;
1442
- background-color: transparent;
1443
- height: var(--table-height);
1444
- top: 0;
1445
- left: 0px;
1446
- }
1447
- [role=headerCell]:is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
1448
- top: 0;
1449
- z-index: 20;
1450
- }
1451
- .saltDraggable-vuuTable-headerCell {
1452
- --dataTable-background: ivory;
1453
- --vuuTableHeaderHeight: 25px;
1454
- }
1455
-
1456
- /* ../vuu-table/src/table/filter-indicator.css */
1457
- .vuuFilterIndicator {
1458
- --menu-icon-size: 12px;
1459
- --menu-item-icon-color: black;
1460
- align-items: center;
1461
- cursor: pointer;
1462
- display: flex;
1463
- flex: 0 0 18px;
1464
- flex-direction: column;
1465
- justify-content: center;
1466
- position: relative;
1467
- }
1468
- .vuuFilterIndicator + .vuuTable-headerCell-inner {
1469
- padding-left: 0;
1470
- }
1471
-
1472
- /* ../vuu-table/src/table/RowBasedTable.css */
1473
- .vuuTable-table {
1474
- --vuuTable-rowHeight: var(--row-height);
1475
- --vuuTableCell-border-bottomColor: transparent;
1476
- --vuuTableCell-border-rightColor: var(--salt-separable-tertiary-borderColor);
1477
- border-collapse: separate;
1478
- border-spacing: 0;
1479
- border-left: 1px solid #ccc;
1480
- border: none;
1481
- font-size: var(--vuuTable-font-size, 10px);
1482
- margin: 0;
1483
- min-height: 100%;
1484
- width: var(--content-width);
1485
- }
1486
- .vuuTable-headers {
1487
- position: sticky;
1488
- top: 0;
1489
- z-index: 1;
1490
- }
1491
- .vuuTable-body {
1492
- height: var(--content-height);
1493
- position: relative;
1494
- }
1495
-
1496
- /* ../vuu-table/src/table/Table.css */
1497
- .vuuTable {
1498
- --dataTable-background: var(--salt-container-primary-background, inherit);
1499
- --row-background-even: var(--dataTable-background);
1500
- --row-background-odd: var(--dataTable-background);
1501
- --table-background: var(--dataTable-background, none);
1502
- background-color: var(--dataTable-background);
1503
- position: relative;
1504
- }
1505
- .vuuTable-zebra {
1506
- --row-background-even: var(--salt-container-secondary-background);
1507
- }
1508
- .vuuTable-scrollbarContainer {
1509
- --scroll-content-width: calc(var(--content-width) - var(--pinned-width-left));
1510
- border-bottom: none !important;
1511
- border-top: none !important;
1512
- border-left: solid 1px var(--salt-container-primary-borderColor);
1513
- box-shadow: 0px -1px 0px 0px var(--salt-container-primary-borderColor);
1514
- height: var(--viewport-body-height);
1515
- left: var(--pinned-width-left);
1516
- overflow: auto;
1517
- position: absolute;
1518
- top: var(--total-header-height);
1519
- width: calc(var(--table-width) - var(--pinned-width-left) + 1px);
1520
- }
1521
- .vuuTable-scrollbarContent {
1522
- height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
1523
- position: absolute;
1524
- width: var(--scroll-content-width, var(--content-width));
1525
- }
1526
- .vuuTable-contentContainer {
1527
- --vuuTableHeaderHeight: var(--header-height, 30px);
1528
- background-color: var(--salt-container-primary-background);
1529
- height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
1530
- position: relative;
1531
- overflow: auto;
1532
- overscroll-behavior: none;
1533
- width: calc(var(--table-width) - var(--vertical-scrollbar-width));
1534
- }
1535
- .vuuTable-contentContainer::-webkit-scrollbar {
1536
- display: none;
1537
- }
1538
- :is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
1539
- background-color: inherit;
1540
- position: sticky;
1541
- z-index: 1;
1542
- }
1543
- .vuuTable-settings {
1544
- --saltButton-height: var(--header-height);
1545
- --saltButton-width: 15px;
1546
- position: absolute !important;
1547
- right: 0;
1548
- top: 0;
1549
- }
1550
- .vuuTable:has(.vuuTable-headerCell-resizing) * {
1551
- cursor: col-resize;
1552
- }
1553
-
1554
- /* ../vuu-table/src/table/Table-loading.css */
1555
- .vuuTable-loading .vuuTable-table {
1556
- --skeleton-height: 20px;
1557
- --skeleton-width: calc(var(--content-width) - 8px);
1558
- --skeleton-left: 4px;
1559
- --skeleton-row-height: 16px;
1560
- --skeleton-size: var(--skeleton-width) var(--skeleton-height);
1561
- --skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
1562
- --skeleton-background-image: var(--skeleton-row);
1563
- background-image: var(--skeleton-background-image);
1564
- background-repeat: repeat-y;
1565
- background-size: var(--skeleton-size);
1566
- background-position-x: var(--skeleton-left);
1567
- background-position-y: 27px;
1568
- }
1569
- .vuuTable-loading .vuuTable-table {
1570
- --skeleton-height: 20px;
1571
- --skeleton-width: calc(var(--content-width) - 8px);
1572
- --skeleton-left: 4px;
1573
- --skeleton-row-height: 16px;
1574
- --skeleton-size: var(--skeleton-width) var(--skeleton-height);
1575
- --skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
1576
- --skeleton-background-image: var(--skeleton-row);
1577
- background-image: var(--skeleton-background-image);
1578
- background-repeat: repeat-y;
1579
- background-size: var(--skeleton-size);
1580
- background-position-x: var(--skeleton-left);
1581
- background-position-y: 27px;
1582
- }
1583
- .vuuTable-loading .vuuTable-table:after {
1584
- animation: shimmer 2s infinite;
1585
- background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, .6) 60%, rgba(255, 255, 255, 0));
1586
- content: "";
1587
- height: var(--table-height);
1588
- left: 0px;
1589
- position: absolute;
1590
- transform: translateX(-100%);
1591
- top: var(--header-height);
1592
- width: var(--content-width);
1593
- }
1594
- @keyframes shimmer {
1595
- 100% {
1596
- transform: translateX(100%);
1597
- }
1598
- }
1599
-
1600
- /* ../vuu-table/src/table/cell-renderers/json-cell/JsonCell.css */
1601
- .vuuJsonCell-group {
1602
- align-items: center;
1603
- display: inline-flex;
1604
- height: calc(var(--vuuTable-rowHeight) - 1px);
1605
- width: 100%;
1606
- }
1607
- .vuuJsonCell-toggle {
1608
- --vuu-icon-color: var(--salt-text-primary-foreground);
1609
- --vuu-icon-height: calc(var(--vuuTable-rowHeight) - 1px);
1610
- --vuu-icon-width: 18px;
1611
- flex-shrink: 0;
1612
- margin-left: auto;
1613
- }
1614
- .vuuJsonCell-name {
1615
- font-weight: var(--salt-typography-fontWeight-semiBold);
1616
- }
1617
- .vuuJsonCell-value {
1618
- overflow: hidden;
1619
- text-overflow: ellipsis;
1620
- }
1621
-
1622
- /* ../vuu-table/src/table-next/column-resizing/ColumnResizer.css */
1623
- .vuuColumnResizerNext {
1624
- background-color: var(--columnResizer-color);
1625
- cursor: col-resize;
1626
- height: var(--header-height);
1627
- margin-left: var(--columnResizer-left, auto);
1628
- position: relative;
1629
- width: 2px;
1630
- }
1631
- .vuuColumnResizerNext:hover {
1632
- --columnResizer-color: var(--salt-color-blue-500);
1633
- }
1634
- .vuuColumnResizerNext:after {
1635
- background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
1636
- bottom: 0;
1637
- content: "";
1638
- position: absolute;
1639
- top: 0;
1640
- right: 0px;
1641
- height: var(--columnResizer-height, 0);
1642
- width: 2px;
1643
- }
1644
-
1645
- /* ../vuu-table/src/table-next/column-header-pill/ColumnHeaderPill.css */
1646
- .vuuColumnHeaderPill {
1647
- --vuu-icon-size: 14px;
1648
- --menu-item-icon-color: black;
1649
- --vuu-icon-color: white;
1650
- --vuu-icon-height: 12px;
1651
- --vuu-icon-width: 13px;
1652
- align-items: center;
1653
- background: var(--salt-taggable-background-active);
1654
- color: white;
1655
- border-radius: 4px;
1656
- font-size: 11px;
1657
- gap: 4px;
1658
- height: 16px;
1659
- display: flex;
1660
- margin: var(--vuuColumnHeaderPill-margin, 0);
1661
- padding: 0 6px;
1662
- position: relative;
1663
- }
1664
- .vuuColumnHeaderPill:hover {
1665
- --vuu-icon-color: var(--vuu-color-gray-80);
1666
- background-color: var(--salt-taggable-background-hover);
1667
- color: var(--vuu-color-gray-80);
1668
- }
1669
- .vuuColumnHeaderPill-removeButton {
1670
- cursor: pointer;
1671
- }
1672
-
1673
- /* ../vuu-table/src/table-next/column-header-pill/GroupColumnPill.css */
1674
- .vuuSortPosition {
1675
- font-size: 11px;
1676
- font-weight: 700;
1677
- padding-top: 1px;
1678
- }
1679
-
1680
- /* ../vuu-table/src/table-next/column-header-pill/SortIndicator.css */
1681
- .vuuSortPosition {
1682
- font-size: 11px;
1683
- font-weight: 700;
1684
- padding-top: 1px;
1685
- }
1686
-
1687
- /* ../vuu-table/src/table-next/header-cell/GroupHeaderCell.css */
1688
- .vuu-theme {
1689
- --svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>');
1690
- }
1691
- .vuuTableNextGroupHeaderCell.vuuTableNextHeaderCell {
1692
- --vuuColumnHeaderPill-margin: 0;
1693
- --cell-align: "flex-start";
1694
- text-align: left;
1695
- background: var(--dataTable-background);
1696
- cursor: default;
1697
- height: var(--vuuTableHeaderHeight);
1698
- }
1699
- .vuuTableNextGroupHeaderCell-inner {
1700
- align-items: center;
1701
- display: flex;
1702
- gap: 4px;
1703
- height: 100%;
1704
- padding-left: 1px;
1705
- }
1706
- .vuuTableNextGroupHeaderCell-col {
1707
- align-items: center;
1708
- background-color: inherit;
1709
- display: inline-flex;
1710
- flex: 0 1 auto;
1711
- height: calc(var(--vuuTableHeaderHeight) - 2px);
1712
- justify-content: space-between;
1713
- padding-right: 8px;
1714
- position: relative;
1715
- }
1716
- .vuuTableNextGroupHeaderCell-label {
1717
- align-items: center;
1718
- display: flex;
1719
- flex: 0 0 auto;
1720
- }
1721
- .vuuTableNextGroupHeaderCell-close {
1722
- --vuu-icon-height: 18px;
1723
- --vuu-icon-width: 18px;
1724
- cursor: pointer;
1725
- left: 3px;
1726
- }
1727
- .vuuTableNextGroupHeaderCell-resizing {
1728
- --columnResizer-color: var(--salt-color-blue-500);
1729
- --columnResizer-height: var(--table-height);
1730
- --columnResizer-width: 2px;
1731
- }
1732
- .vuuTableNextGroupHeaderCell-pending {
1733
- --pending-content: "";
1734
- }
1735
- .vuuTableNextGroupHeaderCell-col:has(+ .vuuColumnResizer):after {
1736
- content: var(--pending-content);
1737
- width: 24px;
1738
- height: 24px;
1739
- background-image: var(--svg-spinner);
1740
- background-repeat: no-repeat;
1741
- background-size: cover;
1742
- }
1743
-
1744
- /* ../vuu-table/src/table-next/column-menu/ColumnMenu.css */
1745
- .vuuMenuItem {
1746
- --vuu-svg-cog: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.9533 8.65331C12.98 8.43998 13 8.22665 13 7.99998C13 7.77331 12.98 7.55998 12.9533 7.34665L14.36 6.24665C14.4867 6.14665 14.52 5.96665 14.44 5.81998L13.1067 3.51331C13.0267 3.36665 12.8467 3.31331 12.7 3.36665L11.04 4.03331C10.6933 3.76665 10.32 3.54665 9.91333 3.37998L9.66 1.61331C9.64 1.45331 9.5 1.33331 9.33333 1.33331H6.66667C6.5 1.33331 6.36 1.45331 6.34 1.61331L6.08667 3.37998C5.68 3.54665 5.30667 3.77331 4.96 4.03331L3.3 3.36665C3.14667 3.30665 2.97333 3.36665 2.89333 3.51331L1.56 5.81998C1.47333 5.96665 1.51333 6.14665 1.64 6.24665L3.04667 7.34665C3.02 7.55998 3 7.77998 3 7.99998C3 8.21998 3.02 8.43998 3.04667 8.65331L1.64 9.75331C1.51333 9.85331 1.48 10.0333 1.56 10.18L2.89333 12.4866C2.97333 12.6333 3.15333 12.6866 3.3 12.6333L4.96 11.9666C5.30667 12.2333 5.68 12.4533 6.08667 12.62L6.34 14.3866C6.36 14.5466 6.5 14.6666 6.66667 14.6666H9.33333C9.5 14.6666 9.64 14.5466 9.66 14.3866L9.91333 12.62C10.32 12.4533 10.6933 12.2266 11.04 11.9666L12.7 12.6333C12.8533 12.6933 13.0267 12.6333 13.1067 12.4866L14.44 10.18C14.52 10.0333 14.4867 9.85331 14.36 9.75331L12.9533 8.65331V8.65331ZM8 10.3333C6.71333 10.3333 5.66667 9.28665 5.66667 7.99998C5.66667 6.71331 6.71333 5.66665 8 5.66665C9.28667 5.66665 10.3333 6.71331 10.3333 7.99998C10.3333 9.28665 9.28667 10.3333 8 10.3333Z"/></svg>');
1747
- }
1748
- .vuuTable-columnMenu {
1749
- --vuu-icon-color: #606477;
1750
- --vuu-icon-height: 20px;
1751
- --vuu-icon-left: 0px;
1752
- --vuu-icon-size: 16px;
1753
- --vuu-icon-top: 0px;
1754
- --vuu-icon-width: 20px;
1755
- border-radius: 4px;
1756
- cursor: pointer;
1757
- display: inline-block;
1758
- padding: 2px;
1759
- left: var(--column-menu-left, 0);
1760
- margin: var(--vuuTable-columnMenu-margin, 0);
1761
- }
1762
- .vuuTable-columnMenu:hover {
1763
- --vuu-icon-color: #15171B;
1764
- background-color: #F37880;
1765
- }
1766
- .vuuTable-columnMenu-open:hover,
1767
- .vuuTable-columnMenu-open {
1768
- background-color: #6D18BD;
1769
- --vuu-icon-color: white;
1770
- }
1771
- [data-icon=cog] {
1772
- --vuu-icon-svg: var(--vuu-svg-cog);
1773
- --vuu-icon-size: 14px;
1774
- }
1775
- .vuuColumnMenuList {
1776
- --vuuMenuList-borderStyle: solid;
1777
- border-radius: 4px;
1778
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1779
- border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
1780
- border-style: solid;
1781
- border-width: 1px;
1782
- }
1783
-
1784
- /* ../vuu-table/src/table-next/header-cell/HeaderCell.css */
1785
- .vuuTableNextHeaderCell {
1786
- --cell-align: "flex-start";
1787
- --vuuColumnHeaderPill-margin: 0 0 0 3px;
1788
- align-items: center;
1789
- background-color: var(--vuuTableNextHeaderCell-background, inherit);
1790
- border-bottom: 1px solid #ccc;
1791
- border-right-color: var(--cell-borderColor);
1792
- border-right-style: solid;
1793
- border-right-width: 1px;
1794
- box-sizing: border-box;
1795
- cursor: default;
1796
- display: inline-flex;
1797
- height: var(--header-height);
1798
- vertical-align: top;
1799
- }
1800
- .vuuTableNextHeaderCell-right {
1801
- --columnResizer-left: 0;
1802
- --vuuTable-columnMenu-margin: 0;
1803
- --vuuColumnHeaderPill-margin: 0 3px 0 0;
1804
- --column-menu-left: 2px;
1805
- justify-content: flex-end;
1806
- }
1807
- .vuuTableNextHeaderCell .vuuColumnResizerNext:hover {
1808
- --columnResizer-color: var(--vuu-color-purple-10);
1809
- }
1810
- .vuuTableNextHeaderCell-label {
1811
- line-height: calc(var(--header-height) - 1px);
1812
- }
1813
- .vuuTableNextHeaderCell-resizing {
1814
- --columnResizer-height: var(--table-height);
1815
- }
1816
- .vuuTableNextHeaderCell.vuuPinLeft {
1817
- padding-left: 2px;
1818
- }
1819
- .vuuTableNextHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before {
1820
- --height: calc(var(--table-height) - 15px);
1821
- --inset-r: calc(var(--pin-width) - 2px);
1822
- --inset-b: calc(var(--height) - 2px);
1823
- --clip-path: polygon( 0% 0%, 0% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );
1824
- background-color: transparent;
1825
- border-color: var(--vuu-color-gray-40);
1826
- border-width: 1px;
1827
- border-style: solid solid solid solid;
1828
- border-radius: 4px;
1829
- box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.10);
1830
- clip-path: var(--clip-path);
1831
- content: "";
1832
- position: absolute;
1833
- width: var(--pin-width);
1834
- top: 0;
1835
- bottom: 0;
1836
- right: -1px;
1837
- height: var(--height);
1838
- z-index: -5;
1839
- }
1840
- .vuuTableNextHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before {
1841
- --height: calc(var(--table-height) - 15px);
1842
- --inset-r: calc(var(--pin-width) - 2px);
1843
- --inset-b: calc(var(--height) - 2px);
1844
- --clip-path: polygon( -20% 0%, -20% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );
1845
- background-color: transparent;
1846
- border-color: #A9AAAD;
1847
- border-width: 1px;
1848
- border-style: solid solid solid solid;
1849
- border-radius: 4px;
1850
- box-shadow: -2px 1px 4px 0px rgba(0, 0, 0, 0.10);
1851
- clip-path: var(--clip-path);
1852
- content: "";
1853
- position: absolute;
1854
- width: var(--pin-width);
1855
- top: 0;
1856
- bottom: 0;
1857
- right: 0px;
1858
- height: var(--height);
1859
- z-index: -5;
1860
- }
1861
- .vuuTableNextHeaderCell.vuuDraggable-dragAway {
1862
- display: none;
1863
- }
1864
-
1865
- /* ../vuu-table/src/table-next/table-cell/TableCell.css */
1866
- .vuuTableNextCell {
1867
- border-right-color: var(--cell-borderColor);
1868
- border-right-style: solid;
1869
- border-right-width: 1px;
1870
- display: inline-block;
1871
- height: 100%;
1872
- overflow: hidden;
1873
- padding: 0 8px;
1874
- text-overflow: ellipsis;
1875
- vertical-align: top;
1876
- }
1877
- .vuuTableNextCell-right {
1878
- text-align: right;
1879
- }
1880
- .vuuTableNextCell-editable {
1881
- display: inline-flex;
1882
- line-height: 18px;
1883
- padding-bottom: 1px;
1884
- padding-top: 1px;
1885
- text-overflow: unset;
1886
- }
1887
- .vuuTableNextCell:focus {
1888
- outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
1889
- outline-offset: -2px;
1890
- box-shadow: inset 0 0 0 var(--cell-outline-width) white;
1891
- border-bottom: none;
1892
- }
1893
- .vuuTableNextRow-selected .vuuTableNextCell:not(.vuuTableNextCell-editable):focus {
1894
- outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
1895
- outline-offset: -1px;
1896
- }
1897
- .vuuTableNextCell-editable:focus {
1898
- outline: none;
1899
- }
1900
-
1901
- /* ../vuu-table/src/table-next/table-cell/TableGroupCell.css */
1902
- .vuuTableNextGroupCell {
1903
- --group-cell-spacer-width: 20px;
1904
- align-items: center;
1905
- border-right-color: var(--vuuTableNextGroupCell-borderColor, var(--salt-separable-tertiary-borderColor));
1906
- border-right-style: solid;
1907
- border-right-width: 1px;
1908
- cursor: pointer;
1909
- display: inline-flex;
1910
- height: var(--row-height);
1911
- line-height: 16px;
1912
- }
1913
- .vuuTableNextGroupCell-toggle {
1914
- --vuu-icon-height: 16px;
1915
- --vuu-icon-size: 16px;
1916
- --vuu-icon-width: 8px;
1917
- margin-right: 4px;
1918
- transition: transform 0.25s;
1919
- transform: var(--toggle-icon-transform);
1920
- }
1921
- .vuuTableNextGroupCell-spacer {
1922
- width: var(--group-cell-spacer-width);
1923
- }
1924
-
1925
- /* ../vuu-table/src/table-next/Row.css */
1926
- .vuuTableNextRow {
1927
- background: var(--row-background,#fff);
1928
- border-bottom: 1px solid var(--row-borderColor);
1929
- box-sizing: border-box;
1930
- height: var(--row-height);
1931
- line-height: calc(var(--row-height) - 1px);
1932
- position: absolute;
1933
- top: 0;
1934
- white-space: nowrap;
1935
- }
1936
- .vuuTableNextRow-even {
1937
- --row-background: var(--row-background-even);
1938
- }
1939
- .vuuTableNextRow-selected,
1940
- .vuuTableNextRow-selectedEnd {
1941
- background-color: rgb(235, 235, 236);
1942
- }
1943
- .vuuTableNextRow-selectedStart {
1944
- --vuu-selection-decorator-left-radius: 5px 0 0 0;
1945
- --vuu-selection-decorator-right-radius: 0 5px 0 0;
1946
- border-radius: 5px 5px 0 0;
1947
- }
1948
- .vuuTableNextRow-selectedEnd {
1949
- --vuu-selection-decorator-left-radius: 0 0 0 5px;
1950
- --vuu-selection-decorator-right-radius: 0 0 5px 0;
1951
- border-radius: 0 0 5px 5px;
1952
- }
1953
- .vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
1954
- --vuu-selection-decorator-left-radius: 5px 0 0 5px;
1955
- --vuu-selection-decorator-right-radius: 0 5px 5px 0;
1956
- border-radius: 5px 5px 5px 5px;
1957
- }
1958
- .vuuTableNextRow-selectedStart:after {
1959
- content: "";
1960
- position: absolute;
1961
- top: 0;
1962
- left: 4px;
1963
- height: 1px;
1964
- background-color: var(--vuu-color-purple-10);
1965
- width: calc(var(--content-width) - 8px);
1966
- z-index: 1;
1967
- }
1968
- .vuuTableNextRow-selectedEnd {
1969
- border-bottom-color: var(--vuu-color-purple-10);
1970
- }
1971
- .vuuTableNextRow-selectionDecorator {
1972
- background-color: var(--vuu-selection-decorator-bg, inherit);
1973
- display: inline-block;
1974
- position: relative;
1975
- height: var(--row-height);
1976
- width: 4px;
1977
- z-index: 2;
1978
- }
1979
- .vuuTableNextRow-selectionDecorator.vuuStickyLeft {
1980
- left: 0;
1981
- position: sticky;
1982
- }
1983
- .vuuTableNextRow-selectionDecorator.vuuStickyRight {
1984
- right: 0;
1985
- position: sticky;
1986
- }
1987
- .vuuTableNextRow-selected {
1988
- --vuu-selection-decorator-bg: var(--vuu-color-purple-10);
1989
- }
1990
- .vuuTableNextRow-selectedStart {
1991
- --vuu-selection-decorator-bg: white;
1992
- }
1993
- .vuuTableNextRow-selectedEnd {
1994
- --vuu-selection-decorator-bg: white;
1995
- }
1996
- .vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
1997
- }
1998
- .vuuTableNextRow-selectedStart .vuuTableNextRow-selectionDecorator:before,
1999
- .vuuTableNextRow-selectedEnd .vuuTableNextRow-selectionDecorator:before {
2000
- content: "";
2001
- inset: 0;
2002
- position: absolute;
2003
- background-color: var(--vuu-color-purple-10);
2004
- }
2005
- .vuuTableNextRow-selectionDecorator.vuuStickyLeft:before {
2006
- border-radius: var(--vuu-selection-decorator-left-radius, 0);
2007
- }
2008
- .vuuTableNextRow-selectionDecorator.vuuStickyRight:before {
2009
- border-radius: var(--vuu-selection-decorator-right-radius, 0);
2010
- }
2011
- .vuuTableNextRow-expanded {
2012
- --toggle-icon-transform: rotate(90deg);
2013
- }
2014
-
2015
- /* ../vuu-table-extras/src/cell-renderers/background-cell/BackgroundCell.css */
2016
- .vuuTable td:has(> .vuuBackgroundCellDeprecated) {
2017
- padding: 0;
2018
- text-align: right;
2019
- }
2020
- .vuuBackgroundCellDeprecated {
2021
- padding-right: var(--salt-size-unit);
2022
- position: relative;
2023
- z-index: -1;
2024
- }
2025
- .vuuBackgroundCellDeprecated-flasher {
2026
- color: transparent;
2027
- position: absolute;
2028
- left: 0;
2029
- right: 0;
2030
- top: 0;
2031
- bottom: 0;
2032
- z-index: -1;
2033
- }
2034
- .vuuBackgroundCellDeprecated-flasher {
2035
- text-align: left;
2036
- }
2037
- .vuuBackgroundCellDeprecated-flasher + .num {
2038
- padding-left: 8px;
2039
- }
2040
- .right .vuuBackgroundCellDeprecated-flasher {
2041
- text-align: right;
2042
- }
2043
- .right .vuuBackgroundCellDeprecated-flasher + .num {
2044
- padding-right: 8px;
2045
- }
2046
- .up1 > .vuuBackgroundCellDeprecated-flasher {
2047
- animation-duration: 30s;
2048
- animation-name: reactbgup1;
2049
- }
2050
- .up2 > .vuuBackgroundCellDeprecated-flasher {
2051
- animation-duration: 30s;
2052
- animation-name: reactbgup2;
2053
- }
2054
- .down1 > .vuuBackgroundCellDeprecated-flasher {
2055
- animation-duration: 30s;
2056
- animation-name: reactbgdown1;
2057
- }
2058
- .down2 > .vuuBackgroundCellDeprecated-flasher {
2059
- animation-duration: 30s;
2060
- animation-name: reactbgdown2;
2061
- }
2062
- .up1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2063
- animation-duration: 30s;
2064
- animation-name: reactarrowup1;
2065
- }
2066
- .up2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2067
- animation-duration: 30s;
2068
- animation-name: reactarrowup2;
2069
- }
2070
- .down1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2071
- animation-duration: 30s;
2072
- animation-name: reactarrowdown1;
2073
- }
2074
- .down2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2075
- animation-duration: 30s;
2076
- animation-name: reactarrowdown2;
2077
- }
2078
- .up1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2079
- animation-duration: 30s;
2080
- animation-name: reactbgarrowup1;
2081
- }
2082
- .up2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2083
- animation-duration: 30s;
2084
- animation-name: reactbgarrowup2;
2085
- }
2086
- .down1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2087
- animation-duration: 30s;
2088
- animation-name: reactbgarrowdown1;
2089
- }
2090
- .down2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2091
- animation-duration: 30s;
2092
- animation-name: reactbgarrowdown2;
2093
- }
2094
-
2095
- /* ../vuu-table-extras/src/cell-renderers/background-cell/FlashingBackground.css */
2096
- @keyframes reactbgup1 {
2097
- from {
2098
- background-color: green;
2099
- }
2100
- to {
2101
- background-color: transparent;
2102
- }
2103
- }
2104
- @keyframes reactbgup2 {
2105
- from {
2106
- background-color: green;
2107
- }
2108
- to {
2109
- background-color: transparent;
2110
- }
2111
- }
2112
- @keyframes reactbgdown1 {
2113
- from {
2114
- background-color: red;
2115
- }
2116
- to {
2117
- background-color: transparent;
2118
- }
2119
- }
2120
- @keyframes reactbgdown2 {
2121
- from {
2122
- background-color: red;
2123
- }
2124
- to {
2125
- background-color: transparent;
2126
- }
2127
- }
2128
- @keyframes reactarrowup1 {
2129
- from {
2130
- color: white;
2131
- }
2132
- to {
2133
- color: transparent;
2134
- }
2135
- }
2136
- @keyframes reactarrowup2 {
2137
- from {
2138
- color: white;
2139
- }
2140
- to {
2141
- color: transparent;
2142
- }
2143
- }
2144
- @keyframes reactarrowdown1 {
2145
- from {
2146
- color: white;
2147
- }
2148
- to {
2149
- color: transparent;
2150
- }
2151
- }
2152
- @keyframes reactarrowdown2 {
2153
- from {
2154
- color: white;
2155
- }
2156
- to {
2157
- color: transparent;
2158
- }
2159
- }
2160
- @keyframes reactbgarrowup1 {
2161
- 0% {
2162
- color: green;
2163
- background-color: green;
2164
- }
2165
- 20% {
2166
- color: green;
2167
- background-color: transparent;
2168
- }
2169
- 100% {
2170
- color: transparent;
2171
- background-color: transparent;
2172
- }
2173
- }
2174
- @keyframes reactbgarrowup2 {
2175
- 0% {
2176
- color: green;
2177
- background-color: green;
2178
- }
2179
- 20% {
2180
- color: green;
2181
- background-color: transparent;
2182
- }
2183
- 100% {
2184
- color: transparent;
2185
- background-color: transparent;
2186
- }
2187
- }
2188
- @keyframes reactbgarrowdown1 {
2189
- 0% {
2190
- color: red;
2191
- background-color: red;
2192
- }
2193
- 20% {
2194
- color: red;
2195
- background-color: transparent;
2196
- }
2197
- 100% {
2198
- color: transparent;
2199
- background-color: transparent;
2200
- }
2201
- }
2202
- @keyframes reactbgarrowdown2 {
2203
- 0% {
2204
- color: red;
2205
- background-color: red;
2206
- }
2207
- 20% {
2208
- color: red;
2209
- background-color: transparent;
2210
- }
2211
- 100% {
2212
- color: transparent;
2213
- background-color: transparent;
2214
- }
2215
- }
2216
-
2217
- /* ../vuu-table-extras/src/cell-renderers/progress-cell/ProgressCell.css */
2218
- .vuuProgressCell {
2219
- align-items: center;
2220
- display: flex;
2221
- }
2222
- .vuuProgressCell-track {
2223
- display: inline-block;
2224
- flex: auto 1 1;
2225
- height: 4px;
2226
- overflow: hidden;
2227
- position: relative;
2228
- }
2229
- .vuuProgressCell-bg {
2230
- background-color: var(--salt-measured-background);
2231
- display: inline-block;
2232
- height: 2px;
2233
- left: 0;
2234
- position: absolute;
2235
- top: 1px;
2236
- width: 100%;
2237
- }
2238
- .vuuProgressCell-bar {
2239
- background-color: var(--salt-measured-fill);
2240
- display: inline-block;
2241
- height: 100%;
2242
- left: 0;
2243
- position: absolute;
2244
- top: 0;
2245
- transform: translateX(var(--progress-bar-pct, -100%));
2246
- width: 100%;
2247
- }
2248
- .vuuProgressCell-text {
2249
- flex: 35px 0 0;
2250
- text-align: right;
2251
- }
2252
-
2253
- /* ../vuu-table-extras/src/cell-renderers-next/background-cell/BackgroundCell.css */
2254
- .vuuTableNext td:has(> .vuuBackgroundCell) {
2255
- padding: 0;
2256
- text-align: right;
2257
- }
2258
- .vuuBackgroundCell {
2259
- color: var(--background-cell-color);
2260
- padding-right: var(--salt-size-unit);
2261
- position: relative;
2262
- z-index: -1;
2263
- }
2264
- .vuuBackgroundCell-flasher {
2265
- background-color: var(--background-cell-background);
2266
- position: absolute;
2267
- left: 0;
2268
- right: 0;
2269
- top: 0;
2270
- bottom: 0;
2271
- z-index: -1;
2272
- }
2273
- .vuuBackgroundCell-flasher {
2274
- text-align: left;
2275
- }
2276
- .vuuBackgroundCell-flasher + .num {
2277
- padding-left: 8px;
2278
- }
2279
- .right .vuuBackgroundCell-flasher {
2280
- text-align: right;
2281
- }
2282
- .right .vuuBackgroundCell-flasher + .num {
2283
- padding-right: 8px;
2284
- }
2285
- .vuuBackgroundCell.up1 {
2286
- animation-duration: 30s;
2287
- animation-name: reactbgup1;
2288
- }
2289
- .vuuBackgroundCell.up2 {
2290
- animation-duration: 30s;
2291
- animation-name: reactbgup2;
2292
- }
2293
- .vuuBackgroundCell.down1 {
2294
- animation-duration: 30s;
2295
- animation-name: reactbgdown1;
2296
- }
2297
- .vuuBackgroundCell.down2 {
2298
- animation-duration: 30s;
2299
- animation-name: reactbgdown2;
2300
- }
2301
- .up1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
2302
- animation-duration: 30s;
2303
- animation-name: reactarrowup1;
2304
- }
2305
- .up2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
2306
- animation-duration: 30s;
2307
- animation-name: reactarrowup2;
2308
- }
2309
- .down1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
2310
- animation-duration: 30s;
2311
- animation-name: reactarrowdown1;
2312
- }
2313
- .down2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
2314
- animation-duration: 30s;
2315
- animation-name: reactarrowdown2;
2316
- }
2317
- .up1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
2318
- animation-duration: 30s;
2319
- animation-name: reactbgarrowup1;
2320
- }
2321
- .up2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
2322
- animation-duration: 30s;
2323
- animation-name: reactbgarrowup2;
2324
- }
2325
- .down1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
2326
- animation-duration: 30s;
2327
- animation-name: reactbgarrowdown1;
2328
- }
2329
- .down2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
2330
- animation-duration: 30s;
2331
- animation-name: reactbgarrowdown2;
2332
- }
2333
-
2334
- /* ../vuu-table-extras/src/cell-renderers-next/background-cell/FlashingBackground.css */
2335
- @property --background-cell-background { syntax: "<color>"; initial-value: transparent; inherits: false; }
2336
- @property --background-cell-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
2337
- @keyframes reactbgup1 {
2338
- from {
2339
- --background-cell-background: var(--vuu-color-green-50);
2340
- --background-cell-color: white;
2341
- }
2342
- to {
2343
- --background-cell-background: transparent;
2344
- --background-cell-color: var(--vuu-color-gray-80);
2345
- }
2346
- }
2347
- @keyframes reactbgup2 {
2348
- from {
2349
- --background-cell-background: var(--vuu-color-green-50);
2350
- --background-cell-color: #ffffff;
2351
- }
2352
- to {
2353
- --background-cell-background: transparent;
2354
- --background-cell-color: var(--vuu-color-gray-80);
2355
- }
2356
- }
2357
- @keyframes reactbgdown1 {
2358
- from {
2359
- --background-cell-background: var(--vuu-color-red-50);
2360
- --background-cell-color: white;
2361
- }
2362
- to {
2363
- --background-cell-background: transparent;
2364
- --background-cell-color: var(--vuu-color-gray-80);
2365
- }
2366
- }
2367
- @keyframes reactbgdown2 {
2368
- from {
2369
- --background-cell-background: var(--vuu-color-red-50);
2370
- --background-cell-color: white;
2371
- }
2372
- to {
2373
- --background-cell-background: transparent;
2374
- --background-cell-color: var(--vuu-color-gray-80);
2375
- }
2376
- }
2377
- @keyframes reactarrowup1 {
2378
- from {
2379
- color: var(--salt-differential-positive-foreground);
2380
- }
2381
- to {
2382
- color: transparent;
2383
- }
2384
- }
2385
- @keyframes reactarrowup2 {
2386
- from {
2387
- color: var(--salt-differential-positive-foreground);
2388
- }
2389
- to {
2390
- color: transparent;
2391
- }
2392
- }
2393
- @keyframes reactarrowdown1 {
2394
- from {
2395
- color: var(--salt-differential-negative-foreground);
2396
- }
2397
- to {
2398
- color: transparent;
2399
- }
2400
- }
2401
- @keyframes reactarrowdown2 {
2402
- from {
2403
- color: var(--salt-differential-negative-foreground);
2404
- }
2405
- to {
2406
- color: transparent;
2407
- }
2408
- }
2409
- @keyframes reactbgarrowup1 {
2410
- 0% {
2411
- color: var(--salt-differential-positive-foreground);
2412
- background-color: var(--vuu-color-green-50);
2413
- }
2414
- 20% {
2415
- color: var(--salt-differential-positive-foreground);
2416
- background-color: transparent;
2417
- }
2418
- 100% {
2419
- color: transparent;
2420
- background-color: transparent;
2421
- }
2422
- }
2423
- @keyframes reactbgarrowup2 {
2424
- 0% {
2425
- color: var(--salt-differential-positive-foreground);
2426
- background-color: var(--vuu-color-green-50);
2427
- }
2428
- 20% {
2429
- color: var(--salt-differential-positive-foreground);
2430
- background-color: transparent;
2431
- }
2432
- 100% {
2433
- color: transparent;
2434
- background-color: transparent;
2435
- }
2436
- }
2437
- @keyframes reactbgarrowdown1 {
2438
- 0% {
2439
- color: var(--salt-differential-negative-foreground);
2440
- background-color: var(--vuu-color-red-50);
2441
- }
2442
- 20% {
2443
- color: var(--salt-differential-negative-foreground);
2444
- background-color: transparent;
2445
- }
2446
- 100% {
2447
- color: transparent;
2448
- background-color: transparent;
2449
- }
2450
- }
2451
- @keyframes reactbgarrowdown2 {
2452
- 0% {
2453
- color: var(--salt-differential-negative-foreground);
2454
- background-color: var(--vuu-color-red-50);
2455
- }
2456
- 20% {
2457
- color: var(--salt-differential-negative-foreground);
2458
- background-color: transparent;
2459
- }
2460
- 100% {
2461
- color: transparent;
2462
- background-color: transparent;
2463
- }
2464
- }
2465
-
2466
- /* ../vuu-table-extras/src/column-list/ColumnList.css */
2467
- .vuuColumnList {
2468
- --vuu-svg-function: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M5.8625 10.5V9.625H6.72291L8.4875 7.59792L6.72291 5.54167H5.64375L4.60833 10.8792C4.53055 11.3167 4.36527 11.6545 4.1125 11.8927C3.85972 12.1309 3.53402 12.25 3.13541 12.25C2.7368 12.25 2.40382 12.1333 2.13645 11.9C1.86909 11.6667 1.73541 11.375 1.73541 11.025C1.73541 10.7625 1.80833 10.551 1.95416 10.3906C2.1 10.2302 2.28958 10.15 2.52291 10.15C2.72708 10.15 2.89479 10.2083 3.02604 10.325C3.15729 10.4417 3.22291 10.5972 3.22291 10.7917C3.22291 10.8986 3.20104 10.9983 3.15729 11.0906C3.11354 11.183 3.05277 11.2583 2.975 11.3167C3.01388 11.3361 3.0552 11.3507 3.09895 11.3604C3.1427 11.3701 3.18888 11.375 3.2375 11.375C3.36388 11.375 3.47083 11.3142 3.55833 11.1927C3.64583 11.0712 3.70902 10.9132 3.74791 10.7188L4.75416 5.54167H2.91666V4.66667H4.91458L5.22083 3.12083C5.30833 2.68333 5.48333 2.34549 5.74583 2.10729C6.00833 1.8691 6.33402 1.75 6.72291 1.75C7.12152 1.75 7.44965 1.86667 7.70729 2.1C7.96493 2.33333 8.09375 2.625 8.09375 2.975C8.09375 3.2375 8.02083 3.44896 7.875 3.60938C7.72916 3.76979 7.53958 3.85 7.30625 3.85C7.1118 3.85 6.94652 3.7941 6.81041 3.68229C6.6743 3.57049 6.60625 3.42222 6.60625 3.2375C6.60625 3.14028 6.62569 3.04549 6.66458 2.95312C6.70347 2.86076 6.75208 2.78542 6.81041 2.72708C6.79097 2.70764 6.7618 2.69063 6.72291 2.67604C6.68402 2.66146 6.64513 2.65417 6.60625 2.65417C6.47986 2.65417 6.37048 2.7125 6.27812 2.82917C6.18576 2.94583 6.12013 3.09653 6.08125 3.28125L5.81875 4.66667H8.575V5.54167H7.88958L9.1 6.94167L10.2375 5.54167H9.5375V4.66667H12.25V5.54167H11.4042L9.65416 7.59792L11.4042 9.625H12.25V10.5H9.5375V9.625H10.2375L9.07083 8.26875L7.875 9.625H8.575V10.5H5.8625Z"/></svg>');
2469
- --vuuList-borderStyle: none;
2470
- --vuuListItem-padding: 0;
2471
- display: flex;
2472
- flex-direction: column;
2473
- width: 252px;
2474
- }
2475
- [data-icon=function] {
2476
- --vuu-icon-svg: var(--vuu-svg-function);
2477
- }
2478
- .vuuColumnListItem {
2479
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
2480
- padding: 0 6px 0 0;
2481
- }
2482
- .vuuColumnList-switch {
2483
- flex: 0 0 32px;
2484
- }
2485
- .vuuColumnList-text {
2486
- flex: 1 1 auto;
2487
- }
2488
- .vuuColumnList-checkBox {
2489
- flex: 0 0 20px;
2490
- }
2491
- .vuuColumnList-icon {
2492
- --vuu-icon-color: var(--vuu-color-gray-45);
2493
- --vuu-icon-size: 16px;
2494
- --vuu-icon-width: 32px;
2495
- }
2496
- .vuuColumnList-header {
2497
- border-top: solid 2px var(--vuu-color-gray-30);
2498
- flex: 0 0 40px;
2499
- font-size: 14px;
2500
- font-weight: 600;
2501
- padding-top: 24px;
2502
- }
2503
- .vuuColumnList-colHeadings {
2504
- border-bottom: solid 2px var(--vuu-color-gray-30);
2505
- color: var(--vuu-color-gray-50);
2506
- display: flex;
2507
- flex: 0 0 24px;
2508
- font-size: 10px;
2509
- justify-content: space-between;
2510
- margin-top: 16px;
2511
- padding-bottom: 8px;
2512
- }
2513
-
2514
- /* ../vuu-table-extras/src/column-expression-input/ColumnExpressionInput.css */
2515
- .vuuColumnExpressionInput {
2516
- --vuuFilterEditor-background: var(--salt-container-primary-background);
2517
- --vuuFilterEditor-color: var(--salt-text-primary-foreground);
2518
- --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
2519
- --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
2520
- --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
2521
- --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
2522
- --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
2523
- --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
2524
- --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
2525
- --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
2526
- --vuuFilterEditor-suggestion-selectedColor: var(--salt-text-primary-foreground);
2527
- --vuuFilterEditor-suggestion-detailColor: var(--salt-text-secondary-foreground-disabled);
2528
- --vuuFilterEditor-suggestion-height: 24px;
2529
- --vuuFilterEditor-variableColor: blue;
2530
- align-items: center;
2531
- box-sizing: border-box;
2532
- height: 30px;
2533
- }
2534
- .vuuColumnExpressionInput-FilterButton,
2535
- .vuuColumnExpressionInput-ClearButton {
2536
- --vuu-icon-size: 12px;
2537
- --saltButton-width: 28px;
2538
- }
2539
- .expression-type-container {
2540
- margin: 0 3px 0 auto;
2541
- color: var(--salt-text-secondary-foreground);
2542
- }
2543
- .expression-kind {
2544
- display: inline-block;
2545
- width: 50px;
2546
- }
2547
- .expression-type {
2548
- display: inline-block;
2549
- text-align: right;
2550
- width: 50px;
2551
- }
2552
- .vuuSuggestion {
2553
- display: flex;
2554
- align-items: center;
2555
- }
2556
- .vuuFunctionDoc .function-heading {
2557
- display: flex;
2558
- gap: 3px;
2559
- }
2560
- .vuuFunctionDoc .function-name {
2561
- font-style: italic;
2562
- }
2563
- .vuuFunctionDoc .param-list {
2564
- font-style: italic;
2565
- color: blue;
2566
- white-space: pre;
2567
- }
2568
- .vuuFunctionDoc .function-type {
2569
- margin-left: auto;
2570
- }
2571
- .vuuFunctionDoc .example-container {
2572
- background-color: var(--salt-container-secondary-background);
2573
- margin: 6px 0;
2574
- padding: 3px;
2575
- }
2576
- .vuuFunctionDoc .example-expression {
2577
- font-family: var(--salt-typography-fontFamily-code);
2578
- margin-left: 8px;
2579
- margin-top: 6px;
2580
- }
2581
- .vuuFunctionDoc .example-result {
2582
- margin-left: 8px;
2583
- margin-top: 6px;
2584
- }
2585
-
2586
- /* ../vuu-table-extras/src/column-settings/ColumnSettingsPanel.css */
2587
- .vuuColumnSettingsPanel {
2588
- --vuu-svg-align-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.33333 10H2.66667C2.3 10 2 10.3 2 10.6667C2 11.0333 2.3 11.3333 2.66667 11.3333H9.33333C9.7 11.3333 10 11.0333 10 10.6667C10 10.3 9.7 10 9.33333 10ZM9.33333 4.66667H2.66667C2.3 4.66667 2 4.96667 2 5.33333C2 5.7 2.3 6 2.66667 6H9.33333C9.7 6 10 5.7 10 5.33333C10 4.96667 9.7 4.66667 9.33333 4.66667ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
2589
- --vuu-svg-align-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM6.66667 11.3333H13.3333C13.7 11.3333 14 11.0333 14 10.6667C14 10.3 13.7 10 13.3333 10H6.66667C6.3 10 6 10.3 6 10.6667C6 11.0333 6.3 11.3333 6.66667 11.3333ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM6.66667 6H13.3333C13.7 6 14 5.7 14 5.33333C14 4.96667 13.7 4.66667 13.3333 4.66667H6.66667C6.3 4.66667 6 4.96667 6 5.33333C6 5.7 6.3 6 6.66667 6ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
2590
- --vuu-svg-pin-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.33333 9.86V8.66666H13.3333C13.7 8.66666 14 8.36666 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333L7.33333 7.33333V6.14C7.33333 5.84 6.97333 5.69333 6.76667 5.90666L4.90667 7.76666C4.77333 7.89999 4.77333 8.10666 4.90667 8.24L6.76667 10.1C6.97333 10.3067 7.33333 10.16 7.33333 9.86ZM2.66667 13.3333C3.03333 13.3333 3.33333 13.0333 3.33333 12.6667L3.33333 3.33333C3.33333 2.96666 3.03333 2.66666 2.66667 2.66666C2.3 2.66666 2 2.96666 2 3.33333L2 12.6667C2 13.0333 2.3 13.3333 2.66667 13.3333Z" /></svg>');
2591
- --vuu-svg-pin-float: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 4.66667H4.66667V6H6V4.66667ZM6 7.33333H4.66667V8.66667H6V7.33333ZM6 2C5.26 2 4.66667 2.6 4.66667 3.33333H6V2ZM8.66667 10H7.33333V11.3333H8.66667V10ZM12.6667 2V3.33333H14C14 2.6 13.4 2 12.6667 2ZM8.66667 2H7.33333V3.33333H8.66667V2ZM6 11.3333V10H4.66667C4.66667 10.7333 5.26 11.3333 6 11.3333ZM12.6667 8.66667H14V7.33333H12.6667V8.66667ZM12.6667 6H14V4.66667H12.6667V6ZM12.6667 11.3333C13.4 11.3333 14 10.7333 14 10H12.6667V11.3333ZM2.66667 4.66667C2.3 4.66667 2 4.96667 2 5.33333V12.6667C2 13.4 2.6 14 3.33333 14H10.6667C11.0333 14 11.3333 13.7 11.3333 13.3333C11.3333 12.9667 11.0333 12.6667 10.6667 12.6667H4C3.63333 12.6667 3.33333 12.3667 3.33333 12V5.33333C3.33333 4.96667 3.03333 4.66667 2.66667 4.66667ZM10 3.33333H11.3333V2H10V3.33333ZM10 11.3333H11.3333V10H10V11.3333Z" /></svg>');
2592
- --vuu-svg-pin-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.66667 6.14V7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36666 2.3 8.66666 2.66667 8.66666H8.66667V9.86C8.66667 10.16 9.02667 10.3067 9.23333 10.0933L11.0933 8.23333C11.2267 8.1 11.2267 7.89333 11.0933 7.76L9.23333 5.9C9.02667 5.69333 8.66667 5.84 8.66667 6.14ZM13.3333 13.3333C13.7 13.3333 14 13.0333 14 12.6667V3.33333C14 2.96666 13.7 2.66666 13.3333 2.66666C12.9667 2.66666 12.6667 2.96666 12.6667 3.33333V12.6667C12.6667 13.0333 12.9667 13.3333 13.3333 13.3333Z"/></svg>');
2593
- --vuuDropdown-height: 24px;
2594
- --vuuDropdown-width: 100%;
2595
- --vuuIconToggleButton-iconSize: 16px;
2596
- display: flex;
2597
- flex-direction: column;
2598
- gap: 24px;
2599
- height: 100%;
2600
- padding-top: 24px;
2601
- }
2602
- .vuuColumnSettingsPanel-header {
2603
- border-top: solid 2px var(--vuu-color-gray-30);
2604
- font-size: 14px;
2605
- font-weight: 600;
2606
- padding-top: 24px;
2607
- }
2608
- .vuuColumnSettingsPanel-buttonBar {
2609
- align-items: center;
2610
- display: flex;
2611
- justify-content: space-between;
2612
- margin-top: auto;
2613
- }
2614
- .vuuColumnSettingsPanel-buttonBar[data-align=right] {
2615
- gap: 6px;
2616
- justify-content: flex-end;
2617
- }
2618
- .vuuColumnSettingsPanel-buttonNavPrev {
2619
- --vuu-icon-left: 6px;
2620
- padding-left: 24px;
2621
- }
2622
- .vuuColumnSettingsPanel-buttonNavNext {
2623
- --vuu-icon-left: calc(100% - 18px);
2624
- padding-right: 24px;
2625
- }
2626
- [data-icon=align-left] {
2627
- --vuu-icon-svg: var(--vuu-svg-align-left);
2628
- }
2629
- [data-icon=align-right] {
2630
- --vuu-icon-svg: var(--vuu-svg-align-right);
2631
- }
2632
- [data-icon=pin-left] {
2633
- --vuu-icon-svg: var(--vuu-svg-pin-left);
2634
- }
2635
- [data-icon=pin-float] {
2636
- --vuu-icon-svg: var(--vuu-svg-pin-float);
2637
- }
2638
- [data-icon=pin-right] {
2639
- --vuu-icon-svg: var(--vuu-svg-pin-right);
2640
- }
2641
-
2642
- /* ../vuu-table-extras/src/datasource-stats/DatasourceStats.css */
2643
- .vuuDatasourceStats {
2644
- color: black;
2645
- display: flex;
2646
- font-size: 10px;
2647
- gap: var(--salt-size-unit);
2648
- padding: 4px 0 0 12px;
2649
- }
2650
- .vuuDatasourceStats-label {
2651
- color: var(--vuu-color-gray-50);
2652
- }
2653
-
2654
- /* ../vuu-table-extras/src/table-settings/TableSettingsPanel.css */
2655
- .vuuTableSettingsPanel {
2656
- --vuu-svg-text-strikethrough: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M28.3333 9.33334C28.8867 9.33334 29.3333 8.88668 29.3333 8.33334C29.3333 7.78001 28.8867 7.33334 28.3333 7.33334H20.26L22.26 9.33334H23.48L23.1133 10.1867L24.5067 11.58L25.4733 9.33334H28.3333ZM27.6267 16.5867L18.7467 7.70668C18.4867 7.44668 18.0667 7.44668 17.8067 7.70668C17.5467 7.96668 17.5467 8.38668 17.8067 8.64668L21.98 12.82L20.88 15.38C20.62 15.9933 21.0667 16.6667 21.7267 16.6667C22.0933 16.6667 22.4267 16.4467 22.5733 16.1067L23.38 14.22L26.68 17.52C26.94 17.78 27.36 17.78 27.62 17.52C27.8867 17.2667 27.8867 16.8467 27.6267 16.5867Z"/></svg>');
2657
- --vuu-svg-text-Tt: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M17.6667 7.66666C17.6667 8.21999 18.1133 8.66666 18.6667 8.66666H21V15.6667C21 16.22 21.4467 16.6667 22 16.6667C22.5533 16.6667 23 16.22 23 15.6667V8.66666H25.3333C25.8867 8.66666 26.3333 8.21999 26.3333 7.66666C26.3333 7.11332 25.8867 6.66666 25.3333 6.66666H18.6667C18.1133 6.66666 17.6667 7.11332 17.6667 7.66666ZM29.3333 9.99999H25.3333C24.78 9.99999 24.3333 10.4467 24.3333 11C24.3333 11.5533 24.78 12 25.3333 12H26.3333V15.6667C26.3333 16.22 26.78 16.6667 27.3333 16.6667C27.8867 16.6667 28.3333 16.22 28.3333 15.6667V12H29.3333C29.8867 12 30.3333 11.5533 30.3333 11C30.3333 10.4467 29.8867 9.99999 29.3333 9.99999Z" /></svg>');
2658
- --vuu-svg-text-T: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M19.3333 7.66666C19.3333 8.21999 19.78 8.66666 20.3333 8.66666H23V15.6667C23 16.22 23.4467 16.6667 24 16.6667C24.5533 16.6667 25 16.22 25 15.6667V8.66666H27.6667C28.22 8.66666 28.6667 8.21999 28.6667 7.66666C28.6667 7.11332 28.22 6.66666 27.6667 6.66666H20.3333C19.78 6.66666 19.3333 7.11332 19.3333 7.66666Z"/></svg>');
2659
- --vuu-svg-stripes: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="2" width="12" height="2" rx="0.3"/><rect x="2" y="5" width="12" height="2" rx="0.3"/><rect x="2" y="8" width="12" height="2" rx="0.3"/><rect x="2" y="11" width="12" height="2" rx="0.3"/></svg>');
2660
- --vuu-svg-row-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="3" width="12" height="1" rx="0.3" /><rect x="2" y="6" width="12" height="1" rx="0.3" /><rect x="2" y="9" width="12" height="1" rx="0.3" /><rect x="2" y="12" width="12" height="1" rx="0.3"/></svg>');
2661
- --vuu-svg-col-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="3" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 3 14)"/><rect x="6" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 6 14)"/><rect x="9" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 9 14)"/><rect x="12" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 12 14)"/></svg>');
2662
- display: flex;
2663
- flex-direction: column;
2664
- gap: 24px;
2665
- height: 100%;
2666
- padding-top: 24px;
2667
- }
2668
- .vuuTableSettingsPanel [data-icon=text-strikethrough] {
2669
- --vuu-icon-svg: var(--vuu-svg-text-strikethrough);
2670
- }
2671
- .vuuTableSettingsPanel [data-icon=text-Tt] {
2672
- --vuu-icon-svg: var(--vuu-svg-text-Tt);
2673
- }
2674
- .vuuTableSettingsPanel [data-icon=text-T] {
2675
- --vuu-icon-svg: var(--vuu-svg-text-T);
2676
- }
2677
- .vuuTableSettingsPanel [data-icon=col-lines] {
2678
- --vuu-icon-svg: var(--vuu-svg-col-lines);
2679
- }
2680
- .vuuTableSettingsPanel [data-icon=row-lines] {
2681
- --vuu-icon-svg: var(--vuu-svg-row-lines);
2682
- }
2683
- .vuuTableSettingsPanel [data-icon=row-striping] {
2684
- --vuu-icon-svg: var(--vuu-svg-stripes);
2685
- }
2686
- .vuuTableSettingsPanel-header {
2687
- border-top: solid 2px var(--vuu-color-gray-30);
2688
- font-size: 14px;
2689
- font-weight: 600;
2690
- padding-top: 24px;
2691
- }
2692
- .vuuTableSettingsPanel .vuuColumnList {
2693
- flex-grow: 1;
2694
- flex-shrink: 1;
2695
- flex-basis: 0;
2696
- }
2697
- .vuuTableSettingsPanel-calculatedButtonbar {
2698
- --vuu-icon-size: 16px;
2699
- --saltButton-height: 24px;
2700
- --saltButton-width: 24px;
2701
- align-items: center;
2702
- display: flex;
2703
- flex: 0 0 32px;
2704
- gap: 12px;
2705
- }
2706
- .vuuGridSeparators {
2707
- --vuuIconToggleButton-iconSize: 16px;
2708
- }
2709
-
2710
- /* ../vuu-table/src/table-next/TableNext.css */
2711
- .vuuTableNext {
2712
- --vuu-table-cell-outlineWidth: 1px;
2713
- --table-height: var(--measured-px-height);
2714
- --table-width: var(--measured-px-width);
2715
- --vuu-table-next-selection-bookend-width: 4px;
2716
- --columnResizer-color: transparent;
2717
- --row-background: white;
2718
- --cell-borderColor: transparent;
2719
- --row-borderColor: var(--row-background);
2720
- --table-background: var(--salt-container-primary-background);
2721
- position: relative;
2722
- user-select: none;
2723
- }
2724
- .vuuTableNext-zebra {
2725
- --row-background-even: var(--vuu-color-gray-25) ;
2726
- }
2727
- .vuuTableNext-colLines {
2728
- --cell-borderColor: var(--salt-separable-tertiary-borderColor);
2729
- }
2730
- .vuuTableNext-rowLines {
2731
- --row-borderColor: var(--salt-separable-tertiary-borderColor);
2732
- }
2733
- .vuuTableNext-scrollbarContainer {
2734
- --scroll-content-width: 1100px;
2735
- border-bottom: none !important;
2736
- border-top: none !important;
2737
- border-left: solid 1px var(--salt-container-primary-borderColor);
2738
- height: var(--viewport-body-height);
2739
- left: 0px;
2740
- overflow: auto;
2741
- position: absolute;
2742
- top: var(--total-header-height);
2743
- width: var(--table-width);
2744
- }
2745
- .vuuTableNext-scrollbarContainer::-webkit-scrollbar {
2746
- border: none;
2747
- width: 10px;
2748
- }
2749
- .vuuTableNext-scrollbarContainer::-webkit-scrollbar:horizontal {
2750
- height: 10px;
2751
- }
2752
- .vuuTableNext-scrollbarContainer::-webkit-scrollbar-track {
2753
- background-color: white;
2754
- }
2755
- .vuuTableNext-scrollbarContainer::-webkit-scrollbar-thumb {
2756
- background-clip: padding-box;
2757
- border-radius: 10px;
2758
- border: 2px solid rgba(0, 0, 0, 0);
2759
- background-color: var(--vuu-color-gray-30);
2760
- }
2761
- .vuuTableNext-scrollbarContent {
2762
- height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
2763
- position: absolute;
2764
- width: var(--content-width);
2765
- }
2766
- .vuuTableNext-contentContainer {
2767
- background-color: var(--salt-container-primary-background);
2768
- height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
2769
- position: relative;
2770
- overflow: auto;
2771
- overscroll-behavior: none;
2772
- width: calc(var(--table-width) - var(--vertical-scrollbar-width));
2773
- }
2774
- .vuuTableNext-contentContainer::-webkit-scrollbar {
2775
- display: none;
2776
- }
2777
- .vuuTableNext-table {
2778
- position: absolute;
2779
- top: 0;
2780
- left: 0;
2781
- table-layout: fixed;
2782
- width: var(--content-width);
2783
- margin: 0;
2784
- border: none;
2785
- background-color: #fff;
2786
- border-collapse: separate;
2787
- border-spacing: 0;
2788
- }
2789
- .vuuTableNext-body {
2790
- height: var(--content-height);
2791
- }
2792
- .vuuPinLeft,
2793
- .vuuPinRight {
2794
- background-color: inherit;
2795
- position: sticky;
2796
- z-index: 1;
2797
- }
2798
- .vuuTableNext-col-headings {
2799
- background-color: white;
2800
- padding: 0 var(--vuu-table-next-selection-bookend-width, 0);
2801
- position: sticky;
2802
- top: 0;
2803
- z-index: 1;
2804
- }
2805
- .vuuTableNext-col-headers {
2806
- background-color: var(--table-background);
2807
- white-space: nowrap;
2808
- }
2809
- .sizer-cell {
2810
- background-color: green !important;
2811
- border: none !important;
2812
- height: 0px;
2813
- }
2814
- .vuuDraggable-vuuTableNext {
2815
- --header-height: 25px;
2816
- --vuuTableNextHeaderCell-background: var(--vuu-color-gray-25);
2817
- }
2818
-
2819
- /* ../vuu-table/src/table-next/cell-renderers/dropdown-cell/DropdownCell.css */
2820
- .vuuTableDropdownCell {
2821
- --vuu-icon-height: 15px;
2822
- --salt-focused-outlineStyle: none;
2823
- --saltButton-borderRadius: 4px;
2824
- font-weight: 500;
2825
- }
2826
- .vuuTableDropdownCell button:focus-visible {
2827
- --saltButton-borderColor: var(--vuu-color-purple-10);
2828
- --saltButton-borderWidth: 2px;
2829
- padding-left: 3px;
2830
- }
2831
-
2832
- /* ../vuu-table/src/table-next/cell-renderers/input-cell/InputCell.css */
2833
- .vuuTableInputCell.saltInput-primary {
2834
- --salt-focused-outlineStyle: none;
2835
- --saltInput-height: 17px;
2836
- --saltInput-minHeight: 17px;
2837
- border-radius: 4px;
2838
- font-weight: 500;
2839
- }
2840
- .vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary,
2841
- .vuuTableInputCell.saltInput-primary.saltInput-focused {
2842
- border: solid 2px var(--vuu-color-purple-10);
2843
- padding: 0 3px;
2844
- }
2845
- .vuuTableInputCell-icon {
2846
- --vuu-icon-height: 13px;
2847
- --vuu-icon-size: 15px;
2848
- --vuu-icon-width: 12px;
2849
- border-radius: 10px;
2850
- }
2851
- .vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary.vuuTableInputCell-error,
2852
- .vuuTableInputCell.saltInput-primary.saltInput-focused.vuuTableInputCell-error {
2853
- border: solid 2px var(--vuu-color-red-50);
2854
- }
2855
- .vuuTableInputCell-error.saltInput-primary {
2856
- border: solid 1px var(--vuu-color-red-50);
2857
- }
2858
-
2859
- /* ../vuu-ui-controls/src/instrument-search/SearchCell.css */
2860
- .vuuSearchCell {
2861
- --vuu-icon-left: 0;
2862
- --vuu-icon-size: 16px;
2863
- --vuu-icon-top: 0px;
2864
- align-items: center;
2865
- color: var(--background-cell-color);
2866
- display: flex;
2867
- gap: 4px;
2868
- padding: 0 8px 0 8px;
2869
- position: relative;
2870
- z-index: -1;
2871
- }
2872
-
2873
- /* ../vuu-ui-controls/src/instrument-search/InstrumentSearch.css */
2874
- .vuuInstrumentSearch {
2875
- height: 100%;
2876
- padding: var(--vuuInstrumentSearch-padding, 12px);
2877
- display: flex;
2878
- flex-direction: column;
2879
- }
2880
- .vuuInstrumentSearch-inputField {
2881
- --vuu-icon-size: 16px;
2882
- flex: 0 0 40px;
2883
- }
2884
- .vuuInstrumentSearch-list {
2885
- background-color: var(--salt-container-primary-background);
2886
- flex: 1 1 auto;
2887
- }
2888
- .vuuInstrumentSearch .vuuTableNextCell {
2889
- padding: 0;
2890
- }
2891
-
2892
- /* ../vuu-ui-controls/src/price-ticker/PriceTicker.css */
2893
- @property --price-ticker-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
2894
- .vuuPriceTicker {
2895
- align-items: center;
2896
- display: flex;
2897
- font-size: var(--vuuPriceTicker-fontSize, var(--salt-text-fontSize));
2898
- font-weight: var(--vuuPriceTicker-fontWeight, 700);
2899
- transition-property: color;
2900
- transition-duration: .3s;
2901
- }
2902
- .vuuPriceTicker.up1 {
2903
- --vuu-icon-color: var(--vuu-color-green-50);
2904
- color: var(--vuu-color-green-50);
2905
- animation-duration: 30s;
2906
- }
2907
- .vuuPriceTicker.up2 {
2908
- --vuu-icon-color: var(--vuu-color-green-50);
2909
- color: var(--vuu-color-green-50);
2910
- animation-duration: 30s;
2911
- }
2912
- .vuuPriceTicker.down1 {
2913
- --vuu-icon-transform: rotate(180deg);
2914
- --vuu-icon-color: var(--vuu-color-red-50);
2915
- color: var(--vuu-color-red-50);
2916
- animation-duration: 30s;
2917
- }
2918
- .vuuPriceTicker.down2 {
2919
- --vuu-icon-transform: rotate(180deg);
2920
- --vuu-icon-color: var(--vuu-color-red-50);
2921
- color: var(--vuu-color-red-50);
2922
- animation-duration: 30s;
2923
- }
2924
-
2925
- /* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
2926
- .vuuTabstrip {
2927
- --vuuOverflowContainer-background: transparent;
2928
- --tabstrip-dragging-display: none;
2929
- --tabstrip-display: inline-flex;
2930
- --tabstrip-background: transparent;
2931
- align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
2932
- display: flex;
2933
- font-size: var(--salt-text-fontSize);
2934
- font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
2935
- min-width: 28px;
2936
- position: relative;
2937
- overflow: visible;
2938
- width: var(--tabstrip-width);
2939
- }
2940
- .vuuTabstrip-horizontal {
2941
- --tabstrip-height: var(--vuuTabstrip-height, 28px);
2942
- --tabstrip-width: var(--vuuTabstrip-width, 100%);
2943
- --tab-height: var(--tabstrip-height);
2944
- --tab-width: auto;
2945
- --tab-thumb-height: 2px;
2946
- --tab-thumb-left: var(--tab-thumb-offset, 0);
2947
- --tab-thumb-top: auto;
2948
- --tab-thumb-width: var(--tab-thumb-size, 100%);
2949
- align-items: flex-start;
2950
- border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
2951
- }
2952
- .vuuTabstrip-vertical {
2953
- --tabstrip-height: var(--vuuTabstrip-height, 100%);
2954
- --tabstrip-width: var(--vuuTabstrip-width, 100px);
2955
- --tab-height: 50px;
2956
- --tab-width: 100%;
2957
- --tab-thumb-height: 0;
2958
- --tab-thumb-left: 0;
2959
- --tab-thumb-top: var(--tab-thumb-offset, 0);
2960
- --tab-thumb-width: 2px;
2961
- align-self: flex-start;
2962
- display: inline-flex;
2963
- }
2964
- .vuuTabstrip-draggingTab .vuuTab {
2965
- pointer-events: none;
2966
- }
2967
- .vuuTabstrip-addTabButton {
2968
- --saltButton-height: 20px;
2969
- --saltButton-width: 20px;
2970
- }
2971
- .vuuTabstrip-overflowMenu.vuuDropdown {
2972
- --saltIcon-margin: 2px 0 0 0px;
2973
- }
2974
- .vuuTabstrip-overflowMenu-open {
2975
- --saltButton-background: var(--salt-actionable-secondary-background-active);
2976
- --saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
2977
- }
2978
- .vuuTabstrip-overflowMenu-open .saltButton {
2979
- --saltIcon-color: var(--salt-actionable-secondary-foreground-active);
2980
- }
2981
- .vuuTabstrip-inner {
2982
- width: 100%;
2983
- align-items: center;
2984
- display: flex;
2985
- flex-basis: auto;
2986
- flex-grow: 0;
2987
- flex-shrink: 1;
2988
- flex-wrap: wrap;
2989
- justify-content: flex-start;
2990
- line-height: var(--tabstrip-height);
2991
- }
2992
- .vuuTabstrip-vertical .vuuTabstrip-inner {
2993
- flex-direction: column;
2994
- height: auto;
2995
- }
2996
- .vuuTabstrip-centered .vuuTabstrip-inner {
2997
- justify-content: center;
2998
- }
2999
- .vuuDraggable[class*=vuuTabstrip] {
3000
- --tabstrip-display: flex;
3001
- --tabstrip-height: 100%;
3002
- --tabstrip-dragging-display: block;
3003
- --tabs-tab-background: var(--salt-navigable-primary-background-hover);
3004
- --tabs-tab-before-content: "";
3005
- --tabs-tab-before-background: var(--salt-navigable-indicator-hover);
3006
- --tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
3007
- --tabs-tab-before-inset: var(--tab-activationIndicator-inset);
3008
- --tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
3009
- --tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
3010
- --tabs-tab-position: static;
3011
- font-size: 12px;
3012
- }
3013
- .vuuDraggable-tabstrip-horizontal {
3014
- --tab-thumb-height: 2px;
3015
- --tab-thumb-left: 0px;
3016
- --tabstrip-height: 28px;
3017
- line-height: var(--tabstrip-height);
3018
- }
3019
- .vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
3020
- --tabs-tab-before-background: var(--salt-navigable-indicator-active);
3021
- }
3022
- .vuuTabstrip-overflowMenu-dropTarget:after {
3023
- background: var(--salt-selectable-background-selected);
3024
- content: "";
3025
- position: absolute;
3026
- height: 2px;
3027
- left: 0;
3028
- right: 0;
3029
- bottom: 0;
3030
- }
3031
-
3032
- /* ../vuu-ui-controls/src/tabstrip/TabMenu.css */
3033
- .vuuTabMenu {
3034
- top: -2px;
3035
- }
3036
-
3037
- /* ../vuu-ui-controls/src/tabstrip/Tab.css */
3038
- .vuuTab {
3039
- --saltEditableLabel-padding: 0;
3040
- --saltEditableLabel-height: calc(var(--tabstrip-height) - 2px);
3041
- --saltInputLegacy-minWidth: 4em;
3042
- --saltEditableLabel-top: 2px;
3043
- --tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
3044
- --tab-cursor: pointer;
3045
- --tab-position: relative;
3046
- }
3047
- .vuuTab {
3048
- align-items: center;
3049
- align-self: stretch;
3050
- background: var(--tab-background);
3051
- border: none;
3052
- border-radius: var(--vuuTab-borderRadius, 0);
3053
- color: var(--salt-text-primary-foreground);
3054
- cursor: var(--vuuTab-cursor, var(--tab-cursor));
3055
- display: var(--tabstrip-display);
3056
- gap: 8px;
3057
- height: var(--vuuTabHeight, var(--tab-height));
3058
- letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
3059
- min-width: var(--vuuTab-minWidth, 40px);
3060
- outline: none;
3061
- padding: var(--vuuTab-padding, 0 24px);
3062
- position: var(--vuuTab-position, var(--tab-position));
3063
- user-select: none;
3064
- width: var(--tab-width);
3065
- }
3066
- .vuuTab {
3067
- margin: 0 var(--tab-spacing) 0 0;
3068
- }
3069
- .vuuTab-selected {
3070
- background: var(--vuuTab-background-selected, var(--tab-background));
3071
- color: var(--salt-text-primary-foreground);
3072
- font-weight: var(--salt-navigable-fontWeight-active);
3073
- }
3074
- .vuuTab-main {
3075
- align-items: center;
3076
- border: none;
3077
- color: inherit;
3078
- cursor: inherit;
3079
- display: flex;
3080
- font-family: inherit;
3081
- font-size: inherit;
3082
- font-weight: inherit;
3083
- height: calc(var(--tab-height) - var(--tab-thumb-height));
3084
- margin-bottom: var(--tab-thumb-height);
3085
- outline: none;
3086
- position: relative;
3087
- }
3088
- .vuuTab-closeable .vuuTab-main {
3089
- border-right: solid transparent var(--salt-size-unit);
3090
- }
3091
- .vuuTab .vuuTab-closeButton {
3092
- display: flex;
3093
- align-items: center;
3094
- justify-content: center;
3095
- }
3096
- .vuuTab-close-icon {
3097
- display: none;
3098
- }
3099
- .salt-density-touch .vuuTab-close-icon,
3100
- .salt-density-low .vuuTab-close-icon {
3101
- display: block;
3102
- }
3103
- .salt-density-touch .vuuTab-close-icon-small,
3104
- .salt-density-low .vuuTab-close-icon-small {
3105
- display: none;
3106
- }
3107
- .vuuTab .vuuTab-text {
3108
- display: inline-block;
3109
- position: relative;
3110
- overflow: hidden;
3111
- text-align: var(--salt-text-textAlign-embedded);
3112
- text-overflow: ellipsis;
3113
- top: var(--vuuTab-top, var(--tab-top, auto));
3114
- white-space: nowrap;
3115
- z-index: var(--salt-zIndex-default);
3116
- }
3117
- .vuuTab .vuuTab-text:before {
3118
- height: 0;
3119
- content: attr(data-text);
3120
- display: block;
3121
- visibility: hidden;
3122
- font-weight: var(--salt-navigable-fontWeight-active);
3123
- }
3124
- .vuuTab-editing:after {
3125
- content: "";
3126
- position: absolute;
3127
- top: 0;
3128
- left: 0;
3129
- right: 0;
3130
- bottom: 2px;
3131
- outline-color: var(--salt-focused-outlineColor);
3132
- outline-style: var(--salt-focused-outlineStyle);
3133
- outline-width: var(--salt-focused-outlineWidth);
3134
- outline-offset: -2px;
3135
- }
3136
- .vuuTab.vuuFocusVisible {
3137
- background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
3138
- outline-color: var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));
3139
- outline-style: dashed;
3140
- outline-width: 1px;
3141
- outline-offset: -1px;
3142
- }
3143
- .vuuTab:before {
3144
- content: var(--tab-before-content, none);
3145
- content: "";
3146
- background: var(--tab-before-background);
3147
- height: var(--tab-before-height);
3148
- inset: var(--tab-before-inset);
3149
- position: absolute;
3150
- width: var(--tab-before-width);
3151
- z-index: 1;
3152
- }
3153
- .vuuTabstrip-draggingTab .vuuTab-selected:before {
3154
- --tab-before-content: "";
3155
- --tab-before-background: var(--salt-navigable-indicator-color-active);
3156
- --tab-before-height: var(--tab-thumb-height);
3157
- --tab-before-inset: var(--tab-activationIndicator-inset);
3158
- --tab-before-width: var(--tab-activationIndicator-thumb-width);
3159
- }
3160
- .vuuTab-selected:before {
3161
- --tab-before-content: "";
3162
- background: var(--salt-navigable-indicator-active);
3163
- height: var(--tab-thumb-height);
3164
- position: absolute;
3165
- left: var(--tab-thumb-left);
3166
- bottom: 0px;
3167
- top: var(--tab-thumb-top, auto);
3168
- transition: var(--tab-thumb-transition, none);
3169
- width: var(--tab-thumb-width, 100%);
3170
- }
3171
- .vuuTab:hover:not(.vuuTab-closeHover) {
3172
- background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
3173
- }
3174
-
3175
- /* ../vuu-ui-controls/src/tree/Tree.css */
3176
- .vuuTree {
3177
- --tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));
3178
- --tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));
3179
- --tree-toggle-width: 12px;
3180
- --tree-icon-color: var(--vuuTree-icon-color, #4c505b);
3181
- --tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);
3182
- --tree-node-indent: 0px;
3183
- --list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, 0.1));
3184
- --list-item-height: var(--hw-list-item-height, 30px);
3185
- --list-item-padding: var(--hw-list-item-padding, 0 6px);
3186
- --list-item-header-bg: var(--hw-list-item-header-bg, black);
3187
- --list-item-header-color: var(--hw-list-item-header-color, white);
3188
- --list-item-header-font-weight: bold;
3189
- --list-item-header-twisty-color: black;
3190
- --list-item-header-twisty-content: "";
3191
- --list-item-header-twisty-top: 50%;
3192
- --list-item-header-twisty-left: -18px;
3193
- --list-item-header-twisty-right: auto;
3194
- --list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);
3195
- --list-item-selected-color: white;
3196
- --list-item-text-color: var(--hw-gray-800);
3197
- --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
3198
- list-style: none;
3199
- margin: 0;
3200
- padding: 0 1px;
3201
- font-size: var(--vuuTree-font-size, 14px);
3202
- max-height: inherit;
3203
- outline: none;
3204
- overflow-y: auto;
3205
- position: relative;
3206
- user-select: none;
3207
- }
3208
- .vuuTree-viewport {
3209
- --list-item-height: 30px;
3210
- box-sizing: border-box;
3211
- max-height: inherit;
3212
- overflow: auto;
3213
- }
3214
- .vuuTree-scrollingContentContainer {
3215
- box-sizing: inherit;
3216
- position: relative;
3217
- }
3218
- .vuuTree-scrollingContentContainer .vuuTreeNode {
3219
- line-height: 30px;
3220
- position: absolute;
3221
- top: 0;
3222
- left: 0;
3223
- right: 0;
3224
- will-change: transform;
3225
- }
3226
- .vuuTreeNode {
3227
- list-style: none;
3228
- }
3229
- .vuuTreeNode:not([aria-expanded]),
3230
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
3231
- --checkbox-border-color: black;
3232
- --checkbox-border-width: 1px;
3233
- --checkbox-tick: black;
3234
- --list-item-padding-left: 6px;
3235
- --svg-toggle: var(--tree-node-collapse);
3236
- align-items: center;
3237
- color: var(--list-item-text-color);
3238
- display: flex;
3239
- flex-wrap: nowrap;
3240
- height: var(--list-item-height);
3241
- line-height: var(--list-item-height);
3242
- padding: var(--list-item-padding);
3243
- padding-left: var(--padding-left);
3244
- position: relative;
3245
- cursor: default;
3246
- margin: 0;
3247
- white-space: nowrap;
3248
- }
3249
- .vuuTreeNode:not([aria-expanded]) {
3250
- --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
3251
- }
3252
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
3253
- --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
3254
- }
3255
- .vuuTreeNode-icon {
3256
- background-color: var(--tree-icon-color);
3257
- display: inline-block;
3258
- height: 18px;
3259
- margin-right: 6px;
3260
- -webkit-mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
3261
- mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
3262
- flex: 0 0 18px;
3263
- }
3264
- .vuuTreeNode[aria-expanded] {
3265
- flex-direction: column;
3266
- }
3267
- .vuuTreeNode[aria-expanded] {
3268
- flex-direction: column;
3269
- height: auto;
3270
- }
3271
- .vuuTreeNode > *[role=group] {
3272
- padding-left: 0px;
3273
- }
3274
- .vuuTreeNode {
3275
- padding-left: calc(var(--padding-left) + var(--tree-node-indent));
3276
- }
3277
- .vuuTreeNode[aria-level="2"] {
3278
- --tree-node-indent: 12px;
3279
- }
3280
- .vuuTreeNode[aria-level="3"] {
3281
- --tree-node-indent: 24px;
3282
- }
3283
- .vuuTreeNode[aria-level="4"] {
3284
- --tree-node-indent: 36px;
3285
- }
3286
- .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],
3287
- .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted] > div:first-child {
3288
- background-color: var(--list-hilited-bg);
3289
- }
3290
- .vuuTreeNode-toggle {
3291
- cursor: pointer;
3292
- }
3293
- .vuuTreeNode > .vuuTreeNode-toggle {
3294
- display: inline-block;
3295
- height: 100%;
3296
- left: 0;
3297
- position: absolute;
3298
- width: calc(var(--list-item-padding-left) + var(--tree-toggle-width));
3299
- }
3300
- .vuuTreeNode[aria-expanded] > .vuuTreeNode-label:after {
3301
- content: var(--list-item-header-twisty-content);
3302
- -webkit-mask: var(--svg-toggle) center center/8px 8px no-repeat;
3303
- mask: var(--svg-toggle) center center/8px 8px no-repeat;
3304
- background-color: var(--list-item-header-twisty-color);
3305
- height: 18px;
3306
- margin-top: -9px;
3307
- left: var(--tree-node-indent);
3308
- position: absolute;
3309
- top: var(--list-item-header-twisty-top);
3310
- transition: transform 0.3s;
3311
- width: 18px;
3312
- }
3313
- .vuuTreeNode[aria-selected=true] {
3314
- --list-item-header-twisty-color: var(--list-item-selected-color);
3315
- }
3316
- .vuuTreeNode:not(.focusVisible):focus {
3317
- background-color: rgba(0, 0, 0, 0.1);
3318
- }
3319
- .vuuTreeNode:not([aria-expanded]).focusVisible:before,
3320
- .vuuTreeNode[aria-expanded].focusVisible > div:first-child:before {
3321
- content: "";
3322
- position: absolute;
3323
- top: 0px;
3324
- left: var(--tree-focus-offset, 0px);
3325
- right: 0;
3326
- bottom: 0px;
3327
- border: dotted var(--focus-visible-border-color) 2px;
3328
- background-color: var(--list-hilited-bg);
3329
- }
3330
- .vuuTreeNode[aria-expanded=false] > *:first-child:after {
3331
- --svg-toggle: var(--tree-node-expand);
3332
- }
3333
- .vuuTreeNode[aria-expanded=true] > *:first-child:after {
3334
- transform: var(--tree-node-expanded-transform);
3335
- }
3336
- .vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],
3337
- .vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true] > div:first-child {
3338
- --checkbox-border-color: var(--list-item-selected-color);
3339
- --checkbox-tick: var(--list-item-selected-color);
3340
- --focus-visible-border-color: var(--list-item-selected-color);
3341
- background-color: var(--list-item-selected-bg);
3342
- color: var(--list-item-selected-color);
3343
- }
3344
- .with-checkbox .vuuTreeNode {
3345
- padding-left: 28px;
3346
- }
3347
- .with-checkbox .vuuTreeNode:before {
3348
- border-style: solid;
3349
- border-width: var(--checkbox-border-width);
3350
- border-color: var(--checkbox-border-color);
3351
- content: "";
3352
- height: 12px;
3353
- left: 3px;
3354
- margin-top: -7px;
3355
- position: absolute;
3356
- top: 50%;
3357
- width: 12px;
3358
- }
3359
-
3360
- /* ../vuu-layout/src/layout-view/View.css */
3361
- .vuuView {
3362
- border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
3363
- border-width: var(--vuuView-borderWidth, 1px);
3364
- border-style: var(--vuuView-borderStyle, none);
3365
- display: flex;
3366
- flex-direction: column;
3367
- margin: var(--vuuView-margin, 0px);
3368
- min-height: 50px;
3369
- min-width: 50px;
3370
- outline: none;
3371
- overflow: hidden;
3372
- position: relative;
3373
- }
3374
- .vuuView.focus-visible:after {
3375
- content: "";
3376
- position: absolute;
3377
- top: 0;
3378
- left: 0;
3379
- right: 0;
3380
- bottom: 0;
3381
- border: dotted cornflowerblue 2px;
3382
- }
3383
- .vuuView.dragging {
3384
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3385
- }
3386
- .vuuView-main {
3387
- display: flex;
3388
- flex-direction: var(--vuuView-flexDirection, column);
3389
- flex-wrap: var(--vuuView-flex-wrap, nowrap);
3390
- flex: 1;
3391
- overflow: hidden;
3392
- position: relative;
3393
- }
3394
- .vuuView-main > * {
3395
- flex-basis: auto;
3396
- flex-grow: var(--vuuView-flex-grow, 1);
3397
- flex-shrink: var(--vuuView-flex-shrink, 1);
3398
- }
3399
- .vuuView-collapsed .vuuView-main {
3400
- display: none;
3401
- }
3402
- .vuuView-collapsed + .Splitter {
3403
- display: none;
3404
- }
3405
- .vuuView-collapsed .Toolbar-vertical {
3406
- border-right: solid 1px var(--grey40);
3407
- }
3408
- .vuuView-collapsed .Toolbar-vertical .toolbar-title {
3409
- display: none;
3410
- }
3411
-
3412
- /* ../vuu-layout/src/layout-header/Header.css */
3413
- .vuuHeader {
3414
- --saltButton-height: 24px;
3415
- --saltButton-width: 24px;
3416
- }
3417
- .salt-density-high .vuuHeader {
3418
- --saltToolbarField-marginTop: 0;
3419
- }
3420
-
3421
- /* ../vuu-layout/src/measured-container/MeasuredContainer.css */
3422
- .vuuMeasuredContainer {
3423
- height: var(--vuuMeasuredContainer-height, var(--measured-css-height));
3424
- width: var(--measured-css-width);
3425
- }
3426
-
3427
- /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
3428
- .vuuOverflowContainer {
3429
- --item-gap: 2px;
3430
- --overflow-direction: row;
3431
- --overflow-width: 0px;
3432
- --border-size: calc((var(--overflow-container-height) - 24px) / 2);
3433
- background-color: var(--vuuOverflowContainer-background);
3434
- height: var(--overflow-container-height);
3435
- }
3436
- .vuuOverflowContainer-horizontal {
3437
- --item-align: center;
3438
- --item-margin: 0 var(--item-gap) 0 var(--item-gap);
3439
- }
3440
- .vuuOverflowContainer-vertical {
3441
- --item-align: stretch;
3442
- --item-margin: var(--item-gap) 0 var(--item-gap) 0;
3443
- --overflow-direction: column;
3444
- }
3445
- .vuuOverflowContainer-wrapContainer {
3446
- align-items: var(--item-align);
3447
- display: flex;
3448
- flex-direction: var(--overflow-direction);
3449
- flex-wrap: wrap;
3450
- height: var(--overflow-container-height);
3451
- min-width: 44px;
3452
- overflow: hidden;
3453
- position: relative;
3454
- width: 100%;
3455
- }
3456
- .vuuOverflowContainer-wrapContainer.overflowed {
3457
- --overflow-order: 2;
3458
- --overflow-left: auto;
3459
- --overflow-position: relative;
3460
- --overflow-width: auto;
3461
- }
3462
- .vuuOverflowContainer-item {
3463
- align-items: inherit;
3464
- display: flex;
3465
- order: 1;
3466
- position: relative;
3467
- height: var(--overflow-container-height);
3468
- margin: var(--item-margin);
3469
- }
3470
- .vuuOverflowContainer-item[data-align=right] {
3471
- margin-left: auto;
3472
- }
3473
- .vuuOverflowContainer-item.wrapped {
3474
- --overflow-item-bg: #ccc;
3475
- order: 3;
3476
- }
3477
- .vuuOverflowContainer-item.vuuDraggable-dragAway,
3478
- .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
3479
- display: none;
3480
- }
3481
- .vuuOverflowContainer-item.vuuDropTarget-settling {
3482
- visibility: hidden;
3483
- }
3484
- .vuuOverflowContainer-OverflowIndicator {
3485
- align-items: center;
3486
- background-color: transparent;
3487
- display: flex;
3488
- height: var(--overflow-container-height);
3489
- height: var(--overflow-container-height);
3490
- order: var(--overflow-order, 99);
3491
- overflow: hidden;
3492
- left: var(--overflow-left, 100%);
3493
- position: var(--overflow-position, absolute);
3494
- width: var(--overflow-width);
3495
- }
3496
- .vuuDraggable-vuuOverflowContainer {
3497
- align-items: center;
3498
- display: flex;
3499
- height: 44px;
3500
- }
3501
-
3502
- /* ../vuu-layout/src/palette/Palette.css */
3503
- .vuuPalette {
3504
- --vuuList-borderStyle: none;
3505
- }
3506
- .vuuPalette-horizontal {
3507
- align-items: center;
3508
- display: flex;
3509
- }
3510
- .vuuPaletteItem {
3511
- --vuu-icon-color: var(--salt-text-primary-foreground);
3512
- --vuu-icon-left: 0;
3513
- --vuu-icon-size: 16px;
3514
- --vuu-icon-top: 11px;
3515
- --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
3516
- border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
3517
- padding-left: 12px;
3518
- font-size: 12px;
3519
- font-weight: 600;
3520
- }
3521
- .vuuSimpleDraggableWrapper > .vuuPaletteItem {
3522
- --vuu-icon-color: var(--salt-selectable-foreground);
3523
- }
3524
- .salt-theme .vuuPaletteItem {
3525
- font-size: 11px;
3526
- font-weight: normal;
3527
- }
3528
-
3529
- /* ../vuu-layout/src/stack/Stack.css */
3530
- .Tabs {
3531
- display: flex;
3532
- box-sizing: border-box;
3533
- flex-direction: column;
3534
- }
3535
- .Tabs-horizontal {
3536
- --vuu-tabs-border-style: none solid none none;
3537
- flex-direction: row;
3538
- }
3539
- .Tabs .Toolbar:before {
3540
- left: 0;
3541
- width: 100%;
3542
- bottom: 0;
3543
- height: 1px;
3544
- content: "";
3545
- position: absolute;
3546
- background: var(--grey60);
3547
- }
3548
- .vuuTabHeader {
3549
- --saltTabs-activationIndicator-background: transparent;
3550
- --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
3551
- border-color: var(--salt-container-primary-borderColor);
3552
- border-style: var(--vuu-tabs-border-style, none none solid none);
3553
- border-width: 1px;
3554
- }
3555
- .vuuTabHeader + .hwFlexbox,
3556
- .vuuTabHeader + * {
3557
- flex: 1;
3558
- }
3559
- .vuuTabHeader + .vuuView > .vuuHeader {
3560
- height: 0;
3561
- overflow: hidden;
3562
- }
3563
- .Layout-svg-button {
3564
- --spacing-medium: 5px;
3565
- }
3566
-
3567
- /* ../vuu-layout/src/toolbar/Toolbar.css */
3568
- .vuuToolbar {
3569
- background: var(--vuuToolbar-background, inherit);
3570
- height: var(--vuuToolbar-height, 36px);
3571
- }
3572
- .vuuToolbarItem {
3573
- height: 100%;
3574
- }
3575
- .vuuToolbarItem.vuuFocusVisible {
3576
- outline-color: var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));
3577
- outline-style: dashed;
3578
- outline-width: 1px;
3579
- outline-offset: -1px;
3580
- }
3581
-
3582
- /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
3583
- [data-design-mode=true] .Component {
3584
- filter: grayscale(100%);
3585
- opacity: 0.4;
3586
- }
3587
- [data-design-mode=true] .Component:after {
3588
- color: black;
3589
- content: "Component";
3590
- height: 12px;
3591
- background-color: yellow;
3592
- }
3593
- .LayoutConfigurator {
3594
- --margin-color: #f3cea5;
3595
- --border-color: #fddda0;
3596
- --padding-color: #c6d092;
3597
- --content-color: #8cb6c0;
3598
- display: flex;
3599
- flex-direction: column;
3600
- align-items: stretch;
3601
- background-color: var(--margin-color);
3602
- }
3603
- .LayoutConfigurator .layout-outer {
3604
- flex: 1 1 auto;
3605
- display: flex;
3606
- flex-direction: column;
3607
- align-items: stretch;
3608
- }
3609
- .LayoutBox {
3610
- --hw-control-font-size: 13px;
3611
- --hw-text-input-bg: rgba(255, 255, 255, 0.3);
3612
- --hwTextInput-padding: 3px;
3613
- --hw-text-input-position: absolute;
3614
- --hwTextInput-width: 30px;
3615
- flex: 1 1 auto;
3616
- }
3617
- .LayoutBox > .layout-top {
3618
- flex: 0 0 40px;
3619
- padding-left: 12px;
3620
- display: flex;
3621
- flex-direction: row;
3622
- align-items: center;
3623
- position: relative;
3624
- }
3625
- .LayoutBox > .layout-bottom {
3626
- flex: 0 0 40px;
3627
- position: relative;
3628
- display: flex;
3629
- flex-direction: row;
3630
- align-items: center;
3631
- }
3632
- .LayoutBox > .layout-inner > .layout-right,
3633
- .LayoutBox > .layout-inner > .layout-left {
3634
- flex: 0 0 40px;
3635
- display: flex;
3636
- flex-direction: column;
3637
- justify-content: center;
3638
- align-items: center;
3639
- }
3640
- .layout-top,
3641
- .layout-bottom {
3642
- --hw-text-input-margin: 0 0 0 -15px;
3643
- }
3644
- .layout-top > .layout-input,
3645
- .layout-bottom > .layout-input {
3646
- left: 50%;
3647
- }
3648
- .LayoutBox > .layout-inner {
3649
- flex: 1 1 auto;
3650
- display: flex;
3651
- flex-direction: row;
3652
- align-items: stretch;
3653
- }
3654
- .LayoutBox.layout-margin {
3655
- background-color: var(--margin-color);
3656
- border: dashed 2px black;
3657
- }
3658
- .LayoutBox.layout-border {
3659
- background-color: var(--border-color);
3660
- border: solid 2px black;
3661
- }
3662
- .LayoutBox.layout-padding {
3663
- background-color: var(--padding-color);
3664
- border: dashed 2px black;
3665
- }
3666
- .LayoutBox .layout-content {
3667
- flex: 1 1 auto;
3668
- background-color: var(--content-color);
3669
- border: solid 2px #808080;
3670
- }
3671
- .LayoutBox .layout-title {
3672
- color: #161616;
3673
- font-size: 11px;
3674
- left: 4px;
3675
- line-height: 15px;
3676
- position: absolute;
3677
- top: 1px;
3678
- }
3679
-
3680
- /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
3681
- .hwLayoutTreeViewer {
3682
- }
3683
- .hwLayoutTreeNode {
3684
- cursor: default;
3685
- }
3686
- .hwLayoutTreeNode:hover {
3687
- background-color: rgba(255, 255, 255, 0.2);
3688
- }
3689
- .hwLayoutTreeNode[aria-selected=true] {
3690
- background-color: cornflowerblue;
3691
- color: white;
3692
- }
3693
-
3694
- /* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
3695
- .saveLayoutPanel {
3696
- --salt-selectable-foreground-hover: #6d18bdc3;
3697
- --salt-selectable-foreground-selected: #6D18BD;
3698
- --salt-selectable-borderColor-selected: #6D18BD;
3699
- --saltInputLegacy-fontSize: 12px;
3700
- --salt-text-label-fontSize: 10px;
3701
- --saltFormFieldLegacy-label-paddingLeft: 0;
3702
- --saltFormField-label-fontWeight: 400;
3703
- }
3704
- .saveLayoutPanel-panelContainer {
3705
- display: flex;
3706
- padding: 16px;
3707
- flex-direction: column;
3708
- align-items: flex-start;
3709
- gap: 16px;
3710
- }
3711
- .saveLayoutPanel-panelContent {
3712
- display: flex;
3713
- align-items: flex-start;
3714
- gap: 32px;
3715
- }
3716
- .saveLayoutPanel-formContainer {
3717
- display: flex;
3718
- width: 217px;
3719
- flex-direction: column;
3720
- align-items: flex-start;
3721
- gap: 16px;
3722
- }
3723
- .saveLayoutPanel-formField {
3724
- display: flex;
3725
- flex-direction: column;
3726
- gap: 1px;
3727
- }
3728
- .saveLayoutPanel-inputText {
3729
- color: var(--light-text-secondary, #606477);
3730
- font-feature-settings:
3731
- "ss02" on,
3732
- "ss01" on,
3733
- "salt" on,
3734
- "liga" off;
3735
- font-size: 12px;
3736
- font-weight: 400;
3737
- line-height: 16px;
3738
- border: none;
3739
- padding-left: 4px;
3740
- width: 100%;
3741
- outline: none;
3742
- }
3743
- .saveLayoutPanel-settingsGroup {
3744
- display: flex;
3745
- flex-wrap: wrap;
3746
- align-items: flex-end;
3747
- gap: 10px;
3748
- width: 100%;
3749
- line-height: 16px;
3750
- }
3751
- .saveLayoutPanel-screenshotContainer {
3752
- display: flex;
3753
- width: 304px;
3754
- height: 208px;
3755
- padding: 11px 15.5px;
3756
- justify-content: center;
3757
- align-items: center;
3758
- border: 1px solid #E8E8E8;
3759
- background: var(--dark-text-primary, #FFF);
3760
- }
3761
- .saveLayoutPanel-screenshot {
3762
- display: flex;
3763
- justify-content: center;
3764
- align-items: center;
3765
- background: lightgray 50% / cover no-repeat;
3766
- width: 273px;
3767
- height: 186px;
3768
- flex-shrink: 0;
3769
- }
3770
- .saveLayoutPanel-buttonsContainer {
3771
- display: flex;
3772
- padding-top: 8px;
3773
- justify-content: flex-end;
3774
- align-items: flex-start;
3775
- gap: 8px;
3776
- align-self: stretch;
3777
- }
3778
- .saveLayoutPanel-cancelButton,
3779
- .saveLayoutPanel-saveButton {
3780
- display: flex;
3781
- height: fit-content;
3782
- padding: 4px 8px;
3783
- align-items: flex-start;
3784
- gap: 8px;
3785
- border-radius: 6px;
3786
- font-feature-settings:
3787
- "ss02" on,
3788
- "ss01" on,
3789
- "salt" on,
3790
- "liga" off;
3791
- font-size: 12px;
3792
- font-style: normal;
3793
- font-weight: 700;
3794
- line-height: 133.333%;
3795
- letter-spacing: 0.48px;
3796
- text-transform: uppercase;
3797
- }
3798
- .saveLayoutPanel-cancelButton {
3799
- color: var(--actionable-primary-foreground-default, #606477);
3800
- background: var(--actionable-primary-background-default, #FFF);
3801
- }
3802
- .saveLayoutPanel-saveButton {
3803
- background: #6D18BD;
3804
- border-color: #6D18BD;
3805
- color: white;
3806
- }
3807
- .saveLayoutPanel-saveButton.saltButton:disabled {
3808
- background: #6D18BD;
3809
- border-color: #6D18BD;
3810
- color: white;
3811
- opacity: 0.3;
3812
- }
3813
- .saveLayoutPanel-saveButton.saltButton:hover {
3814
- background: #F37880;
3815
- border-color: #F37880;
3816
- color: white;
3817
- }
3818
-
3819
- /* ../vuu-filters/src/filter-builder-menu/FilterBuilderMenu.css */
3820
- .vuuFilterBuilderMenu {
3821
- margin: 0;
3822
- }
3823
- .vuuFilterBuilderMenu-trigger {
3824
- display: inline-block;
3825
- height: 26px;
3826
- width: 0px;
3827
- }
3828
- .vuuFilterBuilderMenuList {
3829
- --vuuList-borderStyle: none;
3830
- }
3831
- .vuuListItem.vuuMenuButton {
3832
- color: var(--vuu-color-gray-50);
3833
- font-size: 9px;
3834
- padding: 0 8px;
3835
- }
3836
- .vuuListItem.vuuMenuButton:after {
3837
- border-radius: 6px;
3838
- content: "";
3839
- position: absolute;
3840
- height: 16px;
3841
- background-color: transparent;
3842
- left: 4px;
3843
- right: 4px;
3844
- border: solid 1px var(--salt-actionable-primary-foreground);
3845
- }
3846
-
3847
- /* ../vuu-filters/src/filter-clause/ExpandoCombobox.css */
3848
- .vuuExpandoCombobox {
3849
- --expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);
3850
- --expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);
3851
- --saltInput-outline: none;
3852
- --saltInput-fontSize: var(--expando-combobox-fontSize);
3853
- --saltInput-height: var(--expando-combobox-height);
3854
- --saltInput-minWidth: 4px;
3855
- display: inline-flex;
3856
- flex-direction: column;
3857
- height: var(--expando-combobox-height);
3858
- min-width: 4px;
3859
- padding: 0;
3860
- }
3861
- .vuuExpandoCombobox .saltInput {
3862
- background-color: transparent;
3863
- position: absolute;
3864
- }
3865
- .vuuExpandoCombobox .vuuDropdown {
3866
- height: 100%;
3867
- }
3868
- .vuuExpandoCombobox-Input.saltInput {
3869
- border: none;
3870
- left: 0px;
3871
- margin: 0;
3872
- min-height: 100%;
3873
- padding: 0;
3874
- right: 0px;
3875
- width: auto;
3876
- }
3877
- .vuuExpandoCombobox .saltInput-input {
3878
- border: none;
3879
- box-sizing: content-box;
3880
- display: block;
3881
- flex: 1;
3882
- font: inherit;
3883
- margin: 0;
3884
- min-width: 0;
3885
- outline: none;
3886
- padding: 0;
3887
- }
3888
- .vuuExpandoCombobox:before {
3889
- content: attr(data-text);
3890
- display: block;
3891
- font-size: var(--expando-combobox-fontSize);
3892
- height: 0px;
3893
- overflow: hidden;
3894
- white-space: pre-wrap;
3895
- }
3896
-
3897
- /* ../vuu-filters/src/filter-clause/CloseButton.css */
3898
- .vuu-theme {
3899
- --salt-actionable-secondary-background: #ffffff;
3900
- --salt-actionable-secondary-background-hover: #f37880;
3901
- --salt-actionable-secondary-background-disabled: #ffffff;
3902
- --salt-actionable-secondary-foreground: #606477;
3903
- --salt-actionable-secondary-foreground-hover: #15171b;
3904
- --salt-actionable-secondary-foreground-active: #ffffff;
3905
- --salt-actionable-secondary-foreground-disabled: #9b9ea8;
3906
- }
3907
- .vuuFilterClause-closeButton {
3908
- height: 16px;
3909
- width: 16px;
3910
- border-radius: 6px;
3911
- padding: 0;
3912
- }
3913
- .vuuFilterClause-closeButton:focus-visible {
3914
- }
3915
- .vuuFilterClause-closeButton:not(:hover) {
3916
- background: var(--salt-actionable-secondary-background);
3917
- }
3918
-
3919
- /* ../vuu-filters/src/filter-clause/FilterClauseEditor.css */
3920
- .vuuFilterClause {
3921
- --vuuExpandoInput-top: 0;
3922
- --vuuExpandoInput-height: 16px;
3923
- --vuuExpandoCombobox-height: 16px;
3924
- --saltButton-height: 16px;
3925
- --saltButton-width: 16px;
3926
- display: flex;
3927
- flex-direction: row;
3928
- width: fit-content;
3929
- border-color: var(--vuu-color-gray-45);
3930
- border-radius: 6px;
3931
- border-width: 1px;
3932
- border-style: solid;
3933
- background: #ffffff;
3934
- --salt-focused-outlineStyle: dotted;
3935
- }
3936
- .vuuFilterClause:focus-within {
3937
- border-color: var(--vuu-color-purple-10);
3938
- }
3939
- .vuu-density-high .vuuFilterClause {
3940
- padding: 4px 8px;
3941
- gap: 4px;
3942
- --salt-text-lineHeight: 12px;
3943
- --saltInputLegacy-fontSize: 12px;
3944
- --saltInputLegacy-minWidth: 12px;
3945
- }
3946
- .vuu-density-high .vuuFilterClause .saltInput {
3947
- padding: 0;
3948
- min-height: 16px;
3949
- height: 16px;
3950
- }
3951
- .vuuFilterClause .vuuExpandoCombobox {
3952
- flex-basis: auto;
3953
- flex-shrink: 0;
3954
- flex-grow: 0;
3955
- }
3956
- .vuuFilterClauseOperator-hidden {
3957
- display: none;
3958
- }
3959
- .vuuFilterClause :not(.vuuFilterClauseNumericValue) .saltInput {
3960
- }
3961
- .vuuFilterClause .saltInput-focused,
3962
- .vuuFilterClause .saltTokenizedInput-focused {
3963
- outline: none;
3964
- color: var(--salt-text-primary-foreground);
3965
- }
3966
- .vuuFilterClause .saltInput-input::selection {
3967
- color: #ffffff;
3968
- }
3969
- .vuu-theme .saltList {
3970
- --list-borderWidth: 1px;
3971
- --list-borderStyle: solid;
3972
- border-radius: 4px;
3973
- box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
3974
- }
3975
- .saltListItem[aria-selected=true]:not(.saltListItem-checkbox) {
3976
- --list-item-background: var(--list-item-background-active);
3977
- color: var(--list-item-text-color-active);
3978
- }
3979
- .saltTokenizedInput {
3980
- height: 16px;
3981
- min-height: 16px;
3982
- }
3983
- .saltTokenizedInput .saltInputPill {
3984
- --pill-fontSize: 12px;
3985
- --saltButton-borderStyle: none;
3986
- --pill-background: none;
3987
- height: 16px;
3988
- margin: 0;
3989
- }
3990
- .saltTokenizedInput-pillGroup {
3991
- padding: 0;
3992
- height: 16px;
3993
- }
3994
-
3995
- /* ../vuu-filters/src/filter-pill-menu/FilterPillMenu.css */
3996
- .vuuFilterPillMenu {
3997
- top: -1px;
3998
- }
3999
-
4000
- /* ../vuu-filters/src/filter-pill/FilterPill.css */
4001
- .vuuFilterPill {
4002
- --vuuToolbarItem-outlineColor: white;
4003
- align-items: center;
4004
- background: var(--salt-taggable-background);
4005
- border: solid 1px var(--salt-taggable-foreground);
4006
- border-radius: 26px;
4007
- color: var(--vuu-color-gray-50);
4008
- display: inline-flex;
4009
- height: 26px;
4010
- max-width: var(--vuuFilterPill-maxWidth, 200px);
4011
- padding: 0 8px;
4012
- position: relative;
4013
- user-select: none;
4014
- outline: none;
4015
- }
4016
- .vuuFilterPill[aria-selected=true] {
4017
- --vuuPopupMenu-iconColor: white;
4018
- --salt-text-background-selected: var(--vuu-color-blue-40);
4019
- --salt-text-color-selected: var(--salt-text-primary-foreground);
4020
- --saltInput-background-hover: var(--salt-taggable-background-active);
4021
- --saltInput-color: var(--salt-taggable-foreground-active);
4022
- background: var(--salt-taggable-background-active);
4023
- color: white;
4024
- }
4025
- .vuuFilterPill:not([aria-selected="true"]):hover {
4026
- --vuuPopupMenu-iconColor: var(--vuu-color-gray-80);
4027
- background-color: var(--salt-taggable-background-hover);
4028
- border-color: var(--salt-taggable-background-hover);
4029
- color: var(--vuu-color-gray-80);
4030
- }
4031
-
4032
- /* ../vuu-filters/src/filter-bar/FilterBar.css */
4033
- .vuuFilterBar {
4034
- --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>');
4035
- --vuuToolbar-height: 26px;
4036
- --salt-container-primary-borderColor: var(--vuu-color-purple-10);
4037
- --saltButton-height: 26px;
4038
- --saltButton-width: 26px;
4039
- align-items: center;
4040
- background-color: var(--salt-container-secondary-background);
4041
- border-bottom: solid 1px #D6D7DA;
4042
- display: flex;
4043
- gap: 4px;
4044
- height: 33px;
4045
- padding: 3px 8px;
4046
- }
4047
- .vuuFilterbar-icon {
4048
- display: inline-block;
4049
- height: 16px;
4050
- width: 16px;
4051
- }
4052
- .vuuFilterBar [data-icon=tune] {
4053
- --vuu-icon-size: 16px;
4054
- --vuu-icon-svg: var(--vuu-svg-tune);
4055
- }
4056
- .vuuFilterBar [data-icon=plus] {
4057
- --vuu-icon-size: 16px;
4058
- }
4059
- .vuuFilterBar .vuuToolbar {
4060
- flex: 1 1 auto;
4061
- }
4062
-
4063
- /* ../vuu-filters/src/filter-input/FilterInput.css */
4064
- .salt-theme {
4065
- --vuuFilterEditor-lineHeight: 28px;
4066
- }
4067
- .salt-density-high {
4068
- --vuuFilterEditor-buttonWidth: 20px;
4069
- --vuuFilterEditor-height: 22px;
4070
- --vuuFilterEditor-lineHeight: 20px;
4071
- }
4072
- .vuuFilterInput {
4073
- --vuuFilterEditor-background: var(--salt-container-primary-background);
4074
- --vuuFilterEditor-color: var(--salt-text-primary-foreground);
4075
- --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
4076
- --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
4077
- --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
4078
- --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
4079
- --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
4080
- --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
4081
- --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
4082
- --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
4083
- --vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);
4084
- --vuuFilterEditor-suggestion-height: 24px;
4085
- --vuuFilterEditor-variableColor: blue;
4086
- align-items: center;
4087
- border-color: var(--salt-container-secondary-borderColor);
4088
- border-style: solid none;
4089
- border-width: 1px;
4090
- box-sizing: border-box;
4091
- display: flex;
4092
- height: var(--vuuFilterEditor-height, 30px);
4093
- }
4094
- .vuuFilterInput-Editor {
4095
- flex: 1 1 auto;
4096
- height: 100%;
4097
- }
4098
- .vuuFilterInput-FilterButton,
4099
- .vuuFilterInput-ClearButton {
4100
- --vuu-icon-size: 12px;
4101
- --saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px);
4102
- }
4103
- .vuuIllustration {
4104
- --vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);
4105
- background: var(--salt-container-secondary-background);
4106
- color: var(--salt-text-secondary-foreground);
4107
- }
4108
-
4109
- /* ../vuu-shell/src/layout-management/LayoutList.css */
4110
- .vuuLayoutList-header {
4111
- color: var(--light-text-primary, #15171B);
4112
- font-weight: 700;
4113
- letter-spacing: 0.48px;
4114
- text-transform: uppercase;
4115
- display: flex;
4116
- padding: 16px 0px;
4117
- align-items: center;
4118
- align-self: stretch;
4119
- border-bottom: 1px solid rgba(119, 124, 148, 0.10);
4120
- line-height: 200%;
4121
- }
4122
- .vuuLayoutList-groupName {
4123
- display: flex;
4124
- padding-top: 24px;
4125
- align-items: center;
4126
- align-self: stretch;
4127
- color: var(--light-text-secondary, #606477);
4128
- font-weight: 700;
4129
- letter-spacing: 0.48px;
4130
- line-height: 200%;
4131
- }
4132
- .vuuLayoutList-layoutContainer {
4133
- display: flex;
4134
- align-items: center;
4135
- gap: 8px;
4136
- padding: 8px 0px;
4137
- align-self: stretch;
4138
- flex: 1 1 auto;
4139
- cursor: pointer;
4140
- }
4141
- .vuuLayoutList-layoutName {
4142
- color: var(--light-text-primary, #15171B);
4143
- font-weight: 600;
4144
- line-height: 133.333%;
4145
- text-transform: capitalize;
4146
- }
4147
- .vuuLayoutList-screenshot {
4148
- width: 60px;
4149
- height: 45.6px;
4150
- border: 1px solid #D6D7DA;
4151
- }
4152
- .vuuLayoutList-layoutDetails {
4153
- color: var(--light-text-secondary, #606477);
4154
- font-size: 10px;
4155
- font-weight: 600;
4156
- line-height: 150%;
4157
- }
4158
-
4159
- /* ../vuu-shell/src/feature-list/FeatureList.css */
4160
- .vuuFeatureList {
4161
- background: var(--vuuFeatureList-background, var(--salt-container-primary-background));
4162
- height: 100%;
4163
- padding: 180px 32px 0 24px;
4164
- }
4165
- .vuuFeatureList-header {
4166
- font-size: 12px;
4167
- font-weight: 700;
4168
- }
4169
-
4170
- /* ../vuu-shell/src/left-nav/LeftNav.css */
4171
- .vuuLeftNav {
4172
- --salt-navigable-fontWeight-active: 700;
4173
- --vuuTab-background-selected: rgba(255, 255, 255, 0.10);
4174
- --vuuTab-hover-background: rgba(255, 255, 255, 0.10);
4175
- --vuuTab-before-content: none;
4176
- --vuuTab-borderRadius: 6px;
4177
- --vuuTab-height: 40px;
4178
- --vuuTab-padding: 0 0 0 48px;
4179
- --vuuTabstrip-fontWeight: 700;
4180
- --vuuTabstrip-width: 100%;
4181
- --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>');
4182
- --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>');
4183
- --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>');
4184
- --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>');
4185
- --vuu-light-text-primary: #15171b;
4186
- box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
4187
- margin-bottom: 4px;
4188
- position: relative;
4189
- transition: width .3s ease-in-out;
4190
- z-index: 0;
4191
- }
4192
- .vuuLeftNav-menu-full {
4193
- --menu-width: var(--nav-menu-expanded-width);
4194
- }
4195
- .vuuLeftNav-menu-icons {
4196
- --menu-width: var(--nav-menu-collapsed-width);
4197
- }
4198
- .vuuLeftNav-menu-icons-content {
4199
- --menu-width: var(--nav-menu-collapsed-width);
4200
- }
4201
- .vuuLeftNav-menu-full-content {
4202
- --menu-width: var(--nav-menu-expanded-width);
4203
- }
4204
- .vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,
4205
- .vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary {
4206
- display: block;
4207
- }
4208
- .vuuLeftNav-menu-primary {
4209
- background-color: #2A015F;
4210
- container-type: inline-size;
4211
- display: flex;
4212
- flex-direction: column;
4213
- height: 100%;
4214
- padding: 32px 16px;
4215
- transition: width ease .3s;
4216
- width: var(--menu-width, 100%);
4217
- }
4218
- .vuuLeftNav-menu-secondary {
4219
- flex: 1 1 auto;
4220
- height: 100%;
4221
- display: none;
4222
- position: absolute;
4223
- top: 0;
4224
- right: 0;
4225
- width: 240px;
4226
- z-index: -1;
4227
- }
4228
- .vuuLeftNav .vuuTabstrip {
4229
- margin-top: 102px;
4230
- }
4231
- .vuuLeftNav .vuuTab {
4232
- --vuuTab-focusVisible-color: pink;
4233
- --vuu-icon-color: white;
4234
- --vuu-icon-left: 12px;
4235
- --vuu-icon-size: 16px;
4236
- border-left: solid 4px transparent;
4237
- }
4238
- .vuuLeftNav .vuuTab-selected {
4239
- --vuu-icon-color: var(--salt-navigable-indicator-active);
4240
- border-left: solid 4px var(--salt-navigable-indicator-active);
4241
- }
4242
- .vuuLeftNav-logo {
4243
- display: flex;
4244
- flex: 0 0 auto;
4245
- justify-content: center;
4246
- }
4247
- .vuuLeftNav-main {
4248
- flex: 1 1 auto;
4249
- }
4250
- .vuuLeftNav-menu {
4251
- color: white;
4252
- margin-top: 102px;
4253
- padding: 0;
4254
- }
4255
- .vuuLeftNav [data-icon=demo] {
4256
- --vuu-icon-svg: var(--svg-demo);
4257
- }
4258
- .vuuLeftNav [data-icon=tables] {
4259
- --vuu-icon-svg: var(--svg-tables);
4260
- }
4261
- .vuuLeftNav [data-icon=templates] {
4262
- --vuu-icon-svg: var(--svg-templates);
4263
- }
4264
- .vuuLeftNav [data-icon=layouts] {
4265
- --vuu-icon-svg: var(--svg-layouts);
4266
- }
4267
- @container (max-width: 100px) {
4268
- .vuuTab {
4269
- --vuuTab-padding: 0 0 0 42px;
4270
- }
4271
- .vuuTab-main {
4272
- display: none !important;
4273
- }
4274
- }
4275
- .vuuLeftNav-buttonBar {
4276
- align-items: center;
4277
- display: flex;
4278
- flex: 0 0 100px;
4279
- justify-content: center;
4280
- }
4281
- .vuuLeftNav-toggleButton {
4282
- --vuu-icon-color: var(--vuu-light-text-primary);
4283
- --vuu-icon-left: 11px;
4284
- --vuu-icon-top: 10px;
4285
- --vuu-icon-size: 16px;
4286
- background-color: var(--salt-navigable-indicator-active);
4287
- border-width: 0;
4288
- border-radius: 18px;
4289
- height: 36px;
4290
- position: relative;
4291
- width: 36px;
4292
- }
4293
- .vuuLeftNav-toggleButton-open {
4294
- --vuu-icon-left: 9px;
4295
- }
4296
- .vuuLeftNav-drawer {
4297
- display: flex;
4298
- padding: 40px 32px 0px 24px;
4299
- flex-direction: column;
4300
- align-items: flex-start;
4301
- flex-shrink: 0;
4302
- align-self: stretch;
4303
- background: #FFF;
4304
- box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
4305
- height: 100%;
4306
- }
4307
-
4308
- /* ../vuu-shell/src/login/LoginPanel.css */
4309
- .vuuLoginPanel {
4310
- --hwTextInput-border: solid 1px #ccc;
4311
- --hwTextInput-height: 28px;
4312
- --hwTextInput-padding: 0 12px;
4313
- --hwTextInput-width: 100%;
4314
- --login-row-height: 60px;
4315
- align-content: center;
4316
- align-items: center;
4317
- border: solid 1px lightgray;
4318
- display: flex;
4319
- flex-direction: column;
4320
- gap: 24px;
4321
- justify-content: center;
4322
- justify-items: center;
4323
- margin: 0 auto;
4324
- padding: 48px 48px 24px 48px;
4325
- width: fit-content;
4326
- }
4327
- .vuuLoginPanel-login {
4328
- grid-column: 2/3;
4329
- align-self: end;
4330
- justify-self: end;
4331
- }
4332
-
4333
- /* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
4334
- .vuuSessionEditingForm {
4335
- display: flex;
4336
- flex-direction: column;
4337
- gap: 3px;
4338
- min-width: 400px;
4339
- padding: 6px;
4340
- }
4341
- .vuuSessionEditingForm-content {
4342
- display: flex;
4343
- flex-direction: column;
4344
- flex: 1 1 auto;
4345
- gap: 3px;
4346
- overflow: auto;
4347
- }
4348
- .vuuSessionEditingForm-field {
4349
- align-items: center;
4350
- display: flex;
4351
- height: 32px;
4352
- }
4353
- .vuuSessionEditingForm-fieldLabel {
4354
- flex: 0 0 50%;
4355
- }
4356
- .vuuSessionEditingForm-fieldValue {
4357
- max-width: 50%;
4358
- }
4359
- .vuuSessionEditingForm-fieldValue.vuuReadOnly {
4360
- font-weight: var(--salt-text-label-fontWeight-strong);
4361
- }
4362
- .vuuSessionEditingForm-buttonbar {
4363
- align-items: center;
4364
- border-top: solid 1px var(--salt-container-primary-borderColor);
4365
- display: flex;
4366
- justify-content: flex-end;
4367
- flex: 0 0 autox;
4368
- gap: 6px;
4369
- padding-top: 6px;
4370
- }
4371
- .vuuSessionEditingForm-errorBanner {
4372
- --vuu-icon-left: 3px;
4373
- --vuu-icon-size: 18px;
4374
- --vuu-icon-top: 3px;
4375
- border: solid 1px var(--salt-status-error-borderColor);
4376
- line-height: 24px;
4377
- padding: 0 6px 0 26px;
4378
- position: relative;
4379
- }
4380
-
4381
- /* ../vuu-shell/src/user-profile/UserPanel.css */
4382
- .vuuUserPanel {
4383
- background-color: white;
4384
- display: flex;
4385
- flex-direction: column;
4386
- max-height: 400px;
4387
- padding: 12px;
4388
- }
4389
- vuuUserPanel-history {
4390
- flex: 1 1 auto;
4391
- }
4392
- .vuuUserPanel-buttonBar {
4393
- --saltButton-width: 100%;
4394
- align-items: flex-end;
4395
- border-top: 1px solid var(--surface3);
4396
- display: flex;
4397
- flex: 0 0 32px;
4398
- justify-content: flex-start;
4399
- }
4400
- .btn-logout {
4401
- --hwButton-icon-left: 12px;
4402
- --hwButton-padding: 0 6px 0 24px;
4403
- padding-left: 24px;
4404
- }
4405
-
4406
- /* ../vuu-shell/src/user-profile/UserProfile.css */
4407
- .vuuUserProfile {
4408
- --svg-icon: var(--svg-user);
4409
- }
4410
-
4411
- /* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
4412
- .vuuThemeSwitch {
4413
- --saltButton-minWidth: 22px;
4414
- --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>');
4415
- --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>');
4416
- padding: 2px;
4417
- }
4418
- .salt-density-high .vuuThemeSwitch {
4419
- --saltButton-minWidth: 16px;
4420
- --saltButton-width: 18px;
4421
- --vuuThemeSwitch-iconSize: 16px;
4422
- }
4423
- .vuuThemeSwitch [data-icon] {
4424
- --vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
4425
- }
4426
- .vuuThemeSwitch [data-icon=light] {
4427
- --vuu-icon-svg: var(--svg-light);
4428
- }
4429
- .vuuThemeSwitch [data-icon=dark] {
4430
- --vuu-icon-svg: var(--svg-dark);
4431
- }
4432
- .vuuThemeSwitch .saltToggleButton {
4433
- height: 20px;
4434
- width: 20px;
4435
- }
4436
-
4437
- /* ../vuu-shell/src/app-header/AppHeader.css */
4438
- .vuuAppHeader {
4439
- align-items: center;
4440
- background: var(--vuuAppHeader-background, var(--salt-container-primary-background));
4441
- border-bottom: solid 1px var(--salt-container-secondary-borderColor);
4442
- display: flex;
4443
- height: 40px;
4444
- justify-content: flex-end;
4445
- }
4446
- .vuu-theme .vuuAppHeader {
4447
- border-radius: 8px;
4448
- border: 1px solid #D6D7DA;
4449
- height: 44px;
4450
- margin-bottom: 8px;
4451
- }
4452
-
4453
- /* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
4454
- .vuuContextPanel {
4455
- position: relative;
4456
- transition: width .3s ease-in-out;
4457
- width: var(--vuu-side-panel-width, 0px) !important;
4458
- z-index: 1;
4459
- }
4460
- .vuuContextPanel-expanded {
4461
- --vuu-side-panel-width: 300px !important;
4462
- --vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
4463
- --vuu-side-panel-padding: 24px;
4464
- }
4465
- .vuuContextPanel-overlay {
4466
- width: 0px !important;
4467
- }
4468
- .vuuContextPanel-inner {
4469
- background-color: var(--salt-container-primary-background);
4470
- box-shadow: var(--vuu-side-panel-shadow, none);
4471
- display: flex;
4472
- flex-direction: column;
4473
- height: 100%;
4474
- overflow: auto;
4475
- padding-bottom: 24px;
4476
- padding-top: 24px;
4477
- padding-left: var(--vuu-side-panel-padding, 0);
4478
- padding-right: var(--vuu-side-panel-padding, 0);
4479
- position: absolute;
4480
- right: 0;
4481
- top: 0;
4482
- transition-property:
4483
- padding-left,
4484
- padding-right,
4485
- width;
4486
- transition-duration: .3s;
4487
- transition-timing-function: ease-in-out;
4488
- width: var(--vuu-side-panel-width, 0px);
4489
- }
4490
- .vuuContextPanel-header {
4491
- align-items: center;
4492
- display: flex;
4493
- flex-wrap: nowrap;
4494
- flex: 0 0 27px;
4495
- justify-content: space-between;
4496
- }
4497
- .vuuContextPanel-title {
4498
- font-size: 20px;
4499
- font-weight: 700;
4500
- white-space: nowrap;
4501
- }
4502
- .vuuContextPanel-content {
4503
- flex: 1 1 auto;
4504
- width: 100%;
4505
- }
4506
-
4507
- /* ../vuu-shell/src/shell.css */
4508
- .vuuShell {
4509
- background-color: var(--vuu-color-gray-25);
4510
- height: var(--vuuShell-height, 100vh);
4511
- width: var(--vuuShell-width, 100vw);
4512
- }
4513
- .vuuShell-mainTabs {
4514
- background: var(--salt-container-primary-background);
4515
- }
4516
- .vuuShell-palette {
4517
- --vuuView-border: none;
4518
- --vuuView-margin: 0;
4519
- }
4520
- .vuuShell-warningPlaceholder {
4521
- background-color: var(--salt-container-background-high);
4522
- height: 100%;
4523
- }
4524
- .vuuToolbarProxy {
4525
- background: var(--salt-container-primary-background);
4526
- }
4527
-
4528
1
  /* src/dialog/Dialog.css */
4529
2
  .vuuDialog {
4530
3
  background: var(--salt-container-primary-background);