@vuu-ui/vuu-table 0.8.4-debug → 0.8.5-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
@@ -20,6 +20,1196 @@
20
20
  height: var(--columnResizer-height, calc(100% + 1px));
21
21
  }
22
22
 
23
+ /* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
24
+ .vuuEditableLabel {
25
+ --saltInput-minWidth: 14px;
26
+ --saltInput-position: absolute;
27
+ --editableLabel-padding: var(--saltEditableLabel-padding, 6px);
28
+ --editableLabel-height: var(--saltEditableLabel-height, 26px);
29
+ color: inherit;
30
+ cursor: default;
31
+ display: flex;
32
+ flex-direction: column;
33
+ font-size: var(--salt-text-fontSize);
34
+ height: var(--editableLabel-height);
35
+ justify-content: center;
36
+ outline: none;
37
+ padding: 0 var(--editableLabel-padding);
38
+ position: relative;
39
+ z-index: var(--salt-zIndex-default);
40
+ }
41
+ .vuuEditableLabel:before {
42
+ content: attr(data-text);
43
+ display: block;
44
+ height: 0px;
45
+ visibility: hidden;
46
+ white-space: pre-wrap;
47
+ }
48
+ .vuuEditableLabel .saltInput {
49
+ font-weight: var(--salt-text-fontWeight);
50
+ left: var(--editableLabel-padding, 0);
51
+ padding: 0;
52
+ outline-style: none;
53
+ right: var(--editableLabel-padding, 0);
54
+ }
55
+ .vuuEditableLabel-input {
56
+ outline: none;
57
+ }
58
+
59
+ /* ../vuu-layout/src/dock-layout/Drawer.css */
60
+ .vuuDrawer {
61
+ --drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);
62
+ --vuu-close-icon-svg: var(--svg-chevron-double-right);
63
+ transition: flex-basis;
64
+ transition-duration: var(--drawer-transition-duration);
65
+ position: relative;
66
+ z-index: 1;
67
+ flex-basis: 0;
68
+ flex-grow: 1;
69
+ flex-shrink: 1;
70
+ min-width: 0;
71
+ min-height: 0;
72
+ display: flex;
73
+ }
74
+ .vuuDrawer-peekaboo {
75
+ flex-basis: var(--drawer-peek-size);
76
+ flex-grow: 0;
77
+ flex-shrink: 0;
78
+ }
79
+ .vuuDrawer-inline.vuuDrawer-open {
80
+ flex-basis: var(--drawer-size);
81
+ flex-grow: 0;
82
+ flex-shrink: 0;
83
+ }
84
+ .vuuDrawer-liner {
85
+ background-color: var(--drawer-bg);
86
+ overflow: hidden;
87
+ position: relative;
88
+ }
89
+ .vuuDrawer-content {
90
+ height: 100%;
91
+ overflow: hidden;
92
+ position: absolute;
93
+ top: 0;
94
+ right: var(--drawer-peek-size);
95
+ transition: right;
96
+ transition-duration: var(--drawer-transition-duration);
97
+ width: 100%;
98
+ flex: 1 1 100%;
99
+ }
100
+ .vuuDrawer-open .vuuDrawer-content {
101
+ right: 0;
102
+ }
103
+ .vuuDrawer-left {
104
+ border-right: var(--drawer-leading-edge-border);
105
+ }
106
+ .vuuDrawer-right {
107
+ border-left: var(--drawer-leading-edge-border);
108
+ }
109
+ .vuuDrawer-top {
110
+ border-bottom: var(--drawer-leading-edge-border);
111
+ }
112
+ .vuuDrawer-bottom {
113
+ border-top: var(--drawer-leading-edge-border);
114
+ }
115
+ .vuuDrawer-left .vuuDrawer-liner,
116
+ .vuuDrawer-right .vuuDrawer-liner {
117
+ height: 100%;
118
+ transition: width;
119
+ }
120
+ .vuuDrawer-top .vuuDrawer-liner,
121
+ .vuuDrawer-bottom .vuuDrawer-liner {
122
+ width: 100%;
123
+ transition: height;
124
+ }
125
+ .vuuDrawer-inline .vuuDrawer-liner {
126
+ width: 100%;
127
+ height: 100%;
128
+ }
129
+ .vuuDrawer-over .vuuDrawer-liner {
130
+ position: absolute;
131
+ transition-duration: 0.4s;
132
+ }
133
+ .vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner {
134
+ top: 0;
135
+ left: 0;
136
+ width: 0;
137
+ }
138
+ .vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner {
139
+ top: 0;
140
+ right: 0;
141
+ width: 0;
142
+ }
143
+ .vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner {
144
+ height: 0;
145
+ top: 0;
146
+ left: 0;
147
+ }
148
+ .vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner {
149
+ bottom: 0;
150
+ height: 0;
151
+ left: 0;
152
+ }
153
+ .vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
154
+ .vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
155
+ width: var(--drawer-peek-size);
156
+ }
157
+ .vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
158
+ .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
159
+ height: var(--drawer-peek-size);
160
+ }
161
+ .vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
162
+ .vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
163
+ width: var(--drawer-size);
164
+ }
165
+ .vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
166
+ .vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
167
+ height: var(--drawer-size);
168
+ }
169
+ .vuuDrawer-top,
170
+ .vuuDrawer-left {
171
+ order: 0;
172
+ }
173
+ .vuuDrawer-bottom,
174
+ .vuuDrawer-right {
175
+ order: 99;
176
+ }
177
+ .vuuDrawer-left,
178
+ .vuuDrawer-right {
179
+ flex-direction: column;
180
+ }
181
+ .vuuToggleButton-container {
182
+ --saltButton-height: 28px;
183
+ --saltButton-width: 28px;
184
+ --vuu-icon-size: 12px;
185
+ flex: 0 0 28px;
186
+ }
187
+ .vuuDrawer-open {
188
+ --vuu-close-icon-svg: var(--svg-chevron-double-left);
189
+ }
190
+
191
+ /* ../vuu-layout/src/dock-layout/DockLayout.css */
192
+ .vuuDockLayout {
193
+ --chest-bg: var(--hw-chest-bg, inherit);
194
+ --drawer-bg: var(--hw-drawer-bg, inherit);
195
+ --drawer-size: var(--hw-drawer-size, 200px);
196
+ --drawer-peek-size: var(--hw-drawer-peek-size, 32px);
197
+ --drawer-transition-duration: var(--hw-drawer-transition-duration, 0.4s);
198
+ background-color: var(--chest-bg);
199
+ display: flex;
200
+ }
201
+ .vuuDockLayout-horizontal {
202
+ flex-direction: row;
203
+ }
204
+ .vuuDockLayout-vertical {
205
+ flex-direction: column;
206
+ }
207
+ .vuuDockLayout-content {
208
+ background-color: var(--chest-bg);
209
+ flex-grow: 1;
210
+ flex-shrink: 1;
211
+ overflow: hidden;
212
+ display: flex;
213
+ align-items: center;
214
+ justify-content: center;
215
+ }
216
+ .vuuDockLayout-horizontal .vuuDockLayout-content {
217
+ flex-basis: 100%;
218
+ }
219
+ .vuuDockLayout-vertical .vuuDockLayout-content {
220
+ flex-basis: 100%;
221
+ }
222
+
223
+ /* ../vuu-layout/src/Component.css */
224
+
225
+ /* ../vuu-layout/src/drag-drop/DropMenu.css */
226
+ .vuuDropMenu {
227
+ margin-left: -50%;
228
+ margin-bottom: -50%;
229
+ background-color: white;
230
+ border: solid 1px var(--grey40);
231
+ display: inline-flex;
232
+ justify-content: center;
233
+ align-items: center;
234
+ padding: 3px;
235
+ border-radius: 3px;
236
+ }
237
+ .vuuDropMenu-left,
238
+ .vuuDropMenu-right {
239
+ flex-direction: column;
240
+ }
241
+ .vuuDropMenu-bottom {
242
+ transform: translate(0, -30px);
243
+ }
244
+ .vuuDropMenu-right {
245
+ transform: translate(-20px, 0);
246
+ }
247
+ .vuuDropMenu-item {
248
+ --vuu-icon-size: 20px;
249
+ width: 32px;
250
+ height: 32px;
251
+ background-color: var(--grey20);
252
+ border-bottom: solid 1px var(--grey40);
253
+ cursor: pointer;
254
+ display: flex;
255
+ align-items: center;
256
+ justify-content: center;
257
+ }
258
+ .vuuDropMenu-item .Icon {
259
+ transform: scale(1.25);
260
+ transform-origin: center center;
261
+ }
262
+ .vuuDropMenu-left .vuuDropMenu-item .hwIcon {
263
+ transform: scale(1.25) rotate(180deg);
264
+ transform-origin: center center;
265
+ }
266
+ .vuuDropMenu-top .vuuDropMenu-item .hwIcon {
267
+ transform: scale(1.25) rotate(270deg);
268
+ transform-origin: center center;
269
+ }
270
+ .vuuDropMenu-bottom .vuuDropMenu-item .hwIcon {
271
+ transform: scale(1.25) rotate(90deg);
272
+ transform-origin: center center;
273
+ }
274
+ .vuuDropMenu-item .hwIcon-path {
275
+ fill: grey;
276
+ }
277
+ .vuuDropMenu-item:hover {
278
+ background-color: rgba(200, 200, 200, 0.5);
279
+ }
280
+ .vuuDropMenu-item:hover .hwIcon-path-2 {
281
+ fill: blue;
282
+ }
283
+ .vuuDropMenu-item:last-child {
284
+ border-bottom: none;
285
+ }
286
+
287
+ /* ../vuu-layout/src/drag-drop/DropTargetRenderer.css */
288
+ #hw-drag-canvas {
289
+ visibility: hidden;
290
+ z-index: 1;
291
+ position: absolute;
292
+ top: 0px;
293
+ left: 0;
294
+ right: 0;
295
+ bottom: 0;
296
+ background-color: transparent;
297
+ }
298
+ #hw-drag-canvas > svg {
299
+ position: absolute;
300
+ }
301
+ .drawing #hw-drag-canvas {
302
+ visibility: visible;
303
+ }
304
+ path.drop-target {
305
+ stroke: blue;
306
+ stroke-width: 4px;
307
+ fill: transparent;
308
+ }
309
+ path.drop-target.centre {
310
+ stroke: red;
311
+ }
312
+ #vuu-drop-outline {
313
+ fill: rgba(0, 0, 255, .3);
314
+ stroke: none;
315
+ stroke-dasharray: 4 2;
316
+ }
317
+ #hw-drop-guides {
318
+ fill: none;
319
+ stroke: rgba(0, 0, 0, 0.3);
320
+ stroke-dasharray: 2 3;
321
+ }
322
+
323
+ /* ../vuu-layout/src/DraggableLayout.css */
324
+ .DraggableLayout {
325
+ display: inline-block;
326
+ outline: none;
327
+ }
328
+ [data-dragging=true] {
329
+ position: absolute !important;
330
+ z-index: 100;
331
+ }
332
+ .vuuSimpleDraggableWrapper {
333
+ background-color: white;
334
+ box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
335
+ }
336
+ .vuuSimpleDraggableWrapper > * {
337
+ height: 100%;
338
+ width: 100%;
339
+ }
340
+
341
+ /* ../vuu-layout/src/placeholder/Placeholder.css */
342
+ .vuuPlaceholder {
343
+ flex-basis: 0;
344
+ flex-grow: 1;
345
+ flex-shrink: 1;
346
+ }
347
+ .vuuPlaceholder-shim {
348
+ flex-grow: 0;
349
+ flex-shrink: 0;
350
+ }
351
+
352
+ /* ../vuu-layout/src/flexbox/Splitter.css */
353
+ .Splitter {
354
+ --splitter-size: 3px;
355
+ --splitter-border-width: 4px;
356
+ --splitter-border-style: none;
357
+ --splitter-border-color: white;
358
+ align-items: center;
359
+ background-color: var(--salt-palette-neutral-secondary-separator);
360
+ border-color: var(--splitter-border-color);
361
+ border-style: var(--splitter-border-style);
362
+ box-sizing: border-box;
363
+ display: flex;
364
+ justify-content: center;
365
+ position: relative;
366
+ outline: none;
367
+ z-index: 1;
368
+ }
369
+ .Splitter:hover {
370
+ background-color: var(--salt-palette-neutral-primary-separator);
371
+ }
372
+ .active.Splitter {
373
+ background-color: var(--salt-palette-interact-outline);
374
+ }
375
+ .Splitter.column {
376
+ cursor: ns-resize;
377
+ height: var(--splitter-size);
378
+ border-width: var(--splitter-border-width) 0;
379
+ }
380
+ .Splitter:not(.column) {
381
+ cursor: ew-resize;
382
+ width: var(--splitter-size);
383
+ border-width: 0 var(--splitter-border-width);
384
+ }
385
+ .Splitter:before {
386
+ border: none;
387
+ border-radius: 0;
388
+ content: "";
389
+ display: block;
390
+ padding: 0;
391
+ }
392
+ .Splitter .grab-zone {
393
+ position: absolute;
394
+ background-color: rgba(255, 0, 0, 0.01);
395
+ cursor: inherit;
396
+ }
397
+ .Splitter.column .grab-zone {
398
+ left: 0;
399
+ right: 0;
400
+ top: -5px;
401
+ bottom: -5px;
402
+ }
403
+ .Splitter:not(.column) .grab-zone {
404
+ left: -5px;
405
+ right: -5px;
406
+ top: 0;
407
+ bottom: 0;
408
+ }
409
+ .active.Splitter:not(.column) .grab-zone {
410
+ background-color: rgba(255, 255, 255, .05);
411
+ left: -150px;
412
+ right: -150px;
413
+ }
414
+ .Splitter:not(.column):before {
415
+ width: 1px;
416
+ height: 10px;
417
+ 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%);
418
+ }
419
+ .active.Splitter.column:before {
420
+ 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%);
421
+ }
422
+ .active.Splitter:not(.column):before {
423
+ 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%);
424
+ }
425
+ .Splitter.column:before {
426
+ width: 10px;
427
+ height: 1px;
428
+ 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%);
429
+ }
430
+
431
+ /* ../vuu-layout/src/flexbox/Flexbox.css */
432
+ :root {
433
+ --hw-space-unit: 4px;
434
+ --hw-flex-gap: 3;
435
+ --hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
436
+ }
437
+ .hwFlexbox {
438
+ background-color: var(--container1-background);
439
+ box-sizing: border-box;
440
+ display: flex;
441
+ gap: calc(var(--spacing) * var(--space));
442
+ min-height: 0;
443
+ min-width: 0;
444
+ overflow: hidden;
445
+ }
446
+ .hwFlexbox-column {
447
+ flex-direction: column;
448
+ }
449
+ .hwFlexbox-row {
450
+ flex-direction: row;
451
+ }
452
+ .hwFlexbox > .Splitter {
453
+ flex-basis: auto;
454
+ flex-grow: 0;
455
+ flex-shrink: 0;
456
+ }
457
+ .hwFlexbox.full-page {
458
+ height: 100vh;
459
+ width: 100vw;
460
+ }
461
+ .flex-fill {
462
+ border-color: red;
463
+ flex: 0;
464
+ flex-grow: 1;
465
+ flex-shrink: 1;
466
+ }
467
+ .vuuView.flex-fill {
468
+ border-color: red;
469
+ }
470
+
471
+ /* ../vuu-layout/src/flexbox/FluidGrid.css */
472
+ :root {
473
+ --hw-space-unit: 4px;
474
+ --hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
475
+ }
476
+ .hwFluidGrid {
477
+ --gap: var(--gutter-width);
478
+ display: flex;
479
+ gap: calc(var(--grid-gap) * var(--hw-space-unit));
480
+ flex-wrap: wrap;
481
+ padding: 0;
482
+ }
483
+ .hwFluidGrid > * {
484
+ --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
485
+ --gutter-count: calc(var(--parent-col-count) - 1);
486
+ --total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
487
+ --available-width: calc(100% - var(--total-gutter-width));
488
+ flex-basis: 0;
489
+ flex-grow: 1;
490
+ flex-shrink: 1;
491
+ position: relative;
492
+ }
493
+ .hwFluidGrid > *:after {
494
+ content: "";
495
+ position: absolute;
496
+ top: 0;
497
+ left: 0;
498
+ right: 0;
499
+ bottom: 0;
500
+ border: dashed 2px blue;
501
+ }
502
+ .hwFluidGrid > [data-xs] {
503
+ --internal-gutter-count: calc(var(--col-span) - 1);
504
+ --percent-width: calc(var(--col-span) / var(--parent-col-count));
505
+ --internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
506
+ flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
507
+ flex-grow: 0;
508
+ }
509
+ .hwFluidGrid > [data-xs="1"] {
510
+ --col-span: 1;
511
+ }
512
+ .hwFluidGrid > [data-xs="2"] {
513
+ --col-span: 2;
514
+ }
515
+ .hwFluidGrid > [data-xs="3"] {
516
+ --col-span: 3;
517
+ }
518
+ .hwFluidGrid > [data-xs="4"] {
519
+ --col-span: 4;
520
+ }
521
+ .hwFluidGrid > [data-xs="6"] {
522
+ --col-span: 6;
523
+ }
524
+ .hwFluidGrid > [data-xs="8"] {
525
+ --col-span: 8;
526
+ }
527
+ .hwFluidGrid > [data-xs="9"] {
528
+ --col-span: 9;
529
+ }
530
+ .hwFluidGrid > [data-xs="10"] {
531
+ --col-span: 10;
532
+ }
533
+ .hwFluidGrid > [data-xs="11"] {
534
+ --col-span: 11;
535
+ }
536
+ .hwFluidGrid > [data-xs="12"] {
537
+ --col-span: 12;
538
+ }
539
+ @media (min-width: 600px) {
540
+ .hwFluidGrid > [data-sm="1"] {
541
+ --col-span: 1;
542
+ }
543
+ .hwFluidGrid > [data-sm="2"] {
544
+ --col-span: 2;
545
+ }
546
+ .hwFluidGrid > [data-sm="3"] {
547
+ --col-span: 3;
548
+ }
549
+ .hwFluidGrid > [data-sm="4"] {
550
+ --col-span: 4;
551
+ }
552
+ .hwFluidGrid > [data-sm="6"] {
553
+ --col-span: 6;
554
+ }
555
+ .hwFluidGrid > [data-sm="8"] {
556
+ --col-span: 8;
557
+ }
558
+ .hwFluidGrid > [data-sm="9"] {
559
+ --col-span: 9;
560
+ }
561
+ .hwFluidGrid > [data-sm="10"] {
562
+ --col-span: 10;
563
+ }
564
+ .hwFluidGrid > [data-sm="11"] {
565
+ --col-span: 11;
566
+ }
567
+ .hwFluidGrid > [data-sm="12"] {
568
+ --col-span: 12;
569
+ }
570
+ }
571
+ .hwFluidGrid-show-grid {
572
+ --gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
573
+ --grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
574
+ --grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
575
+ --grid-available-width: calc(100% - var(--grid-total-gutter-width));
576
+ --grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
577
+ --column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
578
+ 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)));
579
+ }
580
+
581
+ /* ../vuu-layout/src/layout-view/View.css */
582
+ .vuuView {
583
+ border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
584
+ border-width: var(--vuuView-borderWidth, 1px);
585
+ border-style: var(--vuuView-borderStyle, none);
586
+ display: flex;
587
+ flex-direction: column;
588
+ margin: var(--vuuView-margin, 0px);
589
+ min-height: 50px;
590
+ min-width: 50px;
591
+ outline: none;
592
+ overflow: hidden;
593
+ position: relative;
594
+ }
595
+ .vuuView.focus-visible:after {
596
+ content: "";
597
+ position: absolute;
598
+ top: 0;
599
+ left: 0;
600
+ right: 0;
601
+ bottom: 0;
602
+ border: dotted cornflowerblue 2px;
603
+ }
604
+ .vuuView.dragging {
605
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
606
+ }
607
+ .vuuView-main {
608
+ display: flex;
609
+ flex-direction: var(--vuuView-flexDirection, column);
610
+ flex-wrap: var(--vuuView-flex-wrap, nowrap);
611
+ flex: 1;
612
+ overflow: hidden;
613
+ position: relative;
614
+ }
615
+ .vuuView-main > * {
616
+ flex-basis: auto;
617
+ flex-grow: var(--vuuView-flex-grow, 1);
618
+ flex-shrink: var(--vuuView-flex-shrink, 1);
619
+ }
620
+ .vuuView-collapsed .vuuView-main {
621
+ display: none;
622
+ }
623
+ .vuuView-collapsed + .Splitter {
624
+ display: none;
625
+ }
626
+ .vuuView-collapsed .Toolbar-vertical {
627
+ border-right: solid 1px var(--grey40);
628
+ }
629
+ .vuuView-collapsed .Toolbar-vertical .toolbar-title {
630
+ display: none;
631
+ }
632
+
633
+ /* ../vuu-layout/src/layout-header/Header.css */
634
+ .vuuHeader {
635
+ --saltToolbar-background: var(--salt-container-tertiary-background);
636
+ }
637
+ .salt-density-high .vuuHeader {
638
+ --saltToolbarField-marginTop: 0;
639
+ }
640
+
641
+ /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
642
+ .vuuOverflowContainer {
643
+ --item-gap: 4px;
644
+ --overflow-width: 0px;
645
+ --overflow-order: 99;
646
+ --border-size: calc((var(--overflow-container-height) - 24px) / 2);
647
+ background-color: var(--vuuOverflowContainer-background, black);
648
+ height: var(--overflow-container-height);
649
+ }
650
+ .vuuOverflowContainer-wrapContainer {
651
+ align-items: center;
652
+ display: flex;
653
+ flex-wrap: wrap;
654
+ height: var(--overflow-container-height);
655
+ min-width: 44px;
656
+ overflow: hidden;
657
+ position: relative;
658
+ width: 100%;
659
+ }
660
+ .vuuOverflowContainer-wrapContainer.overflowed {
661
+ --overflow-order: 2;
662
+ --overflow-left: auto;
663
+ --overflow-position: relative;
664
+ --overflow-width: auto;
665
+ }
666
+ .vuuOverflowContainer-item:first-child {
667
+ --item-gap: 0;
668
+ }
669
+ .vuuOverflowContainer-item {
670
+ align-items: inherit;
671
+ display: flex;
672
+ order: 1;
673
+ position: relative;
674
+ height: var(--overflow-container-height);
675
+ margin-left: var(--item-gap);
676
+ }
677
+ .vuuOverflowContainer-item.wrapped {
678
+ --overflow-item-bg: #ccc;
679
+ order: 3;
680
+ }
681
+ .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
682
+ display: none;
683
+ }
684
+ .vuuOverflowContainer-item.vuuDropTarget-settling {
685
+ visibility: hidden;
686
+ }
687
+ .vuuOverflowContainer-OverflowIndicator {
688
+ align-items: center;
689
+ background-color: transparent;
690
+ display: flex;
691
+ height: var(--overflow-container-height);
692
+ height: var(--overflow-container-height);
693
+ order: var(--overflow-order);
694
+ overflow: hidden;
695
+ left: var(--overflow-left, 100%);
696
+ position: var(--overflow-position, absolute);
697
+ width: var(--overflow-width);
698
+ }
699
+
700
+ /* ../vuu-layout/src/palette/Palette.css */
701
+ .vuuPalette-horizontal {
702
+ align-items: center;
703
+ display: flex;
704
+ }
705
+ .vuuPaletteItem {
706
+ --vuu-icon-color: var(--salt-separable-primary-borderColor);
707
+ --vuu-icon-inset: calc(50% - 12px) auto auto -3px;
708
+ --vuu-icon-height: 24px;
709
+ --vuu-icon-width: 24px;
710
+ --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
711
+ }
712
+ .vuuPaletteItem[data-draggable]:after {
713
+ height: 22px;
714
+ width: 6px;
715
+ content: "";
716
+ position: absolute;
717
+ background-image:
718
+ linear-gradient(45deg, rgb(180, 183, 190) 25%, transparent 25%),
719
+ linear-gradient(-45deg, rgb(180, 183, 190) 25%, transparent 25%),
720
+ linear-gradient(45deg, transparent 75%, rgb(180, 183, 190) 25%),
721
+ linear-gradient(-45deg, transparent 75%, rgb(180, 183, 190) 25%);
722
+ background-size: 4px 4px;
723
+ background-position:
724
+ 0 0,
725
+ 2px 0,
726
+ 2px -2px,
727
+ 0 2px;
728
+ }
729
+ .vuuSimpleDraggableWrapper > .vuuPaletteItem {
730
+ --vuu-icon-color: var(--salt-selectable-foreground);
731
+ }
732
+
733
+ /* ../vuu-layout/src/palette/PaletteSalt.css */
734
+ .vuuPalette {
735
+ --list-item-header-bg: inherit;
736
+ --list-item-header-color: inherit;
737
+ --list-item-padding: 0 6px 0 24px;
738
+ --list-item-header-twisty-color: black;
739
+ --list-item-header-twisty-left: 3px;
740
+ --list-item-header-twisty-right: auto;
741
+ }
742
+
743
+ /* ../vuu-layout/src/stack/Stack.css */
744
+ .Tabs {
745
+ display: flex;
746
+ box-sizing: border-box;
747
+ flex-direction: column;
748
+ }
749
+ .Tabs-horizontal {
750
+ flex-direction: row;
751
+ }
752
+ .Tabs .Toolbar:before {
753
+ left: 0;
754
+ width: 100%;
755
+ bottom: 0;
756
+ height: 1px;
757
+ content: "";
758
+ position: absolute;
759
+ background: var(--grey60);
760
+ }
761
+ .vuuTabHeader {
762
+ --saltTabs-activationIndicator-background: transparent;
763
+ --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
764
+ border-bottom: solid 1px var(--salt-container-primary-borderColor);
765
+ }
766
+ .vuuTabHeader + .hwFlexbox,
767
+ .vuuTabHeader + * {
768
+ flex: 1;
769
+ }
770
+ .vuuTabHeader + .vuuView > .vuuHeader {
771
+ height: 0;
772
+ overflow: hidden;
773
+ }
774
+ .Layout-svg-button {
775
+ --spacing-medium: 5px;
776
+ }
777
+
778
+ /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
779
+ [data-design-mode=true] .Component {
780
+ filter: grayscale(100%);
781
+ opacity: 0.4;
782
+ }
783
+ [data-design-mode=true] .Component:after {
784
+ color: black;
785
+ content: "Component";
786
+ height: 12px;
787
+ background-color: yellow;
788
+ }
789
+ .LayoutConfigurator {
790
+ --margin-color: #f3cea5;
791
+ --border-color: #fddda0;
792
+ --padding-color: #c6d092;
793
+ --content-color: #8cb6c0;
794
+ display: flex;
795
+ flex-direction: column;
796
+ align-items: stretch;
797
+ background-color: var(--margin-color);
798
+ }
799
+ .LayoutConfigurator .layout-outer {
800
+ flex: 1 1 auto;
801
+ display: flex;
802
+ flex-direction: column;
803
+ align-items: stretch;
804
+ }
805
+ .LayoutBox {
806
+ --hw-control-font-size: 13px;
807
+ --hw-text-input-bg: rgba(255, 255, 255, 0.3);
808
+ --hwTextInput-padding: 3px;
809
+ --hw-text-input-position: absolute;
810
+ --hwTextInput-width: 30px;
811
+ flex: 1 1 auto;
812
+ }
813
+ .LayoutBox > .layout-top {
814
+ flex: 0 0 40px;
815
+ padding-left: 12px;
816
+ display: flex;
817
+ flex-direction: row;
818
+ align-items: center;
819
+ position: relative;
820
+ }
821
+ .LayoutBox > .layout-bottom {
822
+ flex: 0 0 40px;
823
+ position: relative;
824
+ display: flex;
825
+ flex-direction: row;
826
+ align-items: center;
827
+ }
828
+ .LayoutBox > .layout-inner > .layout-right,
829
+ .LayoutBox > .layout-inner > .layout-left {
830
+ flex: 0 0 40px;
831
+ display: flex;
832
+ flex-direction: column;
833
+ justify-content: center;
834
+ align-items: center;
835
+ }
836
+ .layout-top,
837
+ .layout-bottom {
838
+ --hw-text-input-margin: 0 0 0 -15px;
839
+ }
840
+ .layout-top > .layout-input,
841
+ .layout-bottom > .layout-input {
842
+ left: 50%;
843
+ }
844
+ .LayoutBox > .layout-inner {
845
+ flex: 1 1 auto;
846
+ display: flex;
847
+ flex-direction: row;
848
+ align-items: stretch;
849
+ }
850
+ .LayoutBox.layout-margin {
851
+ background-color: var(--margin-color);
852
+ border: dashed 2px black;
853
+ }
854
+ .LayoutBox.layout-border {
855
+ background-color: var(--border-color);
856
+ border: solid 2px black;
857
+ }
858
+ .LayoutBox.layout-padding {
859
+ background-color: var(--padding-color);
860
+ border: dashed 2px black;
861
+ }
862
+ .LayoutBox .layout-content {
863
+ flex: 1 1 auto;
864
+ background-color: var(--content-color);
865
+ border: solid 2px #808080;
866
+ }
867
+ .LayoutBox .layout-title {
868
+ color: #161616;
869
+ font-size: 11px;
870
+ left: 4px;
871
+ line-height: 15px;
872
+ position: absolute;
873
+ top: 1px;
874
+ }
875
+
876
+ /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
877
+ .hwLayoutTreeViewer {
878
+ }
879
+ .hwLayoutTreeNode {
880
+ cursor: default;
881
+ }
882
+ .hwLayoutTreeNode:hover {
883
+ background-color: rgba(255, 255, 255, 0.2);
884
+ }
885
+ .hwLayoutTreeNode[aria-selected=true] {
886
+ background-color: cornflowerblue;
887
+ color: white;
888
+ }
889
+
890
+ /* ../vuu-ui-controls/src/drag-drop/Draggable.css */
891
+ .vuuDraggable {
892
+ background: transparent;
893
+ box-shadow: var(--salt-overlayable-shadow-drag);
894
+ cursor: var(--salt-draggable-grab-cursor-active);
895
+ position: absolute;
896
+ opacity: .95;
897
+ z-index: 2000;
898
+ }
899
+ .vuuDraggable-spacer {
900
+ display: var(--saltDraggable-display, inline-block);
901
+ height: var(--saltDraggable-spacer-height, var(--tabs-tabstrip-height));
902
+ transition: var(--saltDraggable-transitionProp, width) 0.3s ease;
903
+ width: var(--saltDraggable-spacer-width, 0);
904
+ }
905
+ .vuuDraggable-dropIndicatorPosition {
906
+ display: var(--saltDraggable-display, inline-block);
907
+ height: 0px;
908
+ width: 100%;
909
+ }
910
+ .vuuDraggable-dropIndicatorContainer {
911
+ transition: var(--saltDraggable-transitionProp, top) 0.2s ease;
912
+ }
913
+ .vuuDraggable-dropIndicator {
914
+ background-color: var(--salt-palette-accent-background);
915
+ height: 2px;
916
+ width: 100%;
917
+ }
918
+ .vuuDraggable-dropIndicator:before {
919
+ content: "";
920
+ width: 6px;
921
+ height: 6px;
922
+ border-radius: 3px;
923
+ background-color: var(--salt-palette-accent-background);
924
+ position: absolute;
925
+ top: -2px;
926
+ left: -3px;
927
+ }
928
+ .vuuDraggable-settling {
929
+ transition-property: left, top;
930
+ transition-duration: .15s;
931
+ transition-timing-function: ease-out;
932
+ }
933
+ .vuuDraggable-spacer {
934
+ order: 1;
935
+ }
936
+
937
+ /* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
938
+ .vuuTabstrip {
939
+ --vuuOverflowContainer-background: transparent;
940
+ --tabs-tabstrip-height: var(--vuuTabstrip-height, 28px);
941
+ --tabs-tabstrip-dragging-display: none;
942
+ --tabs-tabstrip-display: inline-flex;
943
+ --tabs-tabstrip-background: transparent;
944
+ align-items: flex-start;
945
+ align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
946
+ border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
947
+ font-size: var(--salt-text-fontSize);
948
+ font-weight: var(--salt-text-fontWeight);
949
+ position: relative;
950
+ overflow: visible;
951
+ display: flex;
952
+ min-width: 28px;
953
+ width: 100%;
954
+ }
955
+ .vuuTabstrip-horizontal {
956
+ --vuuTabActivationIndicator-height: 1px;
957
+ --vuuTabActivationIndicator-thumb-inset: -1px 0 0 0;
958
+ --tab-activationIndicator-borderStyle: none none solid none;
959
+ --tab-activationIndicator-inset: auto 0px 0px 0px;
960
+ --tab-activationIndicator-transitionProperty: left;
961
+ --tab-activationIndicator-thumb-height: 0px;
962
+ --tab-thumb-height: 2px;
963
+ }
964
+ .vuuTabstrip-vertical {
965
+ --vuuTabActivationIndicator-thumb-inset: 0 0 0 -1px;
966
+ --tab-activationIndicator-transition: top 0.3s ease;
967
+ --tab-activationIndicator-borderStyle: none solid none none;
968
+ --tab-activationIndicator-inset: 0px 0px 0px auto;
969
+ --tab-activationIndicator-transitionProperty: top;
970
+ --tab-activationIndicator-width: 1px;
971
+ --tab-activationIndicator-thumb-width: 2px;
972
+ align-self: flex-start;
973
+ display: inline-flex;
974
+ }
975
+ .vuuTabstrip-draggingTab {
976
+ --vuuTabs-activationIndicator-transition: none;
977
+ }
978
+ .vuuTabstrip-draggingTab .vuuTab {
979
+ pointer-events: none;
980
+ }
981
+ .vuuTabstrip-horizontal {
982
+ height: var(--tabs-tabstrip-height);
983
+ }
984
+ .vuuTabstrip-addTabButton {
985
+ --saltButton-height: 20px;
986
+ --saltButton-width: 20px;
987
+ }
988
+ .vuuTabstrip-overflowMenu.saltDropdown {
989
+ --saltIcon-margin: 2px 0 0 0px;
990
+ }
991
+ .vuuTabstrip-overflowMenu-open {
992
+ --saltButton-background: var(--salt-actionable-secondary-background-active);
993
+ --saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
994
+ }
995
+ .vuuTabstrip-overflowMenu-open .saltButton {
996
+ --saltIcon-color: var(--salt-actionable-secondary-foreground-active);
997
+ }
998
+ .vuuTabstrip-inner {
999
+ width: 100%;
1000
+ align-items: center;
1001
+ display: flex;
1002
+ flex-basis: auto;
1003
+ flex-grow: 0;
1004
+ flex-shrink: 1;
1005
+ flex-wrap: wrap;
1006
+ justify-content: flex-start;
1007
+ line-height: var(--tabs-tabstrip-height);
1008
+ }
1009
+ .vuuTabstrip-vertical .vuuTabstrip-inner {
1010
+ flex-direction: column;
1011
+ height: auto;
1012
+ }
1013
+ .vuuTabstrip-centered .vuuTabstrip-inner {
1014
+ justify-content: center;
1015
+ }
1016
+ .vuuDraggable[class*=vuuTabstrip] {
1017
+ --tabs-tabstrip-display: flex;
1018
+ --tabs-tabstrip-height: 100%;
1019
+ --tabs-tabstrip-dragging-display: block;
1020
+ --tabs-tab-background: var(--salt-navigable-primary-background-hover);
1021
+ --tabs-tab-before-content: "";
1022
+ --tabs-tab-before-background: var(--salt-navigable-indicator-hover);
1023
+ --tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
1024
+ --tabs-tab-before-inset: var(--tab-activationIndicator-inset);
1025
+ --tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
1026
+ --tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
1027
+ --tabs-tab-position: static;
1028
+ font-size: 12px;
1029
+ }
1030
+ .vuuDraggable-tabstrip-horizontal {
1031
+ --tab-thumb-height: 2px;
1032
+ --tabs-tabstrip-height: 28px;
1033
+ --tab-activationIndicator-thumb-height: 2px;
1034
+ --tab-activationIndicator-inset: auto 0px 0px 0px;
1035
+ line-height: var(--tabs-tabstrip-height);
1036
+ }
1037
+ .vuuDraggable-tabstrip-vertical {
1038
+ --tab-activationIndicator-inset: 0px 0px 0px auto;
1039
+ --tab-activationIndicator-thumb-width: 2px;
1040
+ }
1041
+ .vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
1042
+ --tabs-tab-before-background: var(--salt-navigable-indicator-active);
1043
+ }
1044
+ .vuuTabstrip-overflowMenu-dropTarget:after {
1045
+ background: var(--salt-selectable-background-selected);
1046
+ content: "";
1047
+ position: absolute;
1048
+ height: 2px;
1049
+ left: 0;
1050
+ right: 0;
1051
+ bottom: 0;
1052
+ }
1053
+
1054
+ /* ../vuu-ui-controls/src/tabstrip/TabMenu.css */
1055
+ .vuuTabMenu {
1056
+ top: -2px;
1057
+ }
1058
+
1059
+ /* ../vuu-ui-controls/src/tabstrip/Tab.css */
1060
+ .vuuTab {
1061
+ --saltEditableLabel-padding: 0;
1062
+ --saltEditableLabel-height: var(--tabs-tabstrip-height);
1063
+ --saltInputLegacy-minWidth: 4em;
1064
+ --tab-background: var(--salt-navigable-primary-background);
1065
+ --tab-cursor: pointer;
1066
+ --tab-position: relative;
1067
+ }
1068
+ .vuuTab {
1069
+ align-items: center;
1070
+ align-self: stretch;
1071
+ background: var(--vuuTab-background, var(--tab-background));
1072
+ border: none;
1073
+ border-radius: 0;
1074
+ color: var(--salt-text-primary-foreground);
1075
+ cursor: var(--vuuTab-cursor, var(--tab-cursor));
1076
+ display: var(--tabs-tabstrip-display);
1077
+ gap: 8px;
1078
+ height: var(--vuuTab-height, var(--tabs-tabstrip-height));
1079
+ letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
1080
+ min-width: var(--vuuTab-minWidth, 40px);
1081
+ outline: none;
1082
+ padding: 0 24px;
1083
+ position: var(--vuuTab-position, var(--tab-position));
1084
+ user-select: none;
1085
+ }
1086
+ .vuuTab.saltFocusVisible:after {
1087
+ inset: 2px 2px 4px 2px;
1088
+ }
1089
+ .vuuTab:not(.vuuTab-vertical) {
1090
+ margin: 0 var(--tab-spacing) 0 0;
1091
+ }
1092
+ .vuuTab-selected {
1093
+ color: var(--salt-text-primary-foreground);
1094
+ font-weight: var(--salt-navigable-fontWeight-active);
1095
+ }
1096
+ .vuuTab-main {
1097
+ align-items: center;
1098
+ background: inherit;
1099
+ border: none;
1100
+ color: inherit;
1101
+ cursor: inherit;
1102
+ display: flex;
1103
+ font-family: inherit;
1104
+ font-size: inherit;
1105
+ font-weight: inherit;
1106
+ height: var(--vuuTabstrip-height, var(--salt-size-stackable));
1107
+ outline: none;
1108
+ position: relative;
1109
+ }
1110
+ .vuuTab-closeable .vuuTab-main {
1111
+ border-right: solid transparent var(--salt-size-unit);
1112
+ }
1113
+ .vuuTab .vuuTab-closeButton {
1114
+ display: flex;
1115
+ align-items: center;
1116
+ justify-content: center;
1117
+ }
1118
+ .vuuTab-close-icon {
1119
+ display: none;
1120
+ }
1121
+ .salt-density-touch .vuuTab-close-icon,
1122
+ .salt-density-low .vuuTab-close-icon {
1123
+ display: block;
1124
+ }
1125
+ .salt-density-touch .vuuTab-close-icon-small,
1126
+ .salt-density-low .vuuTab-close-icon-small {
1127
+ display: none;
1128
+ }
1129
+ .vuuTab .vuuTab-text {
1130
+ display: inline-block;
1131
+ position: relative;
1132
+ overflow: hidden;
1133
+ text-align: var(--salt-text-textAlign-embedded);
1134
+ text-overflow: ellipsis;
1135
+ top: var(--vuuTab-top, var(--tab-top, auto));
1136
+ white-space: nowrap;
1137
+ z-index: var(--salt-zIndex-default);
1138
+ }
1139
+ .vuuTab-vertical .vuuTab-text {
1140
+ text-align: var(--salt-text-textAlign);
1141
+ }
1142
+ .vuuTab .vuuTab-text:before {
1143
+ height: 0;
1144
+ content: attr(data-text);
1145
+ display: block;
1146
+ visibility: hidden;
1147
+ font-weight: var(--salt-navigable-fontWeight-active);
1148
+ }
1149
+ .vuuTab-editing:after {
1150
+ content: "";
1151
+ position: absolute;
1152
+ top: 0;
1153
+ left: 0;
1154
+ right: 0;
1155
+ bottom: 2px;
1156
+ outline-color: var(--salt-focused-outlineColor);
1157
+ outline-style: var(--salt-focused-outlineStyle);
1158
+ outline-width: var(--salt-focused-outlineWidth);
1159
+ outline-offset: -2px;
1160
+ }
1161
+ .vuuTab-vertical.vuuTab-editing:after {
1162
+ right: 2px;
1163
+ bottom: 0;
1164
+ }
1165
+ .vuuTab-vertical .saltFocusVisible:not(.vuuTab-selected):before {
1166
+ left: auto;
1167
+ height: auto;
1168
+ top: 0;
1169
+ width: 2px;
1170
+ }
1171
+ .vuuTab.saltFocusVisible {
1172
+ background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
1173
+ }
1174
+ .vuuTab:before {
1175
+ content: var(--tab-before-content, none);
1176
+ background: var(--tab-before-background);
1177
+ height: var(--tab-before-height);
1178
+ inset: var(--tab-before-inset);
1179
+ position: absolute;
1180
+ width: var(--tab-before-width);
1181
+ z-index: 1;
1182
+ }
1183
+ .vuuTabstrip-draggingTab .vuuTab-selected:before {
1184
+ --tab-before-content: "";
1185
+ --tab-before-background: var(--salt-navigable-indicator-color-active);
1186
+ --tab-before-height: var(--tab-thumb-height);
1187
+ --tab-before-inset: var(--tab-activationIndicator-inset);
1188
+ --tab-before-width: var(--tab-activationIndicator-thumb-width);
1189
+ }
1190
+ .vuuDraggable .vuuTab:before,
1191
+ .vuuTab:not(.vuuTab-selected).saltFocusVisible:before,
1192
+ .vuuTab:hover:not(.vuuTab-selected):before {
1193
+ --tab-before-content: "";
1194
+ --tab-before-background: var(--salt-navigable-indicator-hover);
1195
+ --tab-before-height: var(--tab-thumb-height);
1196
+ --tab-before-inset: var(--tab-activationIndicator-inset);
1197
+ --tab-before-width: var(--tab-activationIndicator-thumb-width);
1198
+ }
1199
+ .vuuTab-selected:before {
1200
+ --tab-before-content: "";
1201
+ background: var(--salt-navigable-indicator-active);
1202
+ height: var(--tab-thumb-height);
1203
+ position: absolute;
1204
+ left: var(--tab-thumb-offset,0);
1205
+ bottom: 0px;
1206
+ transition: var(--tab-thumb-transition, none);
1207
+ width: var(--tab-thumb-width, 100%);
1208
+ }
1209
+ .vuuTab:hover:not(.vuuTab-closeHover) {
1210
+ background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
1211
+ }
1212
+
23
1213
  /* src/TableCell.css */
24
1214
  .vuuTable {
25
1215
  --cell-outline-width: 2px;