@vsn-ux/gaia-styles 0.6.2 → 0.6.4

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.
@@ -492,6 +492,288 @@
492
492
  }
493
493
  }
494
494
  }
495
+ .ga-breadcrumb {
496
+ display: flex;
497
+ flex-wrap: wrap;
498
+ align-content: flex-start;
499
+ align-items: flex-start;
500
+ gap: calc(0.25rem * 6);
501
+ }
502
+ .ga-breadcrumb-item {
503
+ position: relative;
504
+ display: inline-flex;
505
+ align-items: center;
506
+ gap: calc(0.25rem * 6);
507
+ .ga-breadcrumb-item__explorer {
508
+ cursor: pointer;
509
+ border-radius: var(--ga-radius);
510
+ font-size: calc(
511
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
512
+ );
513
+ line-height: var(--tw-leading, calc(
514
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
515
+ ));
516
+ letter-spacing: var(--tw-tracking, calc(
517
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
518
+ ));
519
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
520
+ transition-timing-function: var(--tw-ease, ease);
521
+ transition-duration: var(--tw-duration, 0s);
522
+ transition-duration: var(--ga-duration-instant);
523
+ transition-timing-function: var(--ga-easing-standard);
524
+ --tw-outline-style: none;
525
+ outline-style: none;
526
+ .ga-icon {
527
+ color: var(--ga-color-icon-action);
528
+ }
529
+ &:hover .ga-icon {
530
+ color: var(--ga-color-icon-action-hover);
531
+ }
532
+ }
533
+ &.ga-breadcrumb-item--overflow {
534
+ align-items: center;
535
+ gap: calc(0.25rem * 3);
536
+ .ga-breadcrumb-item__menu {
537
+ left: calc(var(--ga-size-spacing-02) * -1);
538
+ }
539
+ .ga-breadcrumb-item__trigger {
540
+ display: flex;
541
+ cursor: pointer;
542
+ align-items: center;
543
+ justify-content: center;
544
+ gap: calc(0.25rem * 2);
545
+ border-radius: var(--ga-radius);
546
+ font-size: calc(
547
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
548
+ );
549
+ line-height: var(--tw-leading, calc(
550
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
551
+ ));
552
+ letter-spacing: var(--tw-tracking, calc(
553
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
554
+ ));
555
+ --tw-font-weight: 400;
556
+ font-weight: 400;
557
+ color: var(--ga-color-text-action);
558
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
559
+ transition-timing-function: var(--tw-ease, ease);
560
+ transition-duration: var(--tw-duration, 0s);
561
+ transition-duration: var(--ga-duration-instant);
562
+ transition-timing-function: var(--ga-easing-standard);
563
+ .ga-breadcrumb-item__label {
564
+ max-width: calc(0.25rem * 80);
565
+ overflow: hidden;
566
+ text-overflow: ellipsis;
567
+ white-space: nowrap;
568
+ color: var(--ga-color-text-action);
569
+ }
570
+ .ga-icon {
571
+ color: var(--ga-color-icon-action);
572
+ }
573
+ &:hover {
574
+ .ga-breadcrumb-item__label {
575
+ text-decoration-line: underline;
576
+ }
577
+ }
578
+ &:focus-visible {
579
+ --tw-outline-style: none;
580
+ outline-style: none;
581
+ .ga-breadcrumb-item__label {
582
+ border-radius: 2px;
583
+ text-decoration-line: none;
584
+ outline-style: var(--tw-outline-style);
585
+ outline-width: 2px;
586
+ outline-offset: 2px;
587
+ outline-color: var(--ga-color-border-focus);
588
+ }
589
+ }
590
+ &[aria-expanded='true'] {
591
+ --tw-outline-style: none;
592
+ outline-style: none;
593
+ .ga-breadcrumb-item__label {
594
+ border-radius: 2px;
595
+ text-decoration-line: none;
596
+ outline-style: var(--tw-outline-style);
597
+ outline-width: 2px;
598
+ outline-offset: 2px;
599
+ outline-color: var(--ga-color-border-focus);
600
+ }
601
+ }
602
+ }
603
+ .ga-breadcrumb-item__separator {
604
+ font-size: calc(
605
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
606
+ );
607
+ line-height: var(--tw-leading, calc(
608
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
609
+ ));
610
+ letter-spacing: var(--tw-tracking, calc(
611
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
612
+ ));
613
+ color: var(--ga-color-text-body);
614
+ }
615
+ }
616
+ &.ga-breadcrumb-item--current-page {
617
+ gap: calc(0.25rem * 3);
618
+ .ga-breadcrumb-item__trigger {
619
+ padding-right: calc(0.25rem * 1);
620
+ font-size: calc(
621
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
622
+ );
623
+ line-height: var(--tw-leading, calc(
624
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
625
+ ));
626
+ letter-spacing: var(--tw-tracking, calc(
627
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
628
+ ));
629
+ --tw-font-weight: 600;
630
+ font-weight: 600;
631
+ color: var(--ga-color-text-body);
632
+ .ga-breadcrumb-item__label {
633
+ max-width: calc(0.25rem * 80);
634
+ overflow: hidden;
635
+ text-overflow: ellipsis;
636
+ white-space: nowrap;
637
+ }
638
+ }
639
+ }
640
+ &.ga-breadcrumb-item--back {
641
+ align-items: center;
642
+ gap: calc(0.25rem * 2);
643
+ .ga-breadcrumb-item__trigger {
644
+ display: inline-flex;
645
+ cursor: pointer;
646
+ align-items: center;
647
+ border-radius: var(--ga-radius);
648
+ font-size: calc(
649
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
650
+ );
651
+ line-height: var(--tw-leading, calc(
652
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
653
+ ));
654
+ letter-spacing: var(--tw-tracking, calc(
655
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
656
+ ));
657
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
658
+ transition-timing-function: var(--tw-ease, ease);
659
+ transition-duration: var(--tw-duration, 0s);
660
+ transition-duration: var(--ga-duration-instant);
661
+ transition-timing-function: var(--ga-easing-standard);
662
+ .ga-icon {
663
+ color: var(--ga-color-icon-action);
664
+ }
665
+ &:hover {
666
+ .ga-icon {
667
+ color: var(--ga-color-icon-action-hover);
668
+ }
669
+ }
670
+ &:focus-visible {
671
+ outline-style: var(--tw-outline-style);
672
+ outline-width: 2px;
673
+ outline-offset: 2px;
674
+ outline-color: var(--ga-color-border-focus);
675
+ }
676
+ }
677
+ .ga-breadcrumb-item__label {
678
+ font-size: calc(
679
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
680
+ );
681
+ line-height: var(--tw-leading, calc(
682
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
683
+ ));
684
+ letter-spacing: var(--tw-tracking, calc(
685
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
686
+ ));
687
+ --tw-font-weight: 600;
688
+ font-weight: 600;
689
+ color: var(--ga-color-text-body);
690
+ }
691
+ }
692
+ &.ga-breadcrumb-item--link {
693
+ gap: calc(0.25rem * 3);
694
+ .ga-breadcrumb-item__trigger {
695
+ display: inline-flex;
696
+ cursor: pointer;
697
+ align-items: center;
698
+ border-radius: var(--ga-radius);
699
+ padding-right: calc(0.25rem * 1);
700
+ font-size: calc(
701
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
702
+ );
703
+ line-height: var(--tw-leading, calc(
704
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
705
+ ));
706
+ letter-spacing: var(--tw-tracking, calc(
707
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
708
+ ));
709
+ --tw-font-weight: 400;
710
+ font-weight: 400;
711
+ color: var(--ga-color-text-action);
712
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
713
+ transition-timing-function: var(--tw-ease, ease);
714
+ transition-duration: var(--tw-duration, 0s);
715
+ transition-duration: var(--ga-duration-instant);
716
+ transition-timing-function: var(--ga-easing-standard);
717
+ .ga-breadcrumb-item__label {
718
+ max-width: calc(0.25rem * 80);
719
+ overflow: hidden;
720
+ text-overflow: ellipsis;
721
+ white-space: nowrap;
722
+ color: var(--ga-color-text-action);
723
+ }
724
+ &:hover {
725
+ color: var(--ga-color-text-action-hover);
726
+ text-decoration-line: underline;
727
+ .ga-breadcrumb-item__label {
728
+ color: var(--ga-color-text-action-hover);
729
+ text-decoration-line: underline;
730
+ }
731
+ }
732
+ &:active {
733
+ color: var(--ga-color-text-action-hover);
734
+ .ga-breadcrumb-item__label {
735
+ color: var(--ga-color-text-action-hover);
736
+ }
737
+ }
738
+ &:focus-visible {
739
+ outline-style: var(--tw-outline-style);
740
+ outline-width: 2px;
741
+ outline-offset: 2px;
742
+ outline-color: var(--ga-color-border-focus);
743
+ }
744
+ }
745
+ .ga-breadcrumb-item__explorer {
746
+ padding-right: calc(0.25rem * 1);
747
+ }
748
+ .ga-breadcrumb-item__separator {
749
+ font-size: calc(
750
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
751
+ );
752
+ line-height: var(--tw-leading, calc(
753
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
754
+ ));
755
+ letter-spacing: var(--tw-tracking, calc(
756
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
757
+ ));
758
+ color: var(--ga-color-text-body);
759
+ }
760
+ }
761
+ .ga-breadcrumb-item__group {
762
+ display: inline-flex;
763
+ align-items: center;
764
+ border-radius: var(--ga-radius);
765
+ &:focus-within {
766
+ outline-style: var(--tw-outline-style);
767
+ outline-width: 2px;
768
+ outline-offset: 2px;
769
+ outline-color: var(--ga-color-border-focus);
770
+ }
771
+ .ga-breadcrumb-item__trigger:focus-visible {
772
+ --tw-outline-style: none;
773
+ outline-style: none;
774
+ }
775
+ }
776
+ }
495
777
  .ga-button {
496
778
  display: inline-flex;
497
779
  height: calc(0.25rem * 10);
@@ -3426,6 +3708,721 @@
3426
3708
  }
