@vuu-ui/vuu-layout 0.8.17-debug → 0.8.18-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
@@ -280,6 +280,68 @@ path.drop-target.centre {
280
280
  width: 100%;
281
281
  }
282
282
 
283
+ /* src/layout-header/Header.css */
284
+ .vuuHeader {
285
+ --saltButton-height: 24px;
286
+ --saltButton-width: 24px;
287
+ }
288
+ .salt-density-high .vuuHeader {
289
+ --saltToolbarField-marginTop: 0;
290
+ }
291
+
292
+ /* src/layout-view/View.css */
293
+ .vuuView {
294
+ border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
295
+ border-width: var(--vuuView-borderWidth, 1px);
296
+ border-style: var(--vuuView-borderStyle, none);
297
+ display: flex;
298
+ flex-direction: column;
299
+ margin: var(--vuuView-margin, 0px);
300
+ min-height: 50px;
301
+ min-width: 50px;
302
+ outline: none;
303
+ overflow: hidden;
304
+ position: relative;
305
+ }
306
+ .vuuView.focus-visible:after {
307
+ content: "";
308
+ position: absolute;
309
+ top: 0;
310
+ left: 0;
311
+ right: 0;
312
+ bottom: 0;
313
+ border: dotted cornflowerblue 2px;
314
+ }
315
+ .vuuView.dragging {
316
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
317
+ }
318
+ .vuuView-main {
319
+ display: flex;
320
+ flex-direction: var(--vuuView-flexDirection, column);
321
+ flex-wrap: var(--vuuView-flex-wrap, nowrap);
322
+ flex: 1;
323
+ justify-content: var(--vuuView-justify, flex-start);
324
+ overflow: hidden;
325
+ position: relative;
326
+ }
327
+ .vuuView-main > * {
328
+ flex-basis: auto;
329
+ flex-grow: var(--vuuView-flex-grow, 1);
330
+ flex-shrink: var(--vuuView-flex-shrink, 1);
331
+ }
332
+ .vuuView-collapsed .vuuView-main {
333
+ display: none;
334
+ }
335
+ .vuuView-collapsed + .Splitter {
336
+ display: none;
337
+ }
338
+ .vuuView-collapsed .Toolbar-vertical {
339
+ border-right: solid 1px var(--grey40);
340
+ }
341
+ .vuuView-collapsed .Toolbar-vertical .toolbar-title {
342
+ display: none;
343
+ }
344
+
283
345
  /* src/placeholder/LayoutStartPanel.css */
284
346
  .vuuLayoutStartPanel {
285
347
  align-items: center;
@@ -391,18 +453,74 @@ path.drop-target.centre {
391
453
  .vuuSplitter:not(.vuuSplitter-column):before {
392
454
  width: 1px;
393
455
  height: 10px;
394
- 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%);
456
+ background:
457
+ linear-gradient(
458
+ to bottom,
459
+ var(--grey900) 10%,
460
+ transparent 10%,
461
+ transparent 30%,
462
+ var(--grey900) 30%,
463
+ var(--grey900) 40%,
464
+ transparent 40%,
465
+ transparent 60%,
466
+ var(--grey900) 60%,
467
+ var(--grey900) 70%,
468
+ transparent 70%,
469
+ transparent 90%,
470
+ var(--grey900) 90%);
395
471
  }
396
472
  .vuuSplitter-active.vuuSplitter-column:before {
397
- 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%);
473
+ background:
474
+ linear-gradient(
475
+ to right,
476
+ #ffffff 10%,
477
+ transparent 10%,
478
+ transparent 30%,
479
+ #ffffff 30%,
480
+ #ffffff 40%,
481
+ transparent 40%,
482
+ transparent 60%,
483
+ #ffffff 60%,
484
+ #ffffff 70%,
485
+ transparent 70%,
486
+ transparent 90%,
487
+ #ffffff 90%);
398
488
  }
399
489
  .vuuSplitter-active:not(.vuuSplitter-column):before {
400
- 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%);
490
+ background:
491
+ linear-gradient(
492
+ to bottom,
493
+ #ffffff 10%,
494
+ transparent 10%,
495
+ transparent 30%,
496
+ #ffffff 30%,
497
+ #ffffff 40%,
498
+ transparent 40%,
499
+ transparent 60%,
500
+ #ffffff 60%,
501
+ #ffffff 70%,
502
+ transparent 70%,
503
+ transparent 90%,
504
+ #ffffff 90%);
401
505
  }
402
506
  .vuuSplitter-column:before {
403
507
  width: 10px;
404
508
  height: 1px;
405
- 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%);
509
+ background:
510
+ linear-gradient(
511
+ to right,
512
+ var(--grey900) 10%,
513
+ transparent 10%,
514
+ transparent 30%,
515
+ var(--grey900) 30%,
516
+ var(--grey900) 40%,
517
+ transparent 40%,
518
+ transparent 60%,
519
+ var(--grey900) 60%,
520
+ var(--grey900) 70%,
521
+ transparent 70%,
522
+ transparent 90%,
523
+ var(--grey900) 90%);
406
524
  }