3427
3709
  }
3428
3710
  }
3711
+ .ga-side-navigation {
3712
+ display: flex;
3713
+ height: 100%;
3714
+ width: calc(0.25rem * 80);
3715
+ flex-direction: column;
3716
+ border-radius: var(--ga-radius);
3717
+ background-color: var(--ga-color-surface-primary);
3718
+ padding: calc(0.25rem * 1);
3719
+ --tw-shadow: var(--ga-shadow-north);
3720
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3721
+ .ga-side-navigation__header {
3722
+ position: relative;
3723
+ z-index: 10;
3724
+ display: flex;
3725
+ flex-shrink: 0;
3726
+ flex-direction: column;
3727
+ }
3728
+ .ga-side-navigation__switcher {
3729
+ position: relative;
3730
+ display: flex;
3731
+ cursor: pointer;
3732
+ align-items: center;
3733
+ justify-content: space-between;
3734
+ gap: calc(0.25rem * 2);
3735
+ border-radius: var(--ga-radius);
3736
+ padding: calc(0.25rem * 3);
3737
+ --tw-outline-style: none;
3738
+ outline-style: none;
3739
+ &:hover {
3740
+ background-color: var(--ga-color-surface-action-hover-2);
3741
+ }
3742
+ &:focus-visible {
3743
+ &::after {
3744
+ position: absolute;
3745
+ inset: 3px;
3746
+ border-radius: var(--ga-radius);
3747
+ border-style: var(--tw-border-style);
3748
+ border-width: 2px;
3749
+ border-color: var(--ga-color-border-focus);
3750
+ --tw-content: '';
3751
+ content: var(--tw-content);
3752
+ }
3753
+ }
3754
+ &:active {
3755
+ .ga-side-navigation__switcher-title {
3756
+ --tw-font-weight: 600;
3757
+ font-weight: 600;
3758
+ }
3759
+ }
3760
+ &.ga-side-navigation__switcher--active {
3761
+ background-color: var(--ga-color-surface-selected);
3762
+ .ga-side-navigation__switcher-title {
3763
+ --tw-font-weight: 600;
3764
+ font-weight: 600;
3765
+ }
3766
+ }
3767
+ }
3768
+ .ga-side-navigation__switcher-title {
3769
+ min-width: calc(0.25rem * 0);
3770
+ flex: 1;
3771
+ overflow: hidden;
3772
+ text-overflow: ellipsis;
3773
+ white-space: nowrap;
3774
+ text-align: left;
3775
+ font-size: calc(
3776
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
3777
+ );
3778
+ line-height: var(--tw-leading, calc(
3779
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
3780
+ ));
3781
+ letter-spacing: var(--tw-tracking, calc(
3782
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
3783
+ ));
3784
+ --tw-font-weight: 500;
3785
+ font-weight: 500;
3786
+ color: var(--ga-color-text-action);
3787
+ }
3788
+ .ga-side-navigation__switcher-action {
3789
+ display: flex;
3790
+ flex-shrink: 0;
3791
+ cursor: pointer;
3792
+ align-items: center;
3793
+ padding-block: calc(0.25rem * 2);
3794
+ color: var(--ga-color-icon-secondary);
3795
+ &:hover {
3796
+ color: var(--ga-color-icon-action);
3797
+ }
3798
+ }
3799
+ .ga-side-navigation__switcher-dropdown {
3800
+ position: absolute;
3801
+ top: 100%;
3802
+ right: calc(0.25rem * 0);
3803
+ left: calc(0.25rem * 0);
3804
+ z-index: 10;
3805
+ display: flex;
3806
+ max-height: calc(0.25rem * 80);
3807
+ flex-direction: column;
3808
+ overflow-y: auto;
3809
+ border-radius: var(--ga-radius);
3810
+ background-color: var(--ga-color-surface-primary);
3811
+ padding-inline: calc(0.25rem * 2);
3812
+ padding-top: calc(0.25rem * 4);
3813
+ padding-bottom: calc(0.25rem * 2);
3814
+ --tw-shadow: var(--ga-shadow-north);
3815
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3816
+ }
3817
+ .ga-side-navigation__switcher-dropdown-header {
3818
+ padding-inline: calc(0.25rem * 4);
3819
+ padding-top: calc(0.25rem * 1);
3820
+ padding-bottom: calc(0.25rem * 1);
3821
+ font-size: calc(
3822
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
3823
+ );
3824
+ line-height: var(--tw-leading, calc(
3825
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
3826
+ ));
3827
+ letter-spacing: var(--tw-tracking, 0);
3828
+ --tw-font-weight: 600;
3829
+ font-weight: 600;
3830
+ color: var(--ga-color-text-disable-selected);
3831
+ text-transform: uppercase;
3832
+ }
3833
+ .ga-side-navigation__switcher-dropdown-item {
3834
+ position: relative;
3835
+ display: flex;
3836
+ cursor: pointer;
3837
+ align-items: center;
3838
+ gap: calc(0.25rem * 2);
3839
+ border-radius: var(--ga-radius);
3840
+ padding: calc(0.25rem * 4);
3841
+ text-align: left;
3842
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
3843
+ transition-timing-function: var(--tw-ease, ease);
3844
+ transition-duration: var(--tw-duration, 0s);
3845
+ transition-duration: var(--ga-duration-instant);
3846
+ transition-timing-function: var(--ga-easing-standard);
3847
+ &:hover {
3848
+ background-color: var(--ga-color-surface-action-hover-2);
3849
+ }
3850
+ &:focus-visible {
3851
+ --tw-outline-style: none;
3852
+ outline-style: none;
3853
+ &::after {
3854
+ position: absolute;
3855
+ inset: 3px;
3856
+ border-radius: var(--ga-radius);
3857
+ border-style: var(--tw-border-style);
3858
+ border-width: 2px;
3859
+ border-color: var(--ga-color-border-focus);
3860
+ --tw-content: '';
3861
+ content: var(--tw-content);
3862
+ }
3863
+ }
3864
+ &:active {
3865
+ .ga-side-navigation__switcher-dropdown-title {
3866
+ --tw-font-weight: 600;
3867
+ font-weight: 600;
3868
+ }
3869
+ }
3870
+ }
3871
+ .ga-side-navigation__switcher-dropdown-title {
3872
+ min-width: calc(0.25rem * 0);
3873
+ flex: 1;
3874
+ overflow: hidden;
3875
+ text-overflow: ellipsis;
3876
+ white-space: nowrap;
3877
+ text-align: left;
3878
+ font-size: calc(
3879
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
3880
+ );
3881
+ line-height: var(--tw-leading, calc(
3882
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
3883
+ ));
3884
+ letter-spacing: var(--tw-tracking, calc(
3885
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
3886
+ ));
3887
+ --tw-font-weight: 500;
3888
+ font-weight: 500;
3889
+ color: var(--ga-color-text-action);
3890
+ }
3891
+ .ga-side-navigation__switcher-dropdown-external {
3892
+ height: calc(0.25rem * 4);
3893
+ width: calc(0.25rem * 4);
3894
+ flex-shrink: 0;
3895
+ align-self: center;
3896
+ color: var(--ga-color-icon-secondary);
3897
+ }
3898
+ .ga-side-navigation__search {
3899
+ margin-inline: calc(0.25rem * 3);
3900
+ margin-block: calc(0.25rem * 2);
3901
+ &.ga-input {
3902
+ width: auto;
3903
+ &:not(:hover) {
3904
+ border-color: var(--ga-color-surface-page);
3905
+ background-color: var(--ga-color-surface-page);
3906
+ }
3907
+ input::-webkit-search-cancel-button {
3908
+ display: none;
3909
+ }
3910
+ }
3911
+ }
3912
+ .ga-side-navigation__search-shortcut {
3913
+ flex-shrink: 0;
3914
+ cursor: default;
3915
+ border-radius: var(--ga-radius);
3916
+ border-style: var(--tw-border-style);
3917
+ border-width: 1px;
3918
+ border-color: var(--ga-color-border-disabled);
3919
+ background-color: #fff;
3920
+ padding-inline: calc(0.25rem * 1);
3921
+ padding-block: 1px;
3922
+ font-family: Inter, ui-sans-serif, system-ui, sans-serif;
3923
+ font-feature-settings: 'liga' 1, 'calt' 1;
3924
+ font-size: calc(
3925
+ var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
3926
+ );
3927
+ line-height: var(--tw-leading, calc(
3928
+ var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
3929
+ ));
3930
+ letter-spacing: var(--tw-tracking, calc(
3931
+ var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
3932
+ ));
3933
+ color: var(--ga-color-icon-on-disabled);
3934
+ }
3935
+ .ga-side-navigation__body {
3936
+ display: flex;
3937
+ flex: 1;
3938
+ flex-direction: column;
3939
+ overflow-y: auto;
3940
+ padding-inline: calc(0.25rem * 3);
3941
+ padding-block: calc(0.25rem * 2);
3942
+ }
3943
+ .ga-side-navigation__item {
3944
+ position: relative;
3945
+ display: flex;
3946
+ cursor: pointer;
3947
+ flex-direction: row;
3948
+ align-items: center;
3949
+ gap: calc(0.25rem * 3);
3950
+ border-radius: var(--ga-radius);
3951
+ padding-inline: calc(0.25rem * 4);
3952
+ padding-block: calc(0.25rem * 3);
3953
+ text-align: left;
3954
+ font-size: calc(
3955
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
3956
+ );
3957
+ line-height: var(--tw-leading, calc(
3958
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
3959
+ ));
3960
+ letter-spacing: var(--tw-tracking, calc(
3961
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
3962
+ ));
3963
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
3964
+ transition-timing-function: var(--tw-ease, ease);
3965
+ transition-duration: var(--tw-duration, 0s);
3966
+ transition-duration: var(--ga-duration-instant);
3967
+ transition-timing-function: var(--ga-easing-standard);
3968
+ &:hover {
3969
+ background-color: var(--ga-color-surface-action-hover-2);
3970
+ }
3971
+ &:focus, &:focus-visible {
3972
+ --tw-outline-style: none;
3973
+ outline-style: none;
3974
+ }
3975
+ &:active:not(.ga-side-navigation__item--disabled) {
3976
+ .ga-side-navigation__item-label {
3977
+ --tw-font-weight: 500;
3978
+ font-weight: 500;
3979
+ }
3980
+ }
3981
+ &.ga-side-navigation__item--active {
3982
+ background-color: var(--ga-color-surface-selected);
3983
+ &::before {
3984
+ position: absolute;
3985
+ top: calc(1 / 2 * 100%);
3986
+ left: calc(0.25rem * 0);
3987
+ height: calc(0.25rem * 8);
3988
+ width: calc(0.25rem * 1);
3989
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
3990
+ translate: var(--tw-translate-x) var(--tw-translate-y);
3991
+ border-top-right-radius: var(--ga-radius);
3992
+ border-bottom-right-radius: var(--ga-radius);
3993
+ background-color: var(--ga-color-surface-action);
3994
+ --tw-content: '';
3995
+ content: var(--tw-content);
3996
+ }
3997
+ .ga-side-navigation__item-label {
3998
+ --tw-font-weight: 600;
3999
+ font-weight: 600;
4000
+ }
4001
+ }
4002
+ &.ga-side-navigation__item--expanded {
4003
+ .ga-side-navigation__item-label {
4004
+ --tw-font-weight: 600;
4005
+ font-weight: 600;
4006
+ }
4007
+ }
4008
+ &.ga-side-navigation__item--disabled {
4009
+ cursor: not-allowed;
4010
+ &:hover {
4011
+ background-color: transparent;
4012
+ }
4013
+ .ga-side-navigation__item-icon {
4014
+ color: var(--ga-color-icon-disabled);
4015
+ }
4016
+ .ga-side-navigation__item-label {
4017
+ color: var(--ga-color-text-disabled);
4018
+ }
4019
+ }
4020
+ }
4021
+ .ga-side-navigation__item--level-2 {
4022
+ padding-left: calc(0.25rem * 8);
4023
+ }
4024
+ .ga-side-navigation__item--level-3 {
4025
+ padding-left: calc(0.25rem * 14);
4026
+ }
4027
+ .ga-side-navigation__item--level-4 {
4028
+ padding-left: calc(0.25rem * 20);
4029
+ }
4030
+ .ga-side-navigation__item-icon {
4031
+ height: calc(0.25rem * 4);
4032
+ width: calc(0.25rem * 4);
4033
+ flex-shrink: 0;
4034
+ color: var(--ga-color-icon-primary);
4035
+ }
4036
+ .ga-side-navigation__item-content {
4037
+ display: flex;
4038
+ min-width: calc(0.25rem * 0);
4039
+ flex: 1;
4040
+ flex-direction: column;
4041
+ }
4042
+ .ga-side-navigation__item-label {
4043
+ overflow: hidden;
4044
+ text-overflow: ellipsis;
4045
+ white-space: nowrap;
4046
+ font-size: calc(
4047
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
4048
+ );
4049
+ line-height: var(--tw-leading, calc(
4050
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
4051
+ ));
4052
+ letter-spacing: var(--tw-tracking, calc(
4053
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
4054
+ ));
4055
+ color: var(--ga-color-text-action);
4056
+ }
4057
+ .ga-side-navigation__item-description {
4058
+ overflow: hidden;
4059
+ text-overflow: ellipsis;
4060
+ white-space: nowrap;
4061
+ font-size: calc(
4062
+ var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
4063
+ );
4064
+ line-height: var(--tw-leading, calc(
4065
+ var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
4066
+ ));
4067
+ letter-spacing: var(--tw-tracking, calc(
4068
+ var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
4069
+ ));
4070
+ color: var(--ga-color-text-secondary);
4071
+ }
4072
+ .ga-side-navigation__item-external {
4073
+ height: calc(0.25rem * 4);
4074
+ width: calc(0.25rem * 4);
4075
+ flex-shrink: 0;
4076
+ align-self: center;
4077
+ color: var(--ga-color-icon-secondary);
4078
+ }
4079
+ .ga-side-navigation__recent-title {
4080
+ padding-inline: calc(0.25rem * 4);
4081
+ padding-block: calc(0.25rem * 3);
4082
+ font-size: calc(
4083
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
4084
+ );
4085
+ line-height: var(--tw-leading, calc(
4086
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
4087
+ ));
4088
+ letter-spacing: var(--tw-tracking, 0);
4089
+ --tw-font-weight: 500;
4090
+ font-weight: 500;
4091
+ color: var(--ga-color-text-disable-selected);
4092
+ text-transform: uppercase;
4093
+ }
4094
+ .ga-side-navigation__recent-item {
4095
+ position: relative;
4096
+ display: flex;
4097
+ cursor: pointer;
4098
+ flex-direction: row;
4099
+ align-items: center;
4100
+ gap: calc(0.25rem * 3);
4101
+ border-radius: var(--ga-radius);
4102
+ padding-block: calc(0.25rem * 2);
4103
+ padding-left: calc(0.25rem * 4);
4104
+ text-align: left;
4105
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
4106
+ transition-timing-function: var(--tw-ease, ease);
4107
+ transition-duration: var(--tw-duration, 0s);
4108
+ transition-duration: var(--ga-duration-instant);
4109
+ transition-timing-function: var(--ga-easing-standard);
4110
+ &:hover {
4111
+ background-color: var(--ga-color-surface-action-hover-2);
4112
+ }
4113
+ &:focus, &:focus-visible {
4114
+ --tw-outline-style: none;
4115
+ outline-style: none;
4116
+ }
4117
+ }
4118
+ .ga-side-navigation__recent-item-icon {
4119
+ flex-shrink: 0;
4120
+ color: var(--ga-color-icon-primary);
4121
+ }
4122
+ .ga-side-navigation__recent-item-content {
4123
+ display: flex;
4124
+ min-width: calc(0.25rem * 0);
4125
+ flex-direction: column;
4126
+ }
4127
+ .ga-side-navigation__recent-item-label {
4128
+ overflow: hidden;
4129
+ text-overflow: ellipsis;
4130
+ white-space: nowrap;
4131
+ font-size: calc(
4132
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
4133
+ );
4134
+ line-height: var(--tw-leading, calc(
4135
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
4136
+ ));
4137
+ letter-spacing: var(--tw-tracking, calc(
4138
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
4139
+ ));
4140
+ --tw-leading: calc(0.25rem * 6);
4141
+ line-height: calc(0.25rem * 6);
4142
+ --tw-font-weight: 500;
4143
+ font-weight: 500;
4144
+ color: var(--ga-color-text-action);
4145
+ }
4146
+ .ga-side-navigation__recent-item-description {
4147
+ overflow: hidden;
4148
+ text-overflow: ellipsis;
4149
+ white-space: nowrap;
4150
+ font-size: calc(
4151
+ var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
4152
+ );
4153
+ line-height: var(--tw-leading, calc(
4154
+ var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
4155
+ ));
4156
+ letter-spacing: var(--tw-tracking, calc(
4157
+ var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
4158
+ ));
4159
+ color: var(--ga-color-text-on-disabled);
4160
+ }
4161
+ .ga-side-navigation__search-results-title {
4162
+ padding-inline: calc(0.25rem * 6);
4163
+ font-size: calc(
4164
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
4165
+ );
4166
+ line-height: var(--tw-leading, calc(
4167
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
4168
+ ));
4169
+ letter-spacing: var(--tw-tracking, 0);
4170
+ --tw-leading: calc(0.25rem * 6);
4171
+ line-height: calc(0.25rem * 6);
4172
+ --tw-font-weight: 500;
4173
+ font-weight: 500;
4174
+ color: var(--ga-color-text-disable-selected);
4175
+ }
4176
+ .ga-side-navigation__search-results-item {
4177
+ position: relative;
4178
+ margin-inline: calc(0.25rem * 3);
4179
+ display: flex;
4180
+ cursor: pointer;
4181
+ flex-direction: row;
4182
+ align-items: center;
4183
+ gap: calc(0.25rem * 3);
4184
+ border-radius: var(--ga-radius);
4185
+ padding-inline: calc(0.25rem * 3);
4186
+ padding-block: calc(0.25rem * 2);
4187
+ text-align: left;
4188
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
4189
+ transition-timing-function: var(--tw-ease, ease);
4190
+ transition-duration: var(--tw-duration, 0s);
4191
+ transition-duration: var(--ga-duration-instant);
4192
+ transition-timing-function: var(--ga-easing-standard);
4193
+ &:hover {
4194
+ background-color: var(--ga-color-surface-action-hover-2);
4195
+ }
4196
+ &:focus-visible {
4197
+ --tw-outline-style: none;
4198
+ outline-style: none;
4199
+ &::after {
4200
+ position: absolute;
4201
+ inset: 3px;
4202
+ border-radius: var(--ga-radius);
4203
+ border-style: var(--tw-border-style);
4204
+ border-width: 2px;
4205
+ border-color: var(--ga-color-border-focus);
4206
+ --tw-content: '';
4207
+ content: var(--tw-content);
4208
+ }
4209
+ }
4210
+ }
4211
+ .ga-side-navigation__search-results-item-content {
4212
+ display: flex;
4213
+ min-width: calc(0.25rem * 0);
4214
+ flex: 1;
4215
+ flex-direction: column;
4216
+ }
4217
+ .ga-side-navigation__search-results-item-label {
4218
+ overflow: hidden;
4219
+ text-overflow: ellipsis;
4220
+ white-space: nowrap;
4221
+ font-size: calc(
4222
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
4223
+ );
4224
+ line-height: var(--tw-leading, calc(
4225
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
4226
+ ));
4227
+ letter-spacing: var(--tw-tracking, calc(
4228
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
4229
+ ));
4230
+ --tw-leading: calc(0.25rem * 6);
4231
+ line-height: calc(0.25rem * 6);
4232
+ --tw-font-weight: 500;
4233
+ font-weight: 500;
4234
+ color: var(--ga-color-text-action);
4235
+ }
4236
+ .ga-side-navigation__search-results-item-description {
4237
+ overflow: hidden;
4238
+ text-overflow: ellipsis;
4239
+ white-space: nowrap;
4240
+ font-size: calc(
4241
+ var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
4242
+ );
4243
+ line-height: var(--tw-leading, calc(
4244
+ var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
4245
+ ));
4246
+ letter-spacing: var(--tw-tracking, calc(
4247
+ var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
4248
+ ));
4249
+ color: var(--ga-color-text-on-disabled);
4250
+ }
4251
+ .ga-side-navigation__search-results-item-external {
4252
+ height: calc(0.25rem * 4);
4253
+ width: calc(0.25rem * 4);
4254
+ flex-shrink: 0;
4255
+ align-self: center;
4256
+ color: var(--ga-color-icon-secondary);
4257
+ }
4258
+ .ga-side-navigation__footer {
4259
+ position: relative;
4260
+ z-index: 10;
4261
+ flex-shrink: 0;
4262
+ border-top-style: var(--tw-border-style);
4263
+ border-top-width: 1px;
4264
+ border-color: var(--ga-color-border-tertiary);
4265
+ padding-top: calc(0.25rem * 1);
4266
+ }
4267
+ .ga-side-navigation__user {
4268
+ position: relative;
4269
+ display: flex;
4270
+ cursor: pointer;
4271
+ align-items: center;
4272
+ gap: calc(0.25rem * 3);
4273
+ border-radius: var(--ga-radius);
4274
+ padding-inline: calc(0.25rem * 4);
4275
+ padding-block: calc(0.25rem * 3);
4276
+ --tw-outline-style: none;
4277
+ outline-style: none;
4278
+ &:hover {
4279
+ background-color: var(--ga-color-surface-action-hover-2);
4280
+ }
4281
+ &:focus-visible {
4282
+ &::after {
4283
+ position: absolute;
4284
+ inset: 3px;
4285
+ border-radius: var(--ga-radius);
4286
+ border-style: var(--tw-border-style);
4287
+ border-width: 2px;
4288
+ border-color: var(--ga-color-border-focus);
4289
+ --tw-content: '';
4290
+ content: var(--tw-content);
4291
+ }
4292
+ }
4293
+ &.ga-side-navigation__user--active {
4294
+ background-color: var(--ga-color-surface-selected);
4295
+ }
4296
+ }
4297
+ .ga-side-navigation__user-avatar {
4298
+ height: calc(0.25rem * 10);
4299
+ width: calc(0.25rem * 10);
4300
+ flex-shrink: 0;
4301
+ border-radius: calc(infinity * 1px);
4302
+ }
4303
+ .ga-side-navigation__user-name {
4304
+ flex: 1;
4305
+ overflow: hidden;
4306
+ text-overflow: ellipsis;
4307
+ white-space: nowrap;
4308
+ font-size: calc(
4309
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
4310
+ );
4311
+ line-height: var(--tw-leading, calc(
4312
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
4313
+ ));
4314
+ letter-spacing: var(--tw-tracking, calc(
4315
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
4316
+ ));
4317
+ --tw-font-weight: 500;
4318
+ font-weight: 500;
4319
+ color: var(--ga-color-text-body);
4320
+ }
4321
+ .ga-side-navigation__user-action {
4322
+ display: flex;
4323
+ flex-shrink: 0;
4324
+ cursor: pointer;
4325
+ align-items: center;
4326
+ color: var(--ga-color-icon-secondary);
4327
+ &:hover {
4328
+ color: var(--ga-color-icon-action);
4329
+ }
4330
+ }
4331
+ .ga-side-navigation__footer-dropdown {
4332
+ position: absolute;
4333
+ right: calc(0.25rem * 0);
4334
+ bottom: 100%;
4335
+ left: calc(0.25rem * 0);
4336
+ z-index: 10;
4337
+ display: flex;
4338
+ max-height: calc(0.25rem * 80);
4339
+ flex-direction: column;
4340
+ overflow-y: auto;
4341
+ border-radius: var(--ga-radius);
4342
+ background-color: var(--ga-color-surface-primary);
4343
+ padding: calc(0.25rem * 3);
4344
+ --tw-shadow: var(--ga-shadow-south);
4345
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
4346
+ }
4347
+ .ga-side-navigation__footer-dropdown-item {
4348
+ position: relative;
4349
+ display: flex;
4350
+ cursor: pointer;
4351
+ align-items: center;
4352
+ gap: calc(0.25rem * 3);
4353
+ border-radius: var(--ga-radius);
4354
+ padding-block: calc(0.25rem * 3);
4355
+ padding-right: calc(0.25rem * 2);
4356
+ padding-left: calc(0.25rem * 4);
4357
+ text-align: left;
4358
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
4359
+ transition-timing-function: var(--tw-ease, ease);
4360
+ transition-duration: var(--tw-duration, 0s);
4361
+ transition-duration: var(--ga-duration-instant);
4362
+ transition-timing-function: var(--ga-easing-standard);
4363
+ &:hover {
4364
+ background-color: var(--ga-color-surface-action-hover-2);
4365
+ }
4366
+ &:focus-visible {
4367
+ --tw-outline-style: none;
4368
+ outline-style: none;
4369
+ &::after {
4370
+ position: absolute;
4371
+ inset: 3px;
4372
+ border-radius: var(--ga-radius);
4373
+ border-style: var(--tw-border-style);
4374
+ border-width: 2px;
4375
+ border-color: var(--ga-color-border-focus);
4376
+ --tw-content: '';
4377
+ content: var(--tw-content);
4378
+ }
4379
+ }
4380
+ &:active {
4381
+ .ga-side-navigation__footer-dropdown-title {
4382
+ --tw-font-weight: 600;
4383
+ font-weight: 600;
4384
+ }
4385
+ }
4386
+ &.ga-side-navigation__footer-dropdown-item--disabled {
4387
+ cursor: not-allowed;
4388
+ &:hover {
4389
+ background-color: transparent;
4390
+ }
4391
+ .ga-side-navigation__footer-dropdown-icon {
4392
+ color: var(--ga-color-icon-disabled);
4393
+ }
4394
+ .ga-side-navigation__footer-dropdown-title {
4395
+ color: var(--ga-color-text-disabled);
4396
+ }
4397
+ }
4398
+ }
4399
+ .ga-side-navigation__footer-dropdown-icon {
4400
+ height: calc(0.25rem * 4);
4401
+ width: calc(0.25rem * 4);
4402
+ flex-shrink: 0;
4403
+ color: var(--ga-color-icon-primary);
4404
+ }
4405
+ .ga-side-navigation__footer-dropdown-title {
4406
+ min-width: calc(0.25rem * 0);
4407
+ flex: 1;
4408
+ overflow: hidden;
4409
+ text-overflow: ellipsis;
4410
+ white-space: nowrap;
4411
+ text-align: left;
4412
+ font-size: calc(
4413
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
4414
+ );
4415
+ line-height: var(--tw-leading, calc(
4416
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
4417
+ ));
4418
+ letter-spacing: var(--tw-tracking, calc(
4419
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
4420
+ ));
4421
+ --tw-font-weight: 500;
4422
+ font-weight: 500;
4423
+ color: var(--ga-color-text-action);
4424
+ }
4425
+ }
3429
4426
  }
3430
4427
  @property --tw-border-style {
3431
4428
  syntax: "*";