407
525
 
408
526
  /* src/flexbox/Flexbox.css */
@@ -552,790 +670,13 @@ path.drop-target.centre {
552
670
  --grid-available-width: calc(100% - var(--grid-total-gutter-width));
553
671
  --grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
554
672
  --column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
555
- 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)));
556
- }
557
-
558
- /* src/layout-view/View.css */
559
- .vuuView {
560
- border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
561
- border-width: var(--vuuView-borderWidth, 1px);
562
- border-style: var(--vuuView-borderStyle, none);
563
- display: flex;
564
- flex-direction: column;
565
- margin: var(--vuuView-margin, 0px);
566
- min-height: 50px;
567
- min-width: 50px;
568
- outline: none;
569
- overflow: hidden;
570
- position: relative;
571
- }
572
- .vuuView.focus-visible:after {
573
- content: "";
574
- position: absolute;
575
- top: 0;
576
- left: 0;
577
- right: 0;
578
- bottom: 0;
579
- border: dotted cornflowerblue 2px;
580
- }
581
- .vuuView.dragging {
582
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
583
- }
584
- .vuuView-main {
585
- display: flex;
586
- flex-direction: var(--vuuView-flexDirection, column);
587
- flex-wrap: var(--vuuView-flex-wrap, nowrap);
588
- flex: 1;
589
- justify-content: var(--vuuView-justify, flex-start);
590
- overflow: hidden;
591
- position: relative;
592
- }
593
- .vuuView-main > * {
594
- flex-basis: auto;
595
- flex-grow: var(--vuuView-flex-grow, 1);
596
- flex-shrink: var(--vuuView-flex-shrink, 1);
597
- }
598
- .vuuView-collapsed .vuuView-main {
599
- display: none;
600
- }
601
- .vuuView-collapsed + .Splitter {
602
- display: none;
603
- }
604
- .vuuView-collapsed .Toolbar-vertical {
605
- border-right: solid 1px var(--grey40);
606
- }
607
- .vuuView-collapsed .Toolbar-vertical .toolbar-title {
608
- display: none;
609
- }
610
-
611
- /* src/layout-header/Header.css */
612
- .vuuHeader {
613
- --saltButton-height: 24px;
614
- --saltButton-width: 24px;
615
- }
616
- .salt-density-high .vuuHeader {
617
- --saltToolbarField-marginTop: 0;
618
- }
619
-
620
- /* ../vuu-shell/src/login/LoginPanel.css */
621
- .vuuLoginPanel {
622
- --saltInput-paddingLeft: 8px;
623
- --login-width: 856px;
624
- --login-height: 550px;
625
- --hwTextInput-border: solid 1px #ccc;
626
- --hwTextInput-height: 28px;
627
- --hwTextInput-padding: 0 12px;
628
- --hwTextInput-width: 100%;
629
- --login-row-height: 60px;
630
- border-radius: 16px;
631
- box-shadow: 0px 24px 44px 0px rgba(0, 0, 0, 0.25);
632
- display: flex;
633
- height: var(--login-height);
634
- margin: 0 auto;
635
- width: var(--login-width);
636
- }
637
- .vuuLoginPanel .saltInput-primary {
638
- --saltInput-height: 36px;
639
- }
640
- .vuuLoginPanel-title {
641
- justify-content: center;
642
- font-size: 28px;
643
- font-weight: 400;
644
- display: flex;
645
- }
646
- .vuuLoginPanel-branding {
647
- align-items: center;
648
- background-color: var(--vuu-color-purple-50);
649
- border-radius: 16px 0 0 16px;
650
- display: flex;
651
- flex: 0 0 368px;
652
- flex-direction: column;
653
- gap: 40px;
654
- justify-content: center;
655
- padding: 40px 100px;
656
- }
657
- .vuuLoginPanel-form {
658
- background-color: white;
659
- border-radius: 0 16px 16px 0px;
660
- display: flex;
661
- flex: 1 1 auto;
662
- flex-direction: column;
663
- gap: 32px;
664
- justify-content: center;
665
- padding: 0 40px;
666
- }
667
- .vuuLoginPanel-password {
668
- --vuu-icon-size: 16px;
669
- }
670
- .vuuLoginPanel-appName {
671
- color: white;
672
- font-size: 18px;
673
- font-weight: 700;
674
- text-transform: uppercase;
675
- }
676
- .vuuLoginPanel-login {
677
- --saltButton-height: 36px;
678
- --saltButton-borderRadius: 6px;
679
- width: 100%;
680
- }
681
-
682
- /* ../vuu-shell/src/app-header/AppHeader.css */
683
- .vuuAppHeader {
684
- --saltButton-borderRadius: 6px;
685
- --saltButton-text-color: var(--vuu-color-gray-50);
686
- --saltButton-padding: 12px;
687
- --vuuToolbarItem-height: 26px;
688
- --vuuOverflowContainer-gap: 8px;
689
- --vuu-icon-color: var(--vuu-color-gray-45);
690
- --vuu-icon-size: 16px;
691
- --vuuToolbar-background: var(--vuuAppHeader-background, var(--vuu-color-gray-28));
692
- --vuuToolbar-borderWidth: 1px;
693
- --vuuToolbar-borderStyle: solid;
694
- --vuuToolbar-borderColor: var(--vuu-color-gray-30);
695
- align-items: center;
696
- display: flex;
697
- justify-content: flex-end;
698
- }
699
- .vuu-theme .vuuAppHeader {
700
- border-radius: 8px;
701
- margin-bottom: 8px;
702
- }
703
-
704
- /* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
705
- .vuuStatus-container {
706
- display: flex;
707
- }
708
- .vuuStatus-text {
709
- align-self: center;
710
- }
711
- .vuuStatus {
712
- --vuu-icon-height: 18px;
713
- --vuu-icon-padding: var(--vuuStatus-padding, 6px);
714
- --vuu-icon-width: var(--vuuStatus-width, auto);
715
- --vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
716
- align-items: center;
717
- display: inline-flex;
718
- height: var(--vuu-icon-height);
719
- justify-content: center;
720
- min-width: var(--vuu-icon-min-width);
721
- padding: 0 var(--vuu-icon-padding);
722
- width: var(--vuu-icon-width);
723
- position: relative;
724
- }
725
- .vuuStatus[data-icon]::after {
726
- inset: 0 0 0 0;
727
- content: "";
728
- box-shadow: 0 0 0 0 black;
729
- position: absolute;
730
- mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
731
- -webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
732
- }
733
- .vuuActiveStatus::after {
734
- --vuu-icon-svg: var(--svg-active-status);
735
- background-color: rgb(0, 255, 0);
736
- }
737
- .vuuConnectingStatus::after {
738
- --vuu-icon-svg: var(--svg-connecting-status);
739
- background-color: orange;
740
- transform: scale(1);
741
- animation: infinite pulse 1s;
742
- }
743
- .vuuDisconnectedStatus::after {
744
- --vuu-icon-svg: var(--svg-disconnected-status);
745
- background-color: red;
746
- transform: scale(1);
747
- animation: infinite pulse 0.5s;
748
- }
749
- @keyframes pulse {
750
- 0% {
751
- transform: scale(0.95);
752
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
753
- }
754
- 70% {
755
- transform: scale(1);
756
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
757
- }
758
- 100% {
759
- transform: scale(0.95);
760
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
761
- }
762
- }
763
-
764
- /* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
765
- .saveLayoutPanel {
766
- --salt-selectable-foreground-hover: #6d18bdc3;
767
- --salt-selectable-foreground-selected: #6D18BD;
768
- --salt-selectable-borderColor-selected: #6D18BD;
769
- --saltInputLegacy-fontSize: 12px;
770
- --salt-text-label-fontSize: 10px;
771
- --saltFormFieldLegacy-label-paddingLeft: 0;
772
- --saltFormField-label-fontWeight: 400;
773
- --saltText-color: var(--text-secondary-foreground, #606477);
774
- }
775
- .saveLayoutPanel-panelContainer {
776
- display: flex;
777
- flex-direction: column;
778
- align-items: flex-start;
779
- }
780
- .saveLayoutPanel-panelContent {
781
- display: flex;
782
- align-items: flex-start;
783
- gap: 32px;
784
- }
785
- .saveLayoutPanel-formContainer {
786
- display: flex;
787
- width: 217px;
788
- flex-direction: column;
789
- align-items: flex-start;
790
- gap: 16px;
791
- }
792
- .saveLayoutPanel-formField {
793
- display: flex;
794
- flex-direction: column;
795
- gap: 1px;
796
- }
797
- .saveLayoutPanel-inputText {
798
- border: none;
799
- color: var(--light-text-primary, #15171B);
800
- font-family: Nunito Sans A-Variant, serif;
801
- font-feature-settings:
802
- "ss02" on,
803
- "ss01" on,
804
- "salt" on,
805
- "liga" off;
806
- font-size: 12px;
807
- font-weight: 400;
808
- line-height: 16px;
809
- padding-left: 4px;
810
- width: 100%;
811
- outline: none;
812
- }
813
- .saveLayoutPanel-settingsGroup {
814
- display: flex;
815
- flex-wrap: wrap;
816
- align-items: flex-end;
817
- gap: 10px;
818
- width: 100%;
819
- line-height: 16px;
820
- }
821
- .saveLayoutPanel-screenshotContainer {
822
- display: flex;
823
- width: 304px;
824
- height: 208px;
825
- padding: 11px 15.5px;
826
- justify-content: center;
827
- align-items: center;
828
- border: 1px solid #E8E8E8;
829
- background: var(--dark-text-primary, #FFF);
830
- }
831
- .saveLayoutPanel-screenshot {
832
- display: flex;
833
- justify-content: center;
834
- align-items: center;
835
- background: lightgray 50% / cover no-repeat;
836
- width: 273px;
837
- height: 186px;
838
- flex-shrink: 0;
839
- }
840
- .saveLayoutPanel-buttonsContainer {
841
- display: flex;
842
- justify-content: flex-end;
843
- align-items: flex-start;
844
- align-self: stretch;
845
- padding-top: 24px;
846
- gap: 8px;
847
- }
848
- .saveLayoutPanel-cancelButton,
849
- .saveLayoutPanel-saveButton {
850
- display: flex;
851
- height: fit-content;
852
- padding: 4px 8px;
853
- align-items: flex-start;
854
- gap: 8px;
855
- border-radius: 6px;
856
- font-size: 12px;
857
- font-style: normal;
858
- font-weight: 700;
859
- line-height: 133.333%;
860
- letter-spacing: 0.48px;
861
- text-transform: uppercase;
862
- }
863
- .saveLayoutPanel-cancelButton {
864
- color: var(--actionable-primary-foreground-default, #606477);
865
- background: var(--actionable-primary-background-default, #FFF);
866
- }
867
- .saveLayoutPanel-saveButton {
868
- background: #6D18BD;
869
- border-color: #6D18BD;
870
- color: white;
871
- }
872
- .saveLayoutPanel-saveButton.saltButton:disabled {
873
- background: #6D18BD;
874
- border-color: #6D18BD;
875
- color: white;
876
- opacity: 0.3;
877
- }
878
- .saveLayoutPanel-saveButton.saltButton:hover {
879
- background: #F37880;
880
- border-color: #F37880;
881
- color: white;
882
- }
883
-
884
- /* ../vuu-shell/src/layout-management/LayoutList.css */
885
- .vuuLayoutList {
886
- --vuuMeasuredContainer-flex: 1 1 1px;
887
- align-self: stretch;
888
- display: flex;
889
- flex-direction: column;
890
- height: 100%;
891
- overflow: hidden;
892
- }
893
- .vuuLayoutList-header {
894
- color: var(--light-text-primary, #15171B);
895
- flex: 0 0 47px;
896
- font-weight: 700;
897
- letter-spacing: 0.48px;
898
- text-transform: uppercase;
899
- display: flex;
900
- padding: 16px 0px;
901
- border-bottom: 1px solid rgba(119, 124, 148, 0.10);
902
- line-height: 200%;
903
- }
904
- .vuuLayoutList-groupName {
905
- display: flex;
906
- padding-top: 24px;
907
- color: var(--light-text-secondary, #606477);
908
- font-weight: 700;
909
- letter-spacing: 0.48px;
910
- line-height: 200%;
911
- }
912
- .vuuLayoutList-layoutContainer {
913
- display: flex;
914
- align-items: center;
915
- gap: 8px;
916
- padding: 8px 0px;
917
- flex: 1 1 auto;
918
- cursor: pointer;
919
- }
920
- .vuuLayoutList-layoutName {
921
- color: var(--light-text-primary, #15171B);
922
- font-weight: 600;
923
- line-height: 133.333%;
924
- text-transform: capitalize;
925
- }
926
- .vuuLayoutList-screenshot {
927
- width: 60px;
928
- height: 45.6px;
929
- border: 1px solid #D6D7DA;
930
- }
931
- .vuuLayoutList-layoutDetails {
932
- color: var(--light-text-secondary, #606477);
933
- font-size: 10px;
934
- font-weight: 600;
935
- line-height: 150%;
936
- }
937
-
938
- /* ../vuu-shell/src/feature-list/FeatureList.css */
939
- .vuuFeatureList {
940
- background: var(--vuuFeatureList-background, var(--salt-container-primary-background));
941
- display: flex;
942
- flex-direction: column;
943
- height: 100%;
944
- padding: 195px 32px 16px 24px;
945
- }
946
- .vuuFeatureList-header {
947
- flex: 0 0 40px;
948
- font-size: 12px;
949
- font-weight: 700;
950
- line-height: 2;
951
- }
952
- .vuuFeatureList-content {
953
- flex: 1 1 auto;
954
- font-size: 12px;
955
- font-weight: 700;
956
- }
957
-
958
- /* ../vuu-shell/src/left-nav/LeftNav.css */
959
- .vuuLeftNav {
960
- --salt-navigable-fontWeight-active: 700;
961
- --vuuTab-background-selected: rgba(255, 255, 255, 0.10);
962
- --vuuTab-hover-background: rgba(255, 255, 255, 0.10);
963
- --vuuTab-before-content: none;
964
- --vuuTab-borderRadius: 6px;
965
- --vuuTab-height: 40px;
966
- --vuuTab-padding: 0 0 0 48px;
967
- --vuuTabstrip-fontWeight: 700;
968
- --vuuTabstrip-width: 100%;
969
- --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>');
970
- --svg-features: 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>');
971
- --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>');
972
- --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>');
973
- --vuu-light-text-primary: #15171b;
974
- --menu-level-2-width: 0px;
975
- box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
976
- display: flex;
977
- height: calc(100% - 4px);
978
- margin-bottom: 4px;
979
- overflow: hidden;
980
- position: relative;
981
- transition: width .2s ease-out;
982
- z-index: 0;
983
- }
984
- .vuuLeftNav-menu-full {
985
- --menu-width: var(--nav-menu-expanded-width);
986
- }
987
- .vuuLeftNav-menu-icons {
988
- --menu-width: var(--nav-menu-collapsed-width);
989
- }
990
- .vuuLeftNav-menu-icons-content {
991
- --menu-width: var(--nav-menu-collapsed-width);
992
- --menu-level-2-width: var(--nav-menu-content-width);
993
- }
994
- .vuuLeftNav-menu-full-content {
995
- --menu-width: var(--nav-menu-expanded-width);
996
- --menu-level-2-width: var(--nav-menu-content-width);
997
- }
998
- .vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,
999
- .vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary {
1000
- display: flex;
1001
- }
1002
- .vuuLeftNav-menu-primary {
1003
- background-color: #2A015F;
1004
- container-type: inline-size;
1005
- display: flex;
1006
- flex-direction: column;
1007
- height: 100%;
1008
- padding: 32px 16px;
1009
- transition: flex-basis ease-out .2s;
1010
- flex-grow: 0;
1011
- flex-shrink: 0;
1012
- flex-basis: var(--menu-width);
1013
- }
1014
- .vuuLeftNav-menu-secondary {
1015
- flex: 1 1 auto;
1016
- display: none;
1017
- top: 0;
1018
- right: 0;
1019
- flex-grow: 0;
1020
- flex-shrink: 0;
1021
- flex-basis: var(--nav-menu-content-width, 240px);
1022
- z-index: -1;
1023
- }
1024
- .vuuLeftNav .vuuTabstrip {
1025
- margin-top: 102px;
1026
- }
1027
- .vuuLeftNav .vuuTab {
1028
- --vuuTab-focusVisible-color: pink;
1029
- --vuu-icon-color: white;
1030
- --vuu-icon-left: 12px;
1031
- --vuu-icon-size: 16px;
1032
- border-left: solid 4px transparent;
1033
- }
1034
- .vuuLeftNav .vuuTab-selected {
1035
- --vuu-icon-color: var(--salt-navigable-indicator-active);
1036
- border-left: solid 4px var(--salt-navigable-indicator-active);
1037
- }
1038
- .vuuLeftNav-logo {
1039
- display: flex;
1040
- flex: 0 0 auto;
1041
- justify-content: center;
1042
- }
1043
- .vuuLeftNav-main {
1044
- flex: 1 1 auto;
1045
- }
1046
- .vuuLeftNav-menu {
1047
- color: white;
1048
- margin-top: 102px;
1049
- padding: 0;
1050
- }
1051
- .vuuLeftNav [data-icon=demo] {
1052
- --vuu-icon-svg: var(--svg-demo);
1053
- }
1054
- .vuuLeftNav [data-icon=tables] {
1055
- --vuu-icon-svg: var(--svg-tables);
1056
- }
1057
- .vuuLeftNav [data-icon=features] {
1058
- --vuu-icon-svg: var(--svg-features);
1059
- }
1060
- .vuuLeftNav [data-icon=layouts] {
1061
- --vuu-icon-svg: var(--svg-layouts);
1062
- }
1063
- @container (max-width: 100px) {
1064
- .vuuTab {
1065
- --vuuTab-padding: 0 0 0 42px;
1066
- }
1067
- .vuuTab-main {
1068
- display: none !important;
1069
- }
1070
- }
1071
- .vuuLeftNav-buttonBar {
1072
- align-items: center;
1073
- display: flex;
1074
- flex: 0 0 100px;
1075
- justify-content: center;
1076
- }
1077
- .vuuLeftNav-toggleButton {
1078
- --vuu-icon-color: var(--vuu-light-text-primary);
1079
- --vuu-icon-left: 11px;
1080
- --vuu-icon-top: 10px;
1081
- --vuu-icon-size: 16px;
1082
- background-color: var(--salt-navigable-indicator-active);
1083
- border-width: 0;
1084
- border-radius: 18px;
1085
- height: 36px;
1086
- position: relative;
1087
- width: 36px;
1088
- }
1089
- .vuuLeftNav-toggleButton-open {
1090
- --vuu-icon-left: 9px;
1091
- }
1092
- .vuuLeftNav-drawer {
1093
- display: flex;
1094
- padding: 40px 32px 0px 24px;
1095
- flex-direction: column;
1096
- align-items: flex-start;
1097
- flex-shrink: 0;
1098
- align-self: stretch;
1099
- background: #FFF;
1100
- box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
1101
- height: 100%;
1102
- }
1103
-
1104
- /* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
1105
- .vuuSessionEditingForm {
1106
- display: flex;
1107
- flex-direction: column;
1108
- gap: 3px;
1109
- min-width: 400px;
1110
- padding: 6px;
1111
- }
1112
- .vuuSessionEditingForm-content {
1113
- display: flex;
1114
- flex-direction: column;
1115
- flex: 1 1 auto;
1116
- gap: 3px;
1117
- overflow: auto;
1118
- }
1119
- .vuuSessionEditingForm-field {
1120
- align-items: center;
1121
- display: flex;
1122
- height: 32px;
1123
- }
1124
- .vuuSessionEditingForm-fieldLabel {
1125
- flex: 0 0 50%;
1126
- }
1127
- .vuuSessionEditingForm-fieldValue {
1128
- max-width: 50%;
1129
- }
1130
- .vuuSessionEditingForm-fieldValue.vuuReadOnly {
1131
- font-weight: var(--salt-text-label-fontWeight-strong);
1132
- }
1133
- .vuuSessionEditingForm-buttonbar {
1134
- align-items: center;
1135
- border-top: solid 1px var(--salt-container-primary-borderColor);
1136
- display: flex;
1137
- justify-content: flex-end;
1138
- flex: 0 0 autox;
1139
- gap: 6px;
1140
- padding-top: 6px;
1141
- }
1142
- .vuuSessionEditingForm-errorBanner {
1143
- --vuu-icon-left: 3px;
1144
- --vuu-icon-size: 18px;
1145
- --vuu-icon-top: 3px;
1146
- border: solid 1px var(--salt-status-error-borderColor);
1147
- line-height: 24px;
1148
- padding: 0 6px 0 26px;
1149
- position: relative;
1150
- }
1151
-
1152
- /* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
1153
- .vuuContextPanel {
1154
- position: relative;
1155
- transition: width .3s ease-in-out;
1156
- width: var(--vuu-side-panel-width, 0px) !important;
1157
- z-index: 1;
1158
- }
1159
- .vuuContextPanel-expanded {
1160
- --vuu-side-panel-width: 300px !important;
1161
- --vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
1162
- --vuu-side-panel-padding: 24px;
1163
- }
1164
- .vuuContextPanel-overlay {
1165
- width: 0px !important;
1166
- }
1167
- .vuuContextPanel-inner {
1168
- background-color: var(--salt-container-primary-background);
1169
- box-shadow: var(--vuu-side-panel-shadow, none);
1170
- display: flex;
1171
- flex-direction: column;
1172
- height: 100%;
1173
- min-width: 0 !important;
1174
- overflow: auto;
1175
- padding-bottom: 24px;
1176
- padding-top: 24px;
1177
- padding-left: var(--vuu-side-panel-padding, 0);
1178
- padding-right: var(--vuu-side-panel-padding, 0);
1179
- position: absolute !important;
1180
- right: 0;
1181
- top: 0;
1182
- transition-property:
1183
- padding-left,
1184
- padding-right,
1185
- width;
1186
- transition-duration: .3s;
1187
- transition-timing-function: ease-in-out;
1188
- width: var(--vuu-side-panel-width, 0px);
1189
- }
1190
- .vuuContextPanel-header {
1191
- align-items: center;
1192
- display: flex;
1193
- flex-wrap: nowrap;
1194
- flex: 0 0 27px !important;
1195
- justify-content: space-between;
1196
- }
1197
- .vuuContextPanel-title {
1198
- font-size: 20px;
1199
- font-weight: 700;
1200
- white-space: nowrap;
1201
- }
1202
- .vuuContextPanel-content {
1203
- flex: 1 1 auto;
1204
- width: 100%;
1205
- }
1206
-
1207
- /* ../vuu-shell/src/shell-layouts/side-panel/SidePanel.css */
1208
- .vuuShellSidePanel {
1209
- transition: width .2s ease-out;
1210
- width: var(--shell-left-nav-size);
1211
- }
1212
-
1213
- /* ../vuu-shell/src/shell.css */
1214
- .vuuShell {
1215
- background-color: var(--vuu-color-gray-25);
1216
- height: var(--vuuShell-height, 100vh);
1217
- width: var(--vuuShell-width, 100vw);
1218
- }
1219
- .vuuShell-mainTabs {
1220
- background: var(--salt-container-primary-background);
1221
- }
1222
- .vuuShell-palette {
1223
- --vuuView-border: none;
1224
- --vuuView-margin: 0;
1225
- }
1226
- .vuuShell-warningPlaceholder {
1227
- background-color: var(--salt-container-background-high);
1228
- height: 100%;
1229
- }
1230
- .vuuToolbarProxy {
1231
- background: var(--salt-container-primary-background);
1232
- }
1233
- .vuuShell-mainTabs > .vuuTabstrip > .vuuOverflowContainer-wrapContainer {
1234
- background: var(--vuu-color-gray-25);
1235
- }
1236
- .vuuShell-mainTabs {
1237
- --vuuTab-height: 28px;
1238
- border: solid 1px #D6D7DA;
1239
- border-top: none !important;
1240
- border-radius: 6px;
1241
- height: 100%;
1242
- padding: 36px 8px 8px 8px;
1243
- position: relative;
1244
- width: 100%;
1245
- }
1246
- .vuuShell-mainTabs > .vuuTabstrip {
1247
- --vuuTabstrip-height: 28px;
1248
- --saltTabs-tabstrip-height: 29px;
1249
- --tabstrip-height: 29px;
1250
- left: -1px;
1251
- padding-bottom: 7px;
1252
- position: absolute !important;
1253
- right: 1px;
1254
- top: 0;
1255
- width: calc(100% + 2px) !important;
1256
- }
1257
- .vuuShell-mainTabs > .vuuTabHeader {
1258
- border-bottom: none;
1259
- }
1260
- .vuuShell-mainTabs > .vuuTabstrip:before {
1261
- background-color: transparent;
1262
- border-radius: 0 6px 0 0;
1263
- border-left: solid 1px #D6D7DA;
1264
- border-right: solid 1px #D6D7DA;
1265
- border-top: solid 1px #D6D7DA;
1266
- content: "";
1267
- position: absolute;
1268
- bottom: 0;
1269
- left: 0;
1270
- right: 0;
1271
- height: 8px;
1272
- z-index: 1;
1273
- }
1274
- .vuuTab.MainTab {
1275
- --vuuTabMenu-top: -1px;
1276
- background-color: #F1F2F4;
1277
- border-color: #D6D7DA;
1278
- border-radius: 6px 6px 0 0;
1279
- border-width: 1px;
1280
- border-style: solid;
1281
- position: relative;
1282
- }
1283
- .MainTab.vuuTab-selected {
1284
- background-color: white;
1285
- border-bottom-color: white;
1286
- z-index: 1;
1287
- }
1288
- .MainTab.vuuTab-selected:before {
1289
- background-color: #6d188b;
1290
- content: "";
1291
- position: absolute;
1292
- height: 100%;
1293
- left: 0;
1294
- top: 0;
1295
- border-radius: 6px 0 0 0;
1296
- width: 6px;
1297
- }
1298
- .MainTab.vuuTab:hover:before {
1299
- background-color: #F37880;
1300
- content: "";
1301
- position: absolute;
1302
- height: 100%;
1303
- left: 0;
1304
- top: 0;
1305
- border-radius: 6px 0 0 0;
1306
- width: 6px;
1307
- }
1308
- .vuuTab.MainTab .vuuTab-main {
1309
- background-color: transparent;
1310
- font-weight: 700;
1311
- height: 29px;
1312
- padding: 0 24px;
1313
- }
1314
-
1315
- /* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
1316
- .vuuThemeSwitch {
1317
- --saltButton-minWidth: 22px;
1318
- --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>');
1319
- --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>');
1320
- padding: 2px;
1321
- }
1322
- .salt-density-high .vuuThemeSwitch {
1323
- --saltButton-minWidth: 16px;
1324
- --saltButton-width: 18px;
1325
- --vuuThemeSwitch-iconSize: 16px;
1326
- }
1327
- .vuuThemeSwitch [data-icon] {
1328
- --vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
1329
- }
1330
- .vuuThemeSwitch [data-icon=light] {
1331
- --vuu-icon-svg: var(--svg-light);
1332
- }
1333
- .vuuThemeSwitch [data-icon=dark] {
1334
- --vuu-icon-svg: var(--svg-dark);
1335
- }
1336
- .vuuThemeSwitch .saltToggleButton {
1337
- height: 20px;
1338
- width: 20px;
673
+ background:
674
+ repeating-linear-gradient(
675
+ to right,
676
+ var(--hw-fluid-grid-col-bg) 0,
677
+ var(--hw-fluid-grid-col-bg) var(--column-width),
678
+ white var(--column-width),
679
+ white calc(var(--column-width) + var(--gutter-width)));
1339
680
  }
1340
681
 
1341
682
  /* src/measured-container/MeasuredContainer.css */