@unifiedsoftware/styles 2.0.0-beta.9 → 2.0.1-beta.10

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/css/styles.css CHANGED
@@ -1,22 +1,22 @@
1
1
  @charset "UTF-8";
2
2
  .us-toolbar {
3
+ flex-shrink: 0;
3
4
  position: relative;
4
5
  width: 100%;
5
- min-height: var(--us-toolbar-min-height);
6
+ height: var(--us-toolbar-height);
6
7
  padding-block: var(--us-toolbar-padding-y);
7
8
  padding-inline: var(--us-toolbar-padding-x);
8
- border-bottom: var(--us-toolbar-border);
9
- background: var(--us-toolbar-background);
9
+ color: var(--us-toolbar-color);
10
10
  display: flex;
11
11
  align-items: center;
12
12
  }
13
13
  .us-toolbar__container {
14
+ position: relative;
14
15
  width: 100%;
15
16
  margin: 0 auto;
16
17
  display: flex;
17
18
  align-items: center;
18
19
  gap: var(--us-toolbar-gap);
19
- z-index: 1;
20
20
  }
21
21
  .us-toolbar__start-action, .us-toolbar__start-content, .us-toolbar__end-action, .us-toolbar__end-content {
22
22
  flex-shrink: 0;
@@ -109,6 +109,30 @@
109
109
  align-items: center;
110
110
  }
111
111
 
112
+ .us-opacity-0 {
113
+ opacity: 0;
114
+ }
115
+
116
+ .us-opacity-60 {
117
+ opacity: 0.6;
118
+ }
119
+
120
+ .us-opacity-100 {
121
+ opacity: 1;
122
+ }
123
+
124
+ .us-pointer {
125
+ cursor: pointer;
126
+ }
127
+
128
+ .us-hover-opacity-60:hover {
129
+ opacity: 0.6;
130
+ }
131
+
132
+ .us-hover-opacity-100:hover {
133
+ opacity: 1;
134
+ }
135
+
112
136
  .us-chip {
113
137
  position: relative;
114
138
  height: var(--us-chip-height);
@@ -170,7 +194,6 @@
170
194
  cursor: pointer;
171
195
  color: var(--us-button-color);
172
196
  background-color: var(--us-button-background);
173
- z-index: 0;
174
197
  display: inline-flex;
175
198
  justify-content: center;
176
199
  align-items: center;
@@ -195,6 +218,8 @@
195
218
  justify-content: center;
196
219
  }
197
220
  .us-button-group {
221
+ border-radius: var(--us-button-border-radius);
222
+ position: relative;
198
223
  display: inline-flex;
199
224
  align-items: center;
200
225
  }
@@ -230,7 +255,7 @@
230
255
  .us-button-group--col .us-button:not(.us-button:last-of-type) {
231
256
  border-bottom: var(--us-button-divider-width) solid var(--us-button-divider-color);
232
257
  }
233
- .us-button__start-icon, .us-button__end-icon, .us-button__content {
258
+ .us-button__start-icon, .us-button__end-icon {
234
259
  position: relative;
235
260
  display: flex;
236
261
  align-items: center;
@@ -713,1437 +738,1452 @@
713
738
  transform: translateY(100%);
714
739
  }
715
740
 
716
- .us-input {
741
+ .us-accordion {
717
742
  position: relative;
718
- width: 100%;
719
- padding: 0;
720
- min-height: var(--us-input-height);
721
- display: flex;
722
- align-items: center;
723
- border: none;
724
- border-radius: var(--us-input-border-radius);
725
- color: var(--us-input-color);
726
- background-color: var(--us-input-background);
743
+ border-radius: var(--us-accordion-border-radius);
727
744
  z-index: 0;
728
- transition: all 0.2s ease-in-out;
729
- }
730
- .us-input:focus-visible {
731
- outline: none;
732
- }
733
- .us-input:not(.us-input--filterable) {
734
- cursor: pointer;
735
- }
736
- .us-input--disabled {
737
- opacity: 0.75;
738
- pointer-events: none;
739
- }
740
- .us-input--read-only {
741
- pointer-events: none;
742
- }
743
- .us-input--clearable .us-input__clearable {
744
- transform: scale(0);
745
- transition: all 0.2s ease-in-out;
746
745
  }
747
- .us-input--clearable:hover .us-input__clearable {
748
- transform: scale(0.75);
746
+ .us-accordion:not(.us-accordion--splitted) {
747
+ overflow: hidden;
748
+ background-color: white;
749
749
  }
750
- .us-input-group {
751
- display: flex;
752
- align-items: center;
750
+ .us-accordion--splitted {
751
+ display: grid;
752
+ gap: var(--us-accordion-splitted-gap);
753
753
  }
754
- .us-input-group .us-input {
755
- border-radius: 0px;
754
+ .us-accordion--splitted .us-accordion-item {
755
+ overflow: hidden;
756
756
  }
757
- .us-input-group .us-input:first-of-type {
758
- border-top-left-radius: var(--us-input-border-radius);
759
- border-bottom-left-radius: var(--us-input-border-radius);
757
+ .us-accordion-item {
758
+ position: relative;
759
+ border-bottom: var(--us-accordion-item-border);
760
760
  }
761
- .us-input-group .us-input:last-of-type {
762
- border-top-right-radius: var(--us-input-border-radius);
763
- border-bottom-right-radius: var(--us-input-border-radius);
761
+ .us-accordion-item:last-child {
762
+ border-bottom: none;
764
763
  }
765
- .us-input__icon {
766
- padding: 0;
764
+ .us-accordion-header {
765
+ position: relative;
766
+ height: var(--us-accordion-header-height);
767
+ min-height: var(--us-accordion-header-min-height);
768
+ padding-block: var(--us-accordion-header-padding-y);
769
+ padding-inline: var(--us-accordion-header-padding-x);
770
+ color: var(--us-accordion-header-color);
767
771
  display: flex;
768
- justify-content: center;
769
772
  align-items: center;
770
- border: none;
771
- outline: none;
772
- background-color: transparent;
773
- }
774
- .us-input__icon--opacity {
775
- opacity: 0;
773
+ gap: var(--us-accordion-header-gap);
776
774
  }
777
- .us-input__icon--pointer {
775
+ .us-accordion-header--collapsible {
778
776
  cursor: pointer;
777
+ user-select: none;
778
+ -webkit-tap-highlight-color: transparent;
779
779
  }
780
- .us-input:hover .us-input__icon--opacity-hoverable {
781
- opacity: 0.5;
782
- }
783
- .us-input:hover .us-input__icon--opacity-hoverable:hover {
784
- opacity: 1;
785
- }
786
- .us-input__content {
787
- flex: 1;
788
- height: 100%;
780
+ .us-accordion-header__start-content, .us-accordion-header__end-content {
781
+ position: relative;
782
+ flex-shrink: 0;
789
783
  display: flex;
790
784
  align-items: center;
791
- z-index: 1;
792
- overflow: hidden;
785
+ gap: var(--us-accordion-header-content-gap);
793
786
  }
794
- .us-input__content--chips {
795
- padding-block: var(--us-input-padding-y);
796
- padding-inline: var(--us-input-padding-x);
787
+ .us-accordion-header__content {
788
+ position: relative;
797
789
  flex-grow: 1;
798
790
  display: flex;
799
- flex-wrap: wrap;
800
- gap: 0.25rem;
791
+ flex-direction: column;
792
+ overflow: hidden;
801
793
  }
802
- .us-input__content--chips input {
803
- flex: 1;
804
- height: 24px;
805
- border: none;
806
- outline: none;
807
- color: inherit;
808
- background: inherit;
809
- min-width: 0;
794
+ .us-accordion-header--centered .us-accordion-header__start-content, .us-accordion-header--centered .us-accordion-header__end-content {
795
+ position: absolute;
810
796
  }
811
- .us-input__field {
812
- flex: 1;
813
- width: 100%;
814
- height: 100%;
815
- padding-block: var(--us-input-padding-y);
816
- padding-inline: var(--us-input-padding-x);
817
- font-size: var(--us-input-font-size);
818
- font-family: var(--us-input-font-family);
819
- line-height: var(--us-input-line-height);
820
- border: none;
821
- outline: none;
822
- color: var(--us-input-color);
823
- background-color: transparent;
824
- display: flex;
825
- align-items: center;
797
+ .us-accordion-header--centered .us-accordion-header__start-content {
798
+ left: var(--us-accordion-header-padding-x);
826
799
  }
827
- .us-input__field:focus {
828
- outline: none !important;
800
+ .us-accordion-header--centered .us-accordion-header__end-content {
801
+ right: var(--us-accordion-header-padding-x);
829
802
  }
830
- .us-input__field::placeholder {
831
- color: var(--us-input-placeholder-color);
803
+ .us-accordion-header--centered .us-accordion-header__content {
804
+ align-items: center;
805
+ text-align: center;
832
806
  }
833
- .us-input__search, .us-input__placeholder {
834
- flex: 1;
835
- width: 100%;
836
- padding-block: var(--us-input-padding-y);
837
- padding-inline: var(--us-input-padding-x);
838
- font-size: var(--us-input-font-size);
839
- font-family: var(--us-input-font-family);
840
- line-height: var(--us-input-line-height);
841
- color: var(--us-input-color);
807
+ .us-accordion-header__title {
808
+ font-size: var(--us-accordion-header-title-font-size);
809
+ font-weight: var(--us-accordion-header-title-font-weight);
810
+ line-height: var(--us-accordion-header-title-line-height);
811
+ opacity: var(--us-accordion-header-title-opacity);
842
812
  overflow: hidden;
813
+ color: var(--us-accordion-header-title-color);
814
+ display: -webkit-box;
815
+ -webkit-box-orient: vertical;
816
+ -webkit-line-clamp: 1;
843
817
  text-overflow: ellipsis;
844
- white-space: nowrap;
845
- display: block;
818
+ word-break: break-word;
846
819
  }
847
- .us-input__placeholder {
848
- opacity: 0.6;
820
+ .us-accordion-header__subtitle {
821
+ font-size: var(--us-accordion-header-subtitle-font-size);
822
+ font-weight: var(--us-accordion-header-subtitle-font-weight);
823
+ line-height: var(--us-accordion-header-subtitle-line-height);
824
+ opacity: var(--us-accordion-header-subtitle-opacity);
825
+ overflow: hidden;
826
+ color: var(--us-accordion-header-subtitle-color);
827
+ display: -webkit-box;
828
+ -webkit-box-orient: vertical;
829
+ -webkit-line-clamp: 1;
830
+ text-overflow: ellipsis;
831
+ word-break: break-word;
849
832
  }
850
- .us-input__start-content, .us-input__end-content {
851
- flex-shrink: 0;
852
- height: 100%;
853
- display: flex;
854
- align-items: center;
855
- font-size: var(--us-input-font-size);
856
- font-family: var(--us-input-font-family);
857
- line-height: var(--us-input-line-height);
858
- gap: var(--us-input-content-gap);
833
+ .us-accordion-header:not(.us-accordion-header--bordered) ~ .us-accordion-body:not([data-hidden=true]), .us-accordion-header:not(.us-accordion-header--bordered) ~ :not([hidden]) .us-accordion-body:not([data-hidden=true]) {
834
+ padding-top: 0;
859
835
  }
860
- .us-input__start-content .us-icon, .us-input__end-content .us-icon {
861
- font-size: var(--us-input-icon-size);
836
+ .us-accordion-header--bordered ~ .us-accordion-body:not([data-hidden=true]), .us-accordion-header--bordered ~ :not([hidden]) .us-accordion-body:not([data-hidden=true]) {
837
+ border-top-width: 1px;
862
838
  }
863
- .us-input__start-content {
864
- margin-right: calc(-1 * var(--us-input-icon-size));
865
- padding-inline: calc(0.75 * var(--us-input-padding-x));
839
+ .us-accordion-body {
840
+ position: relative;
841
+ border-top: 0px solid #ddd;
842
+ padding-block: var(--us-accordion-body-padding-y);
843
+ padding-inline: var(--us-accordion-body-padding-x);
844
+ font-size: var(--us-accordion-body-font-size);
845
+ line-height: var(--us-accordion-body-line-height);
846
+ color: var(--us-accordion-body-color);
866
847
  }
867
- .us-input__end-content {
868
- margin-left: calc(-1 * var(--us-input-icon-size));
869
- padding-inline: calc(0.75 * var(--us-input-padding-x));
848
+ .us-accordion-panel {
849
+ padding: 1rem;
870
850
  }
871
851
 
872
- .us-checkbox {
873
- cursor: pointer;
874
- display: inline-flex;
852
+ .us-list {
853
+ margin: 0;
854
+ padding: var(--us-list-padding-y) var(--us-list-padding-x);
855
+ color: var(--us-list-color);
856
+ background-color: var(--us-list-background);
857
+ }
858
+ .us-list-item {
859
+ position: relative;
860
+ height: var(--us-list-item-height);
861
+ min-height: var(--us-list-item-min-height);
862
+ padding-block: var(--us-list-item-padding-y);
863
+ padding-inline: var(--us-list-item-padding-x);
864
+ font-size: var(--us-list-item-font-size);
865
+ font-weight: var(--us-list-item-font-weight);
866
+ border-radius: var(--us-list-item-border-radius);
867
+ text-decoration: none;
868
+ z-index: 0;
869
+ display: flex;
875
870
  align-items: center;
876
- gap: var(--us-checkbox-gap);
871
+ color: var(--us-list-item-color);
872
+ background-color: var(--us-list-item-background);
877
873
  -webkit-tap-highlight-color: transparent;
874
+ gap: var(--us-list-item-gap);
878
875
  }
879
- .us-checkbox input {
880
- position: absolute;
881
- width: 0;
882
- height: 0;
883
- opacity: 0;
876
+ .us-list-item:hover {
877
+ text-decoration: none;
884
878
  }
885
- .us-checkbox--disabled {
886
- opacity: 0.6;
887
- pointer-events: none;
879
+ .us-list-item--hoverable, .us-list-item--selected {
880
+ cursor: pointer;
881
+ user-select: none;
888
882
  }
889
- .us-checkbox--read-only {
883
+ .us-list-item--disabled {
884
+ opacity: 0.6;
890
885
  pointer-events: none;
891
886
  }
892
- .us-checkbox__control {
887
+ .us-list-item__start-content, .us-list-item__end-content {
893
888
  position: relative;
894
- width: var(--us-checkbox-control-width);
895
- height: var(--us-checkbox-control-height);
896
- border-width: var(--us-checkbox-control-border-width);
897
- border-style: var(--us-checkbox-control-border-style);
898
- border-color: var(--us-checkbox-control-border-color);
899
- border-radius: var(--us-checkbox-control-border-radius);
900
- color: var(--us-checkbox-control-color);
889
+ flex-shrink: 0;
901
890
  display: flex;
902
891
  justify-content: center;
903
892
  align-items: center;
904
- transition: color 0.05s ease-in-out 0.025s, border-color 0.05s ease-in-out 0.025s;
905
- overflow: hidden;
906
- }
907
- .us-checkbox--before .us-checkbox__control {
908
- order: 2;
893
+ gap: var(--us-list-item-gap);
909
894
  }
910
- .us-checkbox--befire .us-checkbox__label {
911
- order: 1;
895
+ .us-list-item__content {
896
+ position: relative;
897
+ flex-grow: 1;
898
+ display: grid;
899
+ overflow: hidden;
912
900
  }
913
- .us-checkbox--checked .us-checkbox__control {
914
- border-color: var(--us-_checked-checkbox-control-border-color, var(--us-checkbox-control-border-color));
915
- color: var(--us-_checked-checkbox-control-color, var(--us-checkbox-control-color));
901
+ .us-list-item__title {
902
+ font-size: var(--us-list-item-title-font-size);
903
+ font-weight: var(--us-list-item-title-font-weight);
904
+ line-height: var(--us-list-item-title-line-height);
905
+ opacity: var(--us-list-item-title-opacity);
906
+ overflow: hidden;
907
+ color: var(--us-list-item-title-color);
908
+ display: -webkit-box;
909
+ -webkit-box-orient: vertical;
910
+ -webkit-line-clamp: 1;
916
911
  }
917
- .us-checkbox--focus .us-checkbox__control {
918
- box-shadow: var(--us-_focus-checkbox-control-box-shadow);
912
+ .us-list-item__subtitle {
913
+ font-size: var(--us-list-item-subtitle-font-size);
914
+ font-weight: var(--us-list-item-subtitle-font-weight);
915
+ line-height: var(--us-list-item-subtitle-line-height);
916
+ opacity: var(--us-list-item-subtitle-opacity);
917
+ overflow: hidden;
918
+ color: var(--us-list-item-subtitle-color);
919
+ display: -webkit-box;
920
+ -webkit-box-orient: vertical;
921
+ -webkit-line-clamp: 1;
919
922
  }
920
- .us-checkbox__tap {
921
- position: absolute;
922
- inset: 0px;
923
- opacity: 0;
924
- border-radius: inherit;
925
- background-color: var(--us-checkbox-tap-background);
926
- transform: scale(0);
927
- transition: opacity 0.05s ease-in-out 0.025s, transform 0.05s ease-in-out 0.025s;
923
+ .us-list-subheader--bordered {
924
+ border-bottom: var(--us-list-subheader-border-width) solid var(--us-list-subheader-border-color);
928
925
  }
929
- .us-checkbox--checked .us-checkbox__tap {
930
- opacity: 1;
931
- transform: scale(1.5);
926
+ .us-list-group .us-list {
927
+ --us-list-background: var(--us-list-group-background);
932
928
  }
933
- .us-checkbox .us-icon {
934
- opacity: 1;
935
- transform: scale(0);
936
- transition: opacity 0.05s ease-in-out 0.025s, transform 0.05s ease-in-out 0.025s;
929
+
930
+ .us-data-list {
931
+ flex-grow: 1;
932
+ overflow: hidden;
937
933
  }
938
- .us-checkbox--checked .us-icon {
939
- opacity: 1;
940
- transform: scale(1);
934
+
935
+ .us-menu {
936
+ margin: 0;
937
+ padding: var(--us-menu-padding-y) var(--us-menu-padding-x);
938
+ color: var(--us-menu-color);
939
+ background-color: var(--us-menu-background);
941
940
  }
942
- .us-checkbox-group {
941
+ .us-menu-item {
942
+ position: relative;
943
+ height: var(--us-menu-item-height);
944
+ padding: var(--us-menu-item-padding-y) var(--us-menu-item-padding-x);
945
+ font-size: var(--us-menu-item-font-size);
946
+ font-weight: var(--us-menu-item-font-weight);
947
+ border-radius: var(--us-menu-item-border-radius);
948
+ text-decoration: none;
949
+ cursor: pointer;
950
+ z-index: 0;
943
951
  display: flex;
944
- flex-wrap: wrap;
945
- gap: var(--us-checkbox-group-gap);
946
- }
947
- .us-checkbox-group--row {
948
- flex-direction: row;
949
952
  align-items: center;
953
+ color: var(--us-menu-item-color);
954
+ background-color: var(--us-menu-item-background);
955
+ user-select: none;
956
+ -webkit-tap-highlight-color: transparent;
957
+ gap: var(--us-menu-item-gap);
950
958
  }
951
- .us-checkbox-group--col {
952
- flex-direction: column;
953
- }
954
- .us-checkbox-group--start {
955
- justify-content: flex-start;
956
- }
957
- .us-checkbox-group--center {
958
- justify-content: center;
959
- }
960
- .us-checkbox-group--end {
961
- justify-content: flex-end;
962
- }
963
- .us-checkbox-group--stretch .us-checkbox {
964
- flex-grow: 1;
965
- }
966
- .us-checkbox__label {
967
- font-size: var(--us-checkbox-label-font-size);
968
- color: var(--us-checkbox-label-color);
959
+ .us-menu-item:hover {
960
+ text-decoration: none;
969
961
  }
970
-
971
- .us-radio {
962
+ .us-menu-item--hoverable {
972
963
  cursor: pointer;
973
- display: inline-flex;
974
- align-items: center;
975
- gap: var(--us-radio-gap);
976
- -webkit-tap-highlight-color: transparent;
964
+ user-select: none;
977
965
  }
978
- .us-radio--disabled {
966
+ .us-menu-item--disabled {
979
967
  opacity: 0.6;
980
968
  pointer-events: none;
981
969
  }
982
- .us-radio--read-only {
983
- pointer-events: none;
970
+ .us-menu-item__start-content {
971
+ flex-shrink: 0;
972
+ z-index: 1;
973
+ display: flex;
974
+ justify-content: center;
975
+ align-items: center;
984
976
  }
985
- .us-radio__control {
986
- position: relative;
987
- width: var(--us-radio-control-width);
988
- height: var(--us-radio-control-height);
989
- border-width: var(--us-radio-control-border-width);
990
- border-style: var(--us-radio-control-border-style);
991
- border-color: var(--us-radio-control-border-color);
992
- border-radius: var(--us-radio-control-border-radius);
993
- color: var(--us-radio-control-color);
977
+ .us-menu-item__start-content, .us-menu-item__end-content {
978
+ flex-shrink: 0;
979
+ z-index: 1;
994
980
  display: flex;
995
981
  justify-content: center;
996
982
  align-items: center;
997
- transition: color 0.05s ease-in-out 0.025s, border-color 0.05s ease-in-out 0.025s;
983
+ gap: calc(var(--us-list-item-gap) * 0.5);
984
+ }
985
+ .us-menu-item__content {
986
+ flex-grow: 1;
987
+ z-index: 1;
988
+ display: grid;
998
989
  overflow: hidden;
999
990
  }
1000
- .us-radio--before .us-radio__control {
1001
- order: 2;
991
+ .us-menu-item__title {
992
+ overflow: hidden;
993
+ display: -webkit-box;
994
+ -webkit-box-orient: vertical;
995
+ -webkit-line-clamp: 1;
1002
996
  }
1003
- .us-radio--befire .us-radio__label {
1004
- order: 1;
997
+ .us-menu-group {
998
+ position: relative;
999
+ height: var(--us-menu-group-height);
1000
+ padding: var(--us-menu-group-padding-y) var(--us-menu-group-padding-x);
1001
+ font-size: var(--us-menu-group-font-size);
1002
+ font-weight: var(--us-menu-group-font-weight);
1003
+ text-decoration: none;
1004
+ border-bottom: var(--us-menu-group-border-width) solid var(--us-menu-group-border-color);
1005
+ border-radius: var(--us-menu-group-border-radius);
1006
+ display: flex;
1007
+ align-items: center;
1008
+ color: var(--us-menu-group-color);
1009
+ background-color: var(--us-menu-group-background);
1010
+ gap: var(--us-menu-group-gap);
1005
1011
  }
1006
- .us-radio--checked .us-radio__control {
1007
- border-color: var(--us-_checked-radio-control-border-color, var(--us-radio-control-border-color));
1008
- color: var(--us-_checked-radio-control-color, var(--us-radio-control-color));
1012
+ .us-menu-group:hover {
1013
+ text-decoration: none;
1009
1014
  }
1010
- .us-radio--focus .us-radio__control {
1011
- box-shadow: var(--us-_focus-radio-control-box-shadow);
1015
+ .us-menu-group__icon {
1016
+ flex-shrink: 0;
1017
+ z-index: 1;
1018
+ display: flex;
1019
+ justify-content: center;
1020
+ align-items: center;
1012
1021
  }
1013
- .us-radio__tap {
1014
- position: absolute;
1015
- inset: 0px;
1016
- opacity: 0;
1017
- border-radius: inherit;
1018
- background-color: var(--us-radio-tap-background);
1019
- transform: scale(0);
1020
- transition: opacity 0.05s ease-in-out 0.025s, transform 0.05s ease-in-out 0.025s;
1022
+ .us-menu-group__content {
1023
+ flex-grow: 1;
1024
+ z-index: 1;
1025
+ display: grid;
1026
+ overflow: hidden;
1021
1027
  }
1022
- .us-radio--checked .us-radio__tap {
1023
- opacity: 1;
1024
- transform: scale(1.5);
1028
+ .us-menu-group__title {
1029
+ overflow: hidden;
1030
+ display: -webkit-box;
1031
+ -webkit-box-orient: vertical;
1032
+ -webkit-line-clamp: 1;
1025
1033
  }
1026
- .us-radio .us-icon {
1027
- opacity: 1;
1028
- transform: scale(0);
1029
- transition: opacity 0.05s ease-in-out 0.025s, transform 0.05s ease-in-out 0.025s;
1034
+ .us-menu-submenu .us-menu {
1035
+ --us-menu-background: var(--us-submenu-background);
1030
1036
  }
1031
- .us-radio--checked .us-icon {
1032
- opacity: 1;
1033
- transform: scale(1);
1037
+
1038
+ .us-divider {
1039
+ width: 100%;
1040
+ height: 1px;
1041
+ background: var(--us-border-color);
1034
1042
  }
1035
- .us-radio-group {
1043
+
1044
+ .us-breadcrumb {
1045
+ padding: 0.5rem 0;
1046
+ font-size: 0.875rem;
1036
1047
  display: flex;
1037
- flex-wrap: wrap;
1038
- gap: var(--us-radio-group-gap);
1048
+ align-items: center;
1049
+ gap: 0;
1039
1050
  }
1040
- .us-radio-group--row {
1041
- flex-direction: row;
1051
+ .us-breadcrumb-item {
1052
+ padding: 0.25rem 0.5rem;
1053
+ white-space: nowrap;
1054
+ display: flex;
1042
1055
  align-items: center;
1043
1056
  }
1044
- .us-radio-group--col {
1045
- flex-direction: column;
1057
+ .us-breadcrumb-item:not(.us-breadcrumb-item--is-menu) {
1058
+ line-height: 32px;
1046
1059
  }
1047
- .us-radio-group--start {
1060
+
1061
+ .us-swipe {
1062
+ position: relative;
1063
+ }
1064
+ .us-swipe__content {
1065
+ position: relative;
1066
+ overflow-x: hidden;
1067
+ display: flex;
1068
+ align-items: center;
1069
+ gap: var(--us-swipe-gap);
1070
+ }
1071
+ @media (max-width: 767px) and (hover: none) {
1072
+ .us-swipe__content {
1073
+ overflow-x: auto;
1074
+ }
1075
+ }
1076
+ .us-swipe__start-content, .us-swipe__end-content {
1077
+ position: absolute;
1078
+ top: 50%;
1079
+ transform: translateY(-50%);
1080
+ z-index: 1;
1081
+ }
1082
+ .us-swipe__start-content {
1083
+ left: 0.5rem;
1084
+ }
1085
+ .us-swipe__end-content {
1086
+ right: 0.5rem;
1087
+ }
1088
+ .us-swipe--auto-hide .us-swipe__start-content, .us-swipe--auto-hide .us-swipe__end-content {
1089
+ transform: translateY(-50%) scale(0);
1090
+ transition: all 0.2s ease-in-out;
1091
+ }
1092
+ .us-swipe--auto-hide:hover .us-swipe__start-content, .us-swipe--auto-hide:hover .us-swipe__end-content {
1093
+ transform: translateY(-50%) scale(1);
1094
+ }
1095
+ .us-swipe--start .us-swipe-item:last-child {
1096
+ margin-right: auto;
1097
+ }
1098
+ .us-swipe--center .us-swipe-item:first-child {
1099
+ margin-left: auto;
1100
+ }
1101
+ .us-swipe--center .us-swipe-item:last-child {
1102
+ margin-right: auto;
1103
+ }
1104
+ .us-swipe--end .us-swipe-item:first-child {
1105
+ margin-left: auto;
1106
+ }
1107
+ .us-swipe-item {
1108
+ flex-shrink: 0;
1109
+ position: relative;
1110
+ }
1111
+
1112
+ .us-tabs {
1113
+ width: 100%;
1114
+ white-space: nowrap;
1115
+ flex-wrap: wrap;
1116
+ display: flex;
1117
+ align-items: center;
1118
+ }
1119
+ .us-tabs--start {
1048
1120
  justify-content: flex-start;
1049
1121
  }
1050
- .us-radio-group--center {
1122
+ .us-tabs--center {
1051
1123
  justify-content: center;
1052
1124
  }
1053
- .us-radio-group--end {
1125
+ .us-tabs--end {
1054
1126
  justify-content: flex-end;
1055
1127
  }
1056
- .us-radio-group--stretch .us-radio {
1128
+ .us-tabs--stretch .us-tab {
1057
1129
  flex-grow: 1;
1058
1130
  }
1059
- .us-radio input {
1060
- position: absolute;
1061
- width: 0;
1062
- height: 0;
1063
- opacity: 0;
1064
- }
1065
- .us-radio__label {
1066
- font-size: var(--us-radio-label-font-size);
1067
- color: var(--us-radio-label-color);
1131
+ @media (max-width: 767px) and (hover: none) {
1132
+ .us-tabs {
1133
+ overflow: auto;
1134
+ }
1068
1135
  }
1069
1136
 
1070
- .us-switch {
1071
- --us-switch-control-padding: calc(var(--us-switch-thumb-width) * 0.25);
1072
- cursor: pointer;
1137
+ .us-tab {
1138
+ position: relative;
1139
+ padding-block: var(--us-tab-padding-y);
1140
+ padding-inline: var(--us-tab-padding-x);
1141
+ font-size: var(--us-tab-font-size);
1142
+ font-weight: var(--us-tab-font-weight);
1143
+ text-decoration: none;
1144
+ vertical-align: middle;
1145
+ border-radius: var(--us-tab-border-radius);
1146
+ z-index: 1;
1147
+ color: var(--us-tab-color);
1073
1148
  display: inline-flex;
1149
+ justify-content: center;
1074
1150
  align-items: center;
1075
- gap: var(--us-switch-gap);
1151
+ user-select: none;
1076
1152
  -webkit-tap-highlight-color: transparent;
1077
1153
  }
1078
- .us-switch input {
1079
- position: absolute;
1080
- opacity: 0;
1081
- width: 0;
1082
- height: 0;
1154
+ .us-tab:hover {
1155
+ text-decoration: none;
1083
1156
  }
1084
- .us-switch--disabled {
1157
+ .us-tab--disabled {
1085
1158
  opacity: 0.6;
1086
1159
  pointer-events: none;
1087
1160
  }
1088
- .us-switch--read-only {
1089
- pointer-events: none;
1161
+ .us-tab--closable {
1162
+ padding-inline-end: calc(var(--us-tab-padding-x) / 2);
1090
1163
  }
1091
- .us-switch__control {
1164
+ .us-tab__start-content, .us-tab__end-content {
1165
+ display: flex;
1166
+ align-items: center;
1167
+ }
1168
+ .us-tab__content {
1092
1169
  position: relative;
1093
- display: inline-block;
1094
- width: var(--us-switch-control-width);
1095
- height: var(--us-switch-control-height);
1096
- border-radius: var(--us-switch-control-border-radius);
1097
- cursor: pointer;
1098
- background-color: var(--us-switch-control-color);
1170
+ height: var(--us-tab-height);
1099
1171
  display: inline-flex;
1172
+ flex-direction: row;
1173
+ justify-content: center;
1100
1174
  align-items: center;
1101
- transition: all 0.05s ease-in-out;
1102
- user-select: none;
1103
- -webkit-tap-highlight-color: transparent;
1104
- }
1105
- .us-switch--before .us-switch__control {
1106
- order: 2;
1107
- }
1108
- .us-switch--befire .us-switch__label {
1109
- order: 1;
1175
+ gap: 8px;
1110
1176
  }
1111
- .us-switch--checked .us-switch__control {
1112
- background-color: var(--us-_checked-switch-control-color, var(--us-switch-control-color));
1177
+ .us-tab__indicator {
1178
+ position: absolute;
1179
+ height: var(--us-tab-indicator-height);
1180
+ border-radius: var(--us-tab-indicator-border-radius);
1181
+ inset: auto 0px 0px;
1182
+ opacity: 0;
1183
+ z-index: -1;
1184
+ color: var(--us-tab-indicator-color);
1185
+ transform-origin: left bottom;
1113
1186
  }
1114
- .us-switch--focus .us-switch__control {
1115
- box-shadow: var(--us-_focus-switch-control-box-shadow);
1187
+ .us-tab--selected .us-tab__indicator {
1188
+ opacity: 1;
1116
1189
  }
1117
- .us-switch__thumb {
1118
- width: var(--us-switch-thumb-width);
1119
- height: var(--us-switch-thumb-height);
1120
- transform: translateX(var(--us-switch-control-padding));
1121
- border-radius: var(--us-switch-thumb-border-radius);
1122
- background-color: var(--us-switch-thumb-color);
1123
- transition: all 0.05s ease-in-out;
1190
+ .us-tab__closable {
1191
+ position: relative;
1192
+ padding: 0.125rem;
1193
+ color: var(--us-tab-closable-color);
1194
+ border-radius: 9999px;
1195
+ transform: scale(0.75);
1196
+ cursor: pointer;
1197
+ transition: all 0.15s ease-in-out;
1124
1198
  }
1125
- .us-switch--checked .us-switch__thumb {
1126
- transform: translateX(calc(var(--us-switch-control-width) - var(--us-switch-thumb-width) - (var(--us-switch-control-padding))));
1199
+ .us-tab__closable:hover {
1200
+ transform: scale(1);
1127
1201
  }
1128
- .us-switch__label {
1129
- font-size: var(--us-switch-label-font-size);
1130
- color: var(--us-switch-label-color);
1202
+ .us-tab__closable::after {
1203
+ position: absolute;
1204
+ content: "";
1205
+ inset: 0px;
1206
+ border-radius: inherit;
1207
+ background-color: currentColor;
1208
+ opacity: 0;
1131
1209
  }
1132
1210
 
1133
- .us-accordion {
1211
+ .us-card {
1134
1212
  position: relative;
1135
- border-radius: var(--us-accordion-border-radius);
1213
+ border-radius: var(--us-card-border-radius);
1136
1214
  z-index: 0;
1137
- }
1138
- .us-accordion:not(.us-accordion--splitted) {
1139
1215
  overflow: hidden;
1216
+ -webkit-tap-highlight-color: transparent;
1140
1217
  background-color: white;
1218
+ padding-block: var(--us-card-padding-y);
1219
+ padding-inline: var(--us-card-padding-x);
1220
+ display: flex;
1221
+ flex-direction: column;
1222
+ gap: var(--us-card-gap);
1141
1223
  }
1142
- .us-accordion--splitted {
1143
- display: grid;
1144
- gap: var(--us-accordion-splitted-gap);
1224
+ .us-card:hover {
1225
+ text-decoration: none;
1145
1226
  }
1146
- .us-accordion--splitted .us-accordion-item {
1147
- overflow: hidden;
1227
+ .us-card--bordered {
1228
+ border: var(--us-card-border-width) var(--us-card-border-style) var(--us-card-border-color);
1148
1229
  }
1149
- .us-accordion-item {
1150
- position: relative;
1151
- border-bottom: var(--us-accordion-item-border);
1230
+ .us-card--shadow {
1231
+ box-shadow: var(--us-card-box-shadow);
1152
1232
  }
1153
- .us-accordion-item:last-child {
1154
- border-bottom: none;
1233
+ .us-card--hoverable, .us-card--selected {
1234
+ cursor: pointer;
1235
+ user-select: none;
1155
1236
  }
1156
- .us-accordion-header {
1237
+ .us-card--disabled {
1238
+ opacity: 0.6;
1239
+ cursor: not-allowed;
1240
+ user-select: none;
1241
+ }
1242
+ .us-card-header {
1157
1243
  position: relative;
1158
- height: var(--us-accordion-header-height);
1159
- min-height: var(--us-accordion-header-min-height);
1160
- padding-block: var(--us-accordion-header-padding-y);
1161
- padding-inline: var(--us-accordion-header-padding-x);
1162
- color: var(--us-accordion-header-color);
1163
- z-index: 0;
1244
+ flex-shrink: 0;
1245
+ height: var(--us-card-header-height);
1246
+ min-height: var(--us-card-header-min-height);
1247
+ padding-block: var(--us-card-header-padding-y);
1248
+ padding-inline: var(--us-card-header-padding-x);
1249
+ color: var(--us-card-header-color);
1164
1250
  display: flex;
1165
1251
  align-items: center;
1166
- gap: var(--us-accordion-header-gap);
1167
- }
1168
- .us-accordion-header--collapsible {
1169
- cursor: pointer;
1170
- user-select: none;
1171
- -webkit-tap-highlight-color: transparent;
1252
+ gap: var(--us-card-header-gap);
1172
1253
  }
1173
- .us-accordion-header__start-content, .us-accordion-header__end-content {
1254
+ .us-card-header__start-content, .us-card-header__end-content {
1174
1255
  flex-shrink: 0;
1175
1256
  display: flex;
1176
1257
  align-items: center;
1177
- gap: var(--us-accordion-header-content-gap);
1258
+ gap: var(--us-card-header-content-gap);
1178
1259
  }
1179
- .us-accordion-header__content {
1260
+ .us-card-header__content {
1180
1261
  flex-grow: 1;
1262
+ overflow: hidden;
1181
1263
  display: flex;
1182
1264
  flex-direction: column;
1265
+ justify-content: center;
1183
1266
  }
1184
- .us-accordion-header--centered .us-accordion-header__start-content, .us-accordion-header--centered .us-accordion-header__end-content {
1267
+ .us-card-header--centered .us-card-header__start-content, .us-card-header--centered .us-card-header__end-content {
1185
1268
  position: absolute;
1186
1269
  }
1187
- .us-accordion-header--centered .us-accordion-header__start-content {
1188
- left: var(--us-accordion-header-padding-x);
1270
+ .us-card-header--centered .us-card-header__start-content {
1271
+ left: var(--us-card-header-padding-x);
1189
1272
  }
1190
- .us-accordion-header--centered .us-accordion-header__end-content {
1191
- right: var(--us-accordion-header-padding-x);
1273
+ .us-card-header--centered .us-card-header__end-content {
1274
+ right: var(--us-card-header-padding-x);
1192
1275
  }
1193
- .us-accordion-header--centered .us-accordion-header__content {
1276
+ .us-card-header--centered .us-card-header__content {
1194
1277
  align-items: center;
1195
1278
  text-align: center;
1196
1279
  }
1197
- .us-accordion-header__title {
1198
- font-size: var(--us-accordion-header-title-font-size);
1199
- font-weight: var(--us-accordion-header-title-font-weight);
1200
- line-height: var(--us-accordion-header-title-line-height);
1201
- opacity: var(--us-accordion-header-title-opacity);
1280
+ .us-card-header .us-card-title {
1281
+ font-size: var(--us-card-header-title-font-size);
1282
+ font-weight: var(--us-card-header-title-font-weight);
1283
+ line-height: var(--us-card-header-title-line-height);
1202
1284
  overflow: hidden;
1203
- color: var(--us-accordion-header-title-color);
1285
+ color: var(--us-card-header-title-color);
1204
1286
  display: -webkit-box;
1205
1287
  -webkit-box-orient: vertical;
1206
1288
  -webkit-line-clamp: 1;
1207
1289
  }
1208
- .us-accordion-header__subtitle {
1209
- font-size: var(--us-accordion-header-subtitle-font-size);
1210
- font-weight: var(--us-accordion-header-subtitle-font-weight);
1211
- line-height: var(--us-accordion-header-subtitle-line-height);
1212
- opacity: var(--us-accordion-header-subtitle-opacity);
1290
+ .us-card-header .us-card-subtitle {
1291
+ font-size: var(--us-card-header-subtitle-font-size);
1292
+ font-weight: var(--us-card-header-subtitle-font-weight);
1293
+ line-height: var(--us-card-header-subtitle-line-height);
1213
1294
  overflow: hidden;
1214
- color: var(--us-accordion-header-subtitle-color);
1295
+ color: var(--us-card-header-subtitle-color);
1215
1296
  display: -webkit-box;
1216
1297
  -webkit-box-orient: vertical;
1217
1298
  -webkit-line-clamp: 1;
1218
1299
  }
1219
- .us-accordion-header:not(.us-accordion-header--bordered) ~ .us-accordion-body:not([data-hidden=true]), .us-accordion-header:not(.us-accordion-header--bordered) ~ :not([hidden]) .us-accordion-body:not([data-hidden=true]) {
1220
- padding-top: 0;
1300
+ .us-card .us-card-title:not(.us-card-header .us-card-title) {
1301
+ flex-shrink: 0;
1302
+ padding-block: var(--us-card-title-padding-y);
1303
+ padding-inline: var(--us-card-title-padding-x);
1304
+ font-size: var(--us-card-title-font-size);
1305
+ font-weight: var(--us-card-title-font-weight);
1306
+ line-height: var(--us-card-title-line-height);
1307
+ color: var(--us-card-title-color);
1221
1308
  }
1222
- .us-accordion-header--bordered ~ .us-accordion-body:not([data-hidden=true]), .us-accordion-header--bordered ~ :not([hidden]) .us-accordion-body:not([data-hidden=true]) {
1223
- border-top-width: 1px;
1309
+ .us-card .us-card-title--centered:not(.us-card-header .us-card-title) {
1310
+ text-align: center;
1224
1311
  }
1225
- .us-accordion-body {
1226
- position: relative;
1227
- border-top: 0px solid #ddd;
1228
- padding-block: var(--us-accordion-body-padding-y);
1229
- padding-inline: var(--us-accordion-body-padding-x);
1230
- font-size: var(--us-accordion-body-font-size);
1231
- line-height: var(--us-accordion-body-line-height);
1232
- color: var(--us-accordion-body-color);
1312
+ .us-card .us-card-subtitle:not(.us-card-header .us-card-subtitle) {
1313
+ flex-shrink: 0;
1314
+ font-size: var(--us-card-header-subtitle-font-size);
1315
+ font-weight: var(--us-card-header-subtitle-font-weight);
1316
+ line-height: var(--us-card-header-subtitle-line-height);
1317
+ overflow: hidden;
1318
+ color: var(--us-card-header-subtitle-color);
1233
1319
  }
1234
- .us-accordion-panel {
1235
- padding: 1rem;
1320
+ .us-card-body {
1321
+ position: relative;
1322
+ padding-block: var(--us-card-body-padding-y);
1323
+ padding-inline: var(--us-card-body-padding-x);
1324
+ font-size: var(--us-card-body-font-size);
1325
+ line-height: var(--us-card-body-line-height);
1326
+ color: var(--us-card-body-color);
1236
1327
  }
1237
-
1238
- .us-list {
1239
- margin: 0;
1240
- padding: var(--us-list-padding-y) var(--us-list-padding-x);
1241
- color: var(--us-list-color);
1242
- background-color: var(--us-list-background);
1328
+ .us-card-footer {
1329
+ flex-shrink: 0;
1330
+ position: relative;
1331
+ min-height: var(--us-card-footer-min-height);
1332
+ padding-block: var(--us-card-footer-padding-y);
1333
+ padding-inline: var(--us-card-footer-padding-x);
1334
+ border-top-width: 0px;
1335
+ border-top-style: solid;
1336
+ border-top-color: var(--us-card-footer-border-color);
1337
+ background-color: var(--us-card-footer-background);
1338
+ display: flex;
1339
+ justify-content: flex-end;
1340
+ align-items: center;
1341
+ gap: 0.5rem;
1243
1342
  }
1244
- .us-list-item {
1343
+ .us-card-media {
1245
1344
  position: relative;
1246
- height: var(--us-list-item-height);
1247
- min-height: var(--us-list-item-min-height);
1248
- padding-block: var(--us-list-item-padding-y);
1249
- padding-inline: var(--us-list-item-padding-x);
1250
- font-size: var(--us-list-item-font-size);
1251
- font-weight: var(--us-list-item-font-weight);
1252
- border-radius: var(--us-list-item-border-radius);
1253
- text-decoration: none;
1254
- z-index: 0;
1345
+ margin: 8px;
1346
+ border-radius: 8px;
1347
+ aspect-ratio: 1/1;
1348
+ overflow: hidden;
1255
1349
  display: flex;
1350
+ justify-content: center;
1256
1351
  align-items: center;
1257
- color: var(--us-list-item-color);
1258
- background-color: var(--us-list-item-background);
1259
- -webkit-tap-highlight-color: transparent;
1260
- gap: var(--us-list-item-gap);
1352
+ background-color: rgba(0, 0, 0, 0.08);
1261
1353
  }
1262
- .us-list-item:hover {
1263
- text-decoration: none;
1354
+ .us-card-media__top-left-content {
1355
+ padding: 4px;
1356
+ position: absolute;
1357
+ top: 0;
1358
+ left: 0;
1264
1359
  }
1265
- .us-list-item--hoverable, .us-list-item--selected {
1266
- cursor: pointer;
1267
- user-select: none;
1360
+ .us-card-media__top-right-content {
1361
+ padding: 4px;
1362
+ position: absolute;
1363
+ top: 0;
1364
+ right: 0;
1268
1365
  }
1269
- .us-list-item--disabled {
1270
- opacity: 0.6;
1271
- pointer-events: none;
1366
+ .us-card-media img {
1367
+ width: 100%;
1368
+ height: 100%;
1369
+ object-fit: cover;
1272
1370
  }
1273
- .us-list-item__start-content, .us-list-item__end-content {
1274
- flex-shrink: 0;
1275
- z-index: 1;
1276
- display: flex;
1277
- justify-content: center;
1278
- align-items: center;
1279
- gap: calc(var(--us-list-item-gap) * 0.5);
1371
+ .us-card--divider .us-card-body {
1372
+ margin-top: var(--us-card-padding-y);
1280
1373
  }
1281
- .us-list-item__content {
1282
- flex-grow: 1;
1283
- z-index: 1;
1284
- display: grid;
1285
- overflow: hidden;
1374
+ .us-card--divider .us-card-body::after {
1375
+ content: "";
1376
+ position: absolute;
1377
+ left: 0;
1378
+ right: 0;
1379
+ bottom: 0;
1380
+ border-bottom: 1px solid var(--us-card-border-color);
1286
1381
  }
1287
- .us-list-item__title {
1288
- font-size: var(--us-list-item-title-font-size);
1289
- font-weight: var(--us-list-item-title-font-weight);
1290
- line-height: var(--us-list-item-title-line-height);
1291
- opacity: var(--us-list-item-title-opacity);
1292
- overflow: hidden;
1293
- color: var(--us-list-item-title-color);
1294
- display: -webkit-box;
1295
- -webkit-box-orient: vertical;
1296
- -webkit-line-clamp: 1;
1382
+ .us-card--divider .us-card-header ~ .us-card-body {
1383
+ margin-bottom: var(--us-card-padding-y);
1297
1384
  }
1298
- .us-list-item__subtitle {
1299
- font-size: var(--us-list-item-subtitle-font-size);
1300
- font-weight: var(--us-list-item-subtitle-font-weight);
1301
- line-height: var(--us-list-item-subtitle-line-height);
1302
- opacity: var(--us-list-item-subtitle-opacity);
1303
- overflow: hidden;
1304
- color: var(--us-list-item-subtitle-color);
1305
- display: -webkit-box;
1306
- -webkit-box-orient: vertical;
1307
- -webkit-line-clamp: 1;
1385
+ .us-card--divider .us-card-header ~ .us-card-body::before {
1386
+ content: "";
1387
+ position: absolute;
1388
+ left: 0;
1389
+ right: 0;
1390
+ top: 0;
1391
+ border-top: 1px solid var(--us-card-border-color);
1308
1392
  }
1309
- .us-list-subheader--bordered {
1310
- border-bottom: var(--us-list-subheader-border-width) solid var(--us-list-subheader-border-color);
1393
+ .us-card--divider > .us-card-body:first-child, .us-card--divider :not([hidden]):first-child .us-card-body::before {
1394
+ border-top: none;
1311
1395
  }
1312
- .us-list-group .us-list {
1313
- --us-list-background: var(--us-list-group-background);
1396
+ .us-card--divider > .us-card-body:last-child, .us-card--divider :not([hidden]):last-child .us-card-body {
1397
+ margin-bottom: 0;
1314
1398
  }
1315
-
1316
- .us-data-list {
1317
- flex-grow: 1;
1318
- overflow: hidden;
1399
+ .us-card--divider > .us-card-body:last-child::after, .us-card--divider :not([hidden]):last-child .us-card-body::after {
1400
+ border-bottom: none;
1319
1401
  }
1320
1402
 
1321
- .us-menu {
1322
- margin: 0;
1323
- padding: var(--us-menu-padding-y) var(--us-menu-padding-x);
1324
- color: var(--us-menu-color);
1325
- background-color: var(--us-menu-background);
1403
+ .us-descriptions {
1404
+ display: grid;
1405
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1406
+ row-gap: var(--us-descriptions-gap-y);
1407
+ column-gap: var(--us-descriptions-gap-x);
1326
1408
  }
1327
- .us-menu-item {
1409
+
1410
+ .us-description {
1328
1411
  position: relative;
1329
- height: var(--us-menu-item-height);
1330
- padding: var(--us-menu-item-padding-y) var(--us-menu-item-padding-x);
1331
- font-size: var(--us-menu-item-font-size);
1332
- font-weight: var(--us-menu-item-font-weight);
1333
- border-radius: var(--us-menu-item-border-radius);
1334
- text-decoration: none;
1335
- cursor: pointer;
1336
- z-index: 0;
1337
- display: flex;
1338
- align-items: center;
1339
- color: var(--us-menu-item-color);
1340
- background-color: var(--us-menu-item-background);
1341
- user-select: none;
1342
- -webkit-tap-highlight-color: transparent;
1343
- gap: var(--us-menu-item-gap);
1344
- }
1345
- .us-menu-item:hover {
1346
- text-decoration: none;
1347
- }
1348
- .us-menu-item--hoverable {
1349
- cursor: pointer;
1350
- user-select: none;
1412
+ padding-block: var(--us-description-padding-y);
1413
+ padding-inline: var(--us-description-padding-x);
1351
1414
  }
1352
- .us-menu-item--disabled {
1353
- opacity: 0.6;
1354
- pointer-events: none;
1415
+ .us-description__container {
1416
+ display: grid;
1417
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1418
+ row-gap: var(--us-description-gap-y);
1419
+ column-gap: var(--us-description-gap-x);
1355
1420
  }
1356
- .us-menu-item__start-content {
1357
- flex-shrink: 0;
1358
- z-index: 1;
1421
+ .us-description-value {
1359
1422
  display: flex;
1360
- justify-content: center;
1361
1423
  align-items: center;
1362
1424
  }
1363
- .us-menu-item__start-content, .us-menu-item__end-content {
1425
+ .us-description-value__start-content, .us-description-value__end-content {
1364
1426
  flex-shrink: 0;
1365
- z-index: 1;
1366
- display: flex;
1367
- justify-content: center;
1368
- align-items: center;
1369
- gap: calc(var(--us-list-item-gap) * 0.5);
1370
1427
  }
1371
- .us-menu-item__content {
1428
+ .us-description-value__content {
1372
1429
  flex-grow: 1;
1373
- z-index: 1;
1374
- display: grid;
1375
- overflow: hidden;
1376
1430
  }
1377
- .us-menu-item__title {
1378
- overflow: hidden;
1379
- display: -webkit-box;
1380
- -webkit-box-orient: vertical;
1381
- -webkit-line-clamp: 1;
1431
+ .us-descriptions--row .us-description-label {
1432
+ grid-column: span 6/span 6;
1382
1433
  }
1383
- .us-menu-group {
1384
- position: relative;
1385
- height: var(--us-menu-group-height);
1386
- padding: var(--us-menu-group-padding-y) var(--us-menu-group-padding-x);
1387
- font-size: var(--us-menu-group-font-size);
1388
- font-weight: var(--us-menu-group-font-weight);
1389
- text-decoration: none;
1390
- border-bottom: var(--us-menu-group-border-width) solid var(--us-menu-group-border-color);
1391
- border-radius: var(--us-menu-group-border-radius);
1392
- display: flex;
1393
- align-items: center;
1394
- color: var(--us-menu-group-color);
1395
- background-color: var(--us-menu-group-background);
1396
- gap: var(--us-menu-group-gap);
1397
- }
1398
- .us-menu-group:hover {
1399
- text-decoration: none;
1434
+ .us-descriptions--row .us-description-value {
1435
+ grid-column: span 6/span 6;
1400
1436
  }
1401
- .us-menu-group__icon {
1402
- flex-shrink: 0;
1403
- z-index: 1;
1404
- display: flex;
1405
- justify-content: center;
1406
- align-items: center;
1437
+ .us-descriptions--col .us-description-label, .us-descriptions--col .us-description-value {
1438
+ grid-column: span 12/span 12;
1407
1439
  }
1408
- .us-menu-group__content {
1409
- flex-grow: 1;
1410
- z-index: 1;
1411
- display: grid;
1412
- overflow: hidden;
1440
+ .us-description-label {
1441
+ font-size: var(--us-description-label-font-size);
1442
+ font-weight: var(--us-description-label-font-weight);
1443
+ color: var(--us-description-label-color);
1444
+ opacity: var(--us-description-label-opacity);
1413
1445
  }
1414
- .us-menu-group__title {
1415
- overflow: hidden;
1416
- display: -webkit-box;
1417
- -webkit-box-orient: vertical;
1418
- -webkit-line-clamp: 1;
1446
+ .us-description-text {
1447
+ display: inline;
1448
+ font-size: var(--us-description-text-font-size);
1449
+ font-weight: var(--us-description-text-font-weight);
1450
+ color: var(--us-description-text-color);
1451
+ opacity: var(--us-description-text-opacity);
1452
+ word-break: break-word;
1419
1453
  }
1420
- .us-menu-submenu .us-menu {
1421
- --us-menu-background: var(--us-submenu-background);
1454
+ .us-description-empty {
1455
+ opacity: 0.75;
1456
+ user-select: none;
1457
+ cursor: default;
1422
1458
  }
1423
1459
 
1424
- .us-divider {
1460
+ .us-result {
1461
+ flex-grow: 1;
1425
1462
  width: 100%;
1426
- height: 1px;
1427
- background: var(--us-border-color);
1428
- }
1429
-
1430
- .us-breadcrumb {
1431
- padding: 0.5rem 0;
1432
- font-size: 0.875rem;
1463
+ padding-block: var(--us-result-padding-y);
1464
+ padding-inline: var(--us-result-padding-x);
1433
1465
  display: flex;
1466
+ flex-direction: column;
1467
+ justify-content: center;
1434
1468
  align-items: center;
1435
- gap: 0;
1469
+ gap: var(--us-result-gap);
1436
1470
  }
1437
- .us-breadcrumb-item {
1438
- padding: 0.25rem 0.5rem;
1439
- white-space: nowrap;
1471
+ .us-result__content {
1472
+ text-align: center;
1440
1473
  display: flex;
1441
- align-items: center;
1474
+ flex-direction: column;
1475
+ gap: var(--us-result-content-gap);
1442
1476
  }
1443
- .us-breadcrumb-item:not(.us-breadcrumb-item--is-menu) {
1444
- line-height: 32px;
1477
+ .us-result__title {
1478
+ font-size: var(--us-result-title-font-size);
1479
+ font-weight: var(--us-result-title-font-weight);
1445
1480
  }
1446
-
1447
- .us-swipe {
1448
- position: relative;
1481
+ .us-result__subtitle {
1482
+ font-size: var(--us-result-subtitle-font-size);
1483
+ font-weight: var(--us-result-subtitle-font-weight);
1449
1484
  }
1450
- .us-swipe__content {
1485
+
1486
+ .us-nav-rail {
1487
+ flex-shrink: 0;
1451
1488
  position: relative;
1452
- overflow-x: hidden;
1489
+ width: 73px;
1490
+ height: 100%;
1491
+ overflow: hidden;
1453
1492
  display: flex;
1454
- align-items: center;
1455
- gap: var(--us-swipe-gap);
1456
- }
1457
- @media (max-width: 767px) and (hover: none) {
1458
- .us-swipe__content {
1459
- overflow-x: auto;
1460
- }
1461
- }
1462
- .us-swipe__start-content, .us-swipe__end-content {
1463
- position: absolute;
1464
- top: 50%;
1465
- transform: translateY(-50%);
1466
- z-index: 1;
1467
- }
1468
- .us-swipe__start-content {
1469
- left: -1.25rem;
1493
+ flex-direction: column;
1470
1494
  }
1471
- .us-swipe__end-content {
1472
- right: -1.25rem;
1495
+ .us-nav-rail--left {
1496
+ border-right-width: 1px;
1497
+ border-right-color: var(--us-nav-rail-border-color);
1498
+ border-right-style: solid;
1473
1499
  }
1474
- .us-swipe--auto-hide .us-swipe__start-content, .us-swipe--auto-hide .us-swipe__end-content {
1475
- transform: translateY(-50%) scale(0);
1476
- transition: all 0.2s ease-in-out;
1500
+ .us-nav-rail--right {
1501
+ border-left-width: 1px;
1502
+ border-left-color: var(--us-nav-rail-border-color);
1503
+ border-left-style: solid;
1477
1504
  }
1478
- .us-swipe--auto-hide:hover .us-swipe__start-content, .us-swipe--auto-hide:hover .us-swipe__end-content {
1479
- transform: translateY(-50%) scale(1);
1505
+ .us-nav-rail__start-content, .us-nav-rail__end-content {
1506
+ flex-shrink: 0;
1480
1507
  }
1481
- .us-swipe--start .us-swipe-item:last-child {
1482
- margin-right: auto;
1508
+ .us-nav-rail__start-content {
1509
+ padding-block: var(--us-nav-rail-start-content-padding-y);
1510
+ padding-inline: var(--us-nav-rail-start-content-padding-x);
1511
+ gap: var(--us-nav-rail-start-content-gap);
1483
1512
  }
1484
- .us-swipe--center .us-swipe-item:first-child {
1485
- margin-left: auto;
1513
+ .us-nav-rail__end-content {
1514
+ padding-block: var(--us-nav-rail-end-content-padding-y);
1515
+ padding-inline: var(--us-nav-rail-end-content-padding-x);
1516
+ gap: var(--us-nav-rail-end-content-gap);
1486
1517
  }
1487
- .us-swipe--center .us-swipe-item:last-child {
1488
- margin-right: auto;
1518
+ .us-nav-rail__content {
1519
+ flex-grow: 1;
1520
+ padding-block: var(--us-nav-rail-content-padding-y);
1521
+ padding-inline: var(--us-nav-rail-content-padding-x);
1522
+ gap: var(--us-nav-rail-content-gap);
1489
1523
  }
1490
- .us-swipe--end .us-swipe-item:first-child {
1491
- margin-left: auto;
1524
+ .us-nav-rail__start-content, .us-nav-rail__end-content, .us-nav-rail__content {
1525
+ display: flex;
1526
+ flex-direction: column;
1492
1527
  }
1493
- .us-swipe-item {
1528
+ .us-nav-rail-item {
1494
1529
  flex-shrink: 0;
1530
+ padding-block: var(--us-nav-rail-item-padding-y);
1531
+ padding-inline: var(--us-nav-rail-item-padding-x);
1495
1532
  position: relative;
1496
- }
1497
-
1498
- .us-tabs {
1499
- width: 100%;
1500
- white-space: nowrap;
1501
- flex-wrap: wrap;
1533
+ text-decoration: none;
1534
+ opacity: var(--us-nav-rail-item-opacity);
1535
+ border-radius: var(--us-nav-rail-item-border-radius);
1536
+ cursor: default;
1537
+ color: var(--us-nav-rail-item-color);
1538
+ background-color: var(--us-nav-rail-item-background);
1502
1539
  display: flex;
1503
- align-items: center;
1504
- }
1505
- .us-tabs--start {
1506
- justify-content: flex-start;
1507
- }
1508
- .us-tabs--center {
1509
- justify-content: center;
1540
+ user-select: none;
1510
1541
  }
1511
- .us-tabs--end {
1512
- justify-content: flex-end;
1542
+ .us-nav-rail-item__indicator {
1543
+ position: absolute;
1544
+ top: 0;
1545
+ bottom: 0;
1546
+ z-index: 1;
1547
+ width: var(--us-nav-rail-item-indicator-size);
1548
+ z-index: 1;
1549
+ background: var(--us-nav-rail-item-indicator-color);
1550
+ transform: translateX(calc(var(--us-nav-rail-item-indicator-size) * -1));
1551
+ transition: transform 0.125s cubic-bezier(0.17, 0.67, 0.55, 1.09), inset 0.125s cubic-bezier(0.17, 0.67, 0.55, 1.09);
1513
1552
  }
1514
- .us-tabs--stretch .us-tab {
1553
+ .us-nav-rail-item__content {
1515
1554
  flex-grow: 1;
1516
- }
1517
- @media (max-width: 767px) and (hover: none) {
1518
- .us-tabs {
1519
- overflow: auto;
1520
- }
1521
- }
1522
-
1523
- .us-tab {
1524
1555
  position: relative;
1525
- padding-block: var(--us-tab-padding-y);
1526
- padding-inline: var(--us-tab-padding-x);
1527
- font-size: var(--us-tab-font-size);
1528
- font-weight: var(--us-tab-font-weight);
1529
- text-decoration: none;
1530
- vertical-align: middle;
1531
- border-radius: var(--us-tab-border-radius);
1532
- z-index: 1;
1533
- color: var(--us-tab-color);
1534
- display: inline-flex;
1556
+ padding-block: var(--us-nav-rail-item-content-padding-y);
1557
+ padding-inline: var(--us-nav-rail-item-content-padding-x);
1558
+ display: flex;
1559
+ flex-direction: column;
1535
1560
  justify-content: center;
1536
1561
  align-items: center;
1537
- user-select: none;
1538
- -webkit-tap-highlight-color: transparent;
1539
- }
1540
- .us-tab:hover {
1541
- text-decoration: none;
1542
- }
1543
- .us-tab--disabled {
1544
- opacity: 0.6;
1545
- pointer-events: none;
1546
- }
1547
- .us-tab--closable {
1548
- padding-inline-end: calc(var(--us-tab-padding-x) / 2);
1562
+ gap: var(--us-nav-rail-item-gap);
1549
1563
  }
1550
- .us-tab__start-content, .us-tab__end-content {
1564
+ .us-nav-rail-item__media {
1565
+ position: relative;
1566
+ outline-width: var(--us-nav-rail-item-media-border-width);
1567
+ outline-style: var(--us-nav-rail-item-media-border-style);
1568
+ outline-color: var(--us-nav-rail-item-media-border-color);
1569
+ width: var(--us-nav-rail-item-media-width);
1570
+ height: var(--us-nav-rail-item-media-height);
1571
+ border-radius: var(--us-nav-rail-item-media-border-radius);
1572
+ overflow: hidden;
1551
1573
  display: flex;
1574
+ justify-content: center;
1552
1575
  align-items: center;
1576
+ transition: transform 0.125s cubic-bezier(0.17, 0.67, 0.55, 1.09);
1553
1577
  }
1554
- .us-tab__content {
1555
- position: relative;
1556
- height: 40px;
1557
- display: inline-flex;
1558
- flex-direction: row;
1578
+ .us-nav-rail-item__icon {
1579
+ padding-block: var(--us-nav-rail-item-icon-padding-y);
1580
+ padding-inline: var(--us-nav-rail-item-icon-padding-x);
1581
+ display: flex;
1559
1582
  justify-content: center;
1560
1583
  align-items: center;
1561
- gap: 8px;
1562
1584
  }
1563
- .us-tab__indicator {
1564
- position: absolute;
1565
- height: var(--us-tab-indicator-height);
1566
- border-radius: var(--us-tab-indicator-border-radius);
1567
- inset: auto 0px 0px;
1568
- opacity: 0;
1569
- z-index: -1;
1570
- color: var(--us-tab-indicator-color);
1571
- transform-origin: left bottom;
1585
+ .us-nav-rail-item__icon .us-icon {
1586
+ font-size: var(--us-nav-rail-item-icon-font-size);
1572
1587
  }
1573
- .us-tab--selected .us-tab__indicator {
1574
- opacity: 1;
1588
+ .us-nav-rail-item__label {
1589
+ position: absolute;
1590
+ bottom: calc((var(--us-nav-rail-item-label-font-size) + var(--us-nav-rail-item-gap, 0)) * -1);
1591
+ left: 50%;
1592
+ transform: translateX(-50%);
1593
+ font-size: var(--us-nav-rail-item-label-font-size);
1594
+ font-weight: var(--us-nav-rail-item-label-font-weight);
1595
+ line-height: var(--us-nav-rail-item-label-line-height);
1596
+ width: 100%;
1597
+ text-align: center;
1598
+ overflow: hidden;
1599
+ display: -webkit-box;
1600
+ -webkit-box-orient: vertical;
1601
+ -webkit-line-clamp: 1;
1602
+ transition: opacity 0.125s cubic-bezier(0.17, 0.67, 0.55, 1.09);
1575
1603
  }
1576
- .us-tab__closable {
1577
- position: relative;
1578
- padding: 0.125rem;
1579
- color: var(--us-tab-closable-color);
1580
- border-radius: 9999px;
1581
- transform: scale(0.75);
1582
- cursor: pointer;
1583
- transition: all 0.15s ease-in-out;
1604
+ .us-nav-rail-item--selected {
1605
+ color: var(--us-_active-nav-rail-item-color);
1584
1606
  }
1585
- .us-tab__closable:hover {
1586
- transform: scale(1);
1607
+ .us-nav-rail-item--selected .us-nav-rail-item__media {
1608
+ outline-color: var(--us-_active-nav-rail-item-media-border-color);
1587
1609
  }
1588
- .us-tab__closable::after {
1589
- position: absolute;
1590
- content: "";
1591
- inset: 0px;
1592
- border-radius: inherit;
1593
- background-color: currentColor;
1594
- opacity: 0;
1610
+ .us-nav-rail-item--selected .us-nav-rail-item__icon, .us-nav-rail-item:hover .us-nav-rail-item__icon {
1611
+ transform: scale(1.15);
1612
+ }
1613
+ .us-nav-rail-item--selected .us-nav-rail-item__indicator, .us-nav-rail-item--selected:hover .us-nav-rail-item__indicator {
1614
+ color: var(--us-_active-nav-rail-item-indicator-color);
1615
+ }
1616
+ .us-nav-rail-item--selected .us-nav-rail-item__indicator, .us-nav-rail-item:hover .us-nav-rail-item__indicator {
1617
+ transform: translateX(0px);
1618
+ }
1619
+ .us-nav-rail--left .us-nav-rail-item__indicator {
1620
+ left: -25%;
1621
+ border-radius: 0px var(--us-nav-rail-item-indicator-border-radius) var(--us-nav-rail-item-indicator-border-radius) 0px;
1622
+ }
1623
+ .us-nav-rail--right .us-nav-rail-item__indicator {
1624
+ right: -25%;
1625
+ border-radius: var(--us-nav-rail-item-indicator-border-radius) 0px 0px var(--us-nav-rail-item-indicator-border-radius);
1626
+ }
1627
+ .us-nav-rail--left .us-nav-rail-item--selected .us-nav-rail-item__indicator, .us-nav-rail--left .us-nav-rail-item--selected:hover .us-nav-rail-item__indicator {
1628
+ left: 0px;
1629
+ }
1630
+ .us-nav-rail--right .us-nav-rail-item--selected .us-nav-rail-item__indicator, .us-nav-rail--right .us-nav-rail-item--selected:hover .us-nav-rail-item__indicator {
1631
+ right: 0px;
1595
1632
  }
1596
1633
 
1597
- .us-card {
1598
- position: relative;
1599
- border-radius: var(--us-card-border-radius);
1600
- z-index: 0;
1634
+ .us-steps {
1635
+ flex-shrink: 0;
1636
+ display: grid;
1601
1637
  overflow: hidden;
1602
- -webkit-tap-highlight-color: transparent;
1603
- background-color: white;
1604
- padding-block: var(--us-card-padding-y);
1605
- padding-inline: var(--us-card-padding-x);
1606
- display: flex;
1607
- flex-direction: column;
1608
- gap: var(--us-card-gap);
1609
1638
  }
1610
- .us-card:hover {
1611
- text-decoration: none;
1639
+ .us-steps--horizontal {
1640
+ grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
1612
1641
  }
1613
- .us-card--bordered {
1614
- border: var(--us-card-border-width) var(--us-card-border-style) var(--us-card-border-color);
1642
+ .us-steps--vertical {
1643
+ grid-template-columns: 1;
1644
+ gap: 2rem;
1615
1645
  }
1616
- .us-card--shadow {
1617
- box-shadow: var(--us-card-box-shadow);
1646
+ .us-steps--vertical .us-step {
1647
+ flex-direction: row;
1648
+ gap: 1.5rem;
1618
1649
  }
1619
- .us-card--hoverable, .us-card--selected {
1620
- cursor: pointer;
1621
- user-select: none;
1650
+ .us-steps--vertical .us-step__content {
1651
+ padding: 4px 0px;
1622
1652
  }
1623
- .us-card--disabled {
1624
- opacity: 0.6;
1625
- cursor: not-allowed;
1626
- user-select: none;
1653
+ .us-steps--vertical .us-step__title, .us-steps--vertical .us-step__subtitle {
1654
+ margin: 0;
1655
+ text-align: start;
1627
1656
  }
1628
- .us-card-header {
1657
+ .us-steps--vertical .us-steps__indicator {
1658
+ width: 1px;
1659
+ height: 100%;
1660
+ top: -50%;
1661
+ bottom: 50%;
1662
+ left: auto;
1663
+ right: auto;
1664
+ }
1665
+
1666
+ .us-step {
1629
1667
  position: relative;
1630
- flex-shrink: 0;
1631
- height: var(--us-card-header-height);
1632
- min-height: var(--us-card-header-min-height);
1633
- padding-block: var(--us-card-header-padding-y);
1634
- padding-inline: var(--us-card-header-padding-x);
1635
- color: var(--us-card-header-color);
1636
1668
  display: flex;
1637
- align-items: center;
1638
- gap: var(--us-card-header-gap);
1669
+ flex-direction: column;
1670
+ gap: 0.5rem;
1639
1671
  }
1640
- .us-card-header__start-content, .us-card-header__end-content {
1641
- flex-shrink: 0;
1672
+ .us-step--completed {
1673
+ --us-step-divider-color: var(--us-_completed-step-divider-color);
1674
+ }
1675
+ .us-step--current {
1676
+ --us-step-divider-color: var(--us-_current-step-divider-color);
1677
+ }
1678
+ .us-step--disabled {
1679
+ opacity: 0.65;
1680
+ pointer-events: none;
1681
+ }
1682
+ .us-step__header {
1683
+ position: relative;
1642
1684
  display: flex;
1685
+ flex-direction: column;
1643
1686
  align-items: center;
1644
- gap: var(--us-card-header-content-gap);
1687
+ gap: 1rem;
1645
1688
  }
1646
- .us-card-header__content {
1647
- flex-grow: 1;
1648
- overflow: hidden;
1689
+ .us-step__avatar-wrapper {
1690
+ border: 2px solid transparent;
1691
+ padding: 2px;
1692
+ border-radius: 50%;
1693
+ }
1694
+ .us-step__avatar {
1695
+ position: relative;
1696
+ flex-shrink: 0;
1697
+ width: 44px;
1698
+ height: 44px;
1699
+ border-radius: 50%;
1700
+ font-size: var(--us-step-indicator-font-size);
1701
+ font-weight: var(--us-step-indicator-font-weight);
1702
+ color: var(--us-step-indicator-color);
1703
+ background-color: var(--us-step-background-color);
1649
1704
  display: flex;
1650
- flex-direction: column;
1651
1705
  justify-content: center;
1706
+ align-items: center;
1652
1707
  }
1653
- .us-card-header--centered .us-card-header__start-content, .us-card-header--centered .us-card-header__end-content {
1654
- position: absolute;
1708
+ .us-step__icon {
1709
+ position: relative;
1655
1710
  }
1656
- .us-card-header--centered .us-card-header__start-content {
1657
- left: var(--us-card-header-padding-x);
1711
+ .us-step--current .us-step__avatar-wrapper {
1712
+ border-color: var(--us-_current-step-border-color);
1658
1713
  }
1659
- .us-card-header--centered .us-card-header__end-content {
1660
- right: var(--us-card-header-padding-x);
1714
+ .us-step__content {
1715
+ display: flex;
1716
+ flex-direction: column;
1717
+ gap: 0.5rem;
1661
1718
  }
1662
- .us-card-header--centered .us-card-header__content {
1663
- align-items: center;
1719
+ .us-step__title {
1720
+ flex-shrink: 0;
1721
+ max-width: 150px;
1722
+ margin: 0 auto;
1723
+ font-size: 0.875rem;
1724
+ font-weight: 500;
1664
1725
  text-align: center;
1665
- }
1666
- .us-card-header .us-card-title {
1667
- font-size: var(--us-card-header-title-font-size);
1668
- font-weight: var(--us-card-header-title-font-weight);
1669
- line-height: var(--us-card-header-title-line-height);
1670
1726
  overflow: hidden;
1671
- color: var(--us-card-header-title-color);
1672
1727
  display: -webkit-box;
1673
1728
  -webkit-box-orient: vertical;
1674
- -webkit-line-clamp: 1;
1729
+ -webkit-line-clamp: 2;
1675
1730
  }
1676
- .us-card-header .us-card-subtitle {
1677
- font-size: var(--us-card-header-subtitle-font-size);
1678
- font-weight: var(--us-card-header-subtitle-font-weight);
1679
- line-height: var(--us-card-header-subtitle-line-height);
1731
+ .us-step__subtitle {
1732
+ flex-shrink: 0;
1733
+ max-width: 150px;
1734
+ margin: 0 auto;
1735
+ font-size: 0.75rem;
1736
+ text-align: center;
1680
1737
  overflow: hidden;
1681
- color: var(--us-card-header-subtitle-color);
1682
1738
  display: -webkit-box;
1683
1739
  -webkit-box-orient: vertical;
1684
- -webkit-line-clamp: 1;
1740
+ -webkit-line-clamp: 2;
1741
+ opacity: 0.75;
1685
1742
  }
1686
- .us-card .us-card-title:not(.us-card-header .us-card-title) {
1687
- flex-shrink: 0;
1688
- padding-block: var(--us-card-title-padding-y);
1689
- padding-inline: var(--us-card-title-padding-x);
1690
- font-size: var(--us-card-title-font-size);
1691
- font-weight: var(--us-card-title-font-weight);
1692
- line-height: var(--us-card-title-line-height);
1693
- color: var(--us-card-title-color);
1743
+
1744
+ .us-steps {
1745
+ position: relative;
1694
1746
  }
1695
- .us-card .us-card-title--centered:not(.us-card-header .us-card-title) {
1696
- text-align: center;
1747
+ .us-steps__indicator {
1748
+ position: absolute;
1749
+ flex-grow: 1;
1750
+ position: absolute;
1751
+ right: 50%;
1752
+ top: 50%;
1753
+ left: -50%;
1754
+ width: 100%;
1755
+ height: 1px;
1756
+ background-color: var(--us-step-divider-color);
1757
+ z-index: -1;
1697
1758
  }
1698
- .us-card .us-card-subtitle:not(.us-card-header .us-card-subtitle) {
1699
- flex-shrink: 0;
1700
- font-size: var(--us-card-header-subtitle-font-size);
1701
- font-weight: var(--us-card-header-subtitle-font-weight);
1702
- line-height: var(--us-card-header-subtitle-line-height);
1703
- overflow: hidden;
1704
- color: var(--us-card-header-subtitle-color);
1759
+ .us-steps__indicator--completed {
1760
+ border-bottom-color: var(--us-_completed-step-divider-color);
1705
1761
  }
1706
- .us-card-body {
1707
- position: relative;
1708
- padding-block: var(--us-card-body-padding-y);
1709
- padding-inline: var(--us-card-body-padding-x);
1710
- font-size: var(--us-card-body-font-size);
1711
- line-height: var(--us-card-body-line-height);
1712
- color: var(--us-card-body-color);
1762
+ .us-steps__indicator--current {
1763
+ border-bottom-color: var(--us-_current-step-divider-color);
1713
1764
  }
1714
- .us-card-footer {
1715
- flex-shrink: 0;
1765
+
1766
+ .us-input {
1716
1767
  position: relative;
1717
- min-height: var(--us-card-footer-min-height);
1718
- padding-block: var(--us-card-footer-padding-y);
1719
- padding-inline: var(--us-card-footer-padding-x);
1720
- border-top-width: 0px;
1721
- border-top-style: solid;
1722
- border-top-color: var(--us-card-footer-border-color);
1723
- background-color: var(--us-card-footer-background);
1768
+ width: 100%;
1769
+ padding: 0;
1770
+ min-height: var(--us-input-height);
1724
1771
  display: flex;
1725
- justify-content: flex-end;
1726
1772
  align-items: center;
1727
- gap: 0.5rem;
1728
- }
1729
- .us-card-media {
1730
- position: relative;
1731
- margin: 8px;
1732
- border-radius: 8px;
1733
- aspect-ratio: 1/1;
1734
- overflow: hidden;
1735
- display: flex;
1736
- justify-content: center;
1737
- align-items: center;
1738
- background-color: rgba(0, 0, 0, 0.08);
1739
- }
1740
- .us-card-media__top-left-content {
1741
- padding: 4px;
1742
- position: absolute;
1743
- top: 0;
1744
- left: 0;
1745
- }
1746
- .us-card-media__top-right-content {
1747
- padding: 4px;
1748
- position: absolute;
1749
- top: 0;
1750
- right: 0;
1751
- }
1752
- .us-card-media img {
1753
- width: 100%;
1754
- height: 100%;
1755
- object-fit: cover;
1773
+ border: none;
1774
+ border-radius: var(--us-input-border-radius);
1775
+ color: var(--us-input-color);
1776
+ background-color: var(--us-input-background);
1777
+ z-index: 0;
1778
+ transition: all 0.2s ease-in-out;
1779
+ cursor: text;
1756
1780
  }
1757
- .us-card--divider .us-card-body {
1758
- margin-top: var(--us-card-padding-y);
1781
+ .us-input:focus-visible {
1782
+ outline: none;
1759
1783
  }
1760
- .us-card--divider .us-card-body::after {
1761
- content: "";
1762
- position: absolute;
1763
- left: 0;
1764
- right: 0;
1765
- bottom: 0;
1766
- border-bottom: 1px solid var(--us-card-border-color);
1784
+ .us-input--selectable {
1785
+ cursor: pointer;
1767
1786
  }
1768
- .us-card--divider .us-card-header ~ .us-card-body {
1769
- margin-bottom: var(--us-card-padding-y);
1787
+ .us-input--disabled {
1788
+ opacity: 0.75;
1789
+ pointer-events: none;
1770
1790
  }
1771
- .us-card--divider .us-card-header ~ .us-card-body::before {
1772
- content: "";
1773
- position: absolute;
1774
- left: 0;
1775
- right: 0;
1776
- top: 0;
1777
- border-top: 1px solid var(--us-card-border-color);
1791
+ .us-input--read-only {
1792
+ pointer-events: none;
1778
1793
  }
1779
- .us-card--divider > .us-card-body:first-child, .us-card--divider :not([hidden]):first-child .us-card-body::before {
1780
- border-top: none;
1794
+ .us-input--clearable .us-input__clearable {
1795
+ transform: scale(0);
1796
+ transition: all 0.2s ease-in-out;
1781
1797
  }
1782
- .us-card--divider > .us-card-body:last-child, .us-card--divider :not([hidden]):last-child .us-card-body {
1783
- margin-bottom: 0;
1798
+ .us-input--clearable:hover .us-input__clearable {
1799
+ transform: scale(0.75);
1784
1800
  }
1785
- .us-card--divider > .us-card-body:last-child::after, .us-card--divider :not([hidden]):last-child .us-card-body::after {
1786
- border-bottom: none;
1801
+ .us-input-group {
1802
+ display: flex;
1803
+ align-items: center;
1787
1804
  }
1788
-
1789
- .us-descriptions {
1790
- display: grid;
1791
- grid-template-columns: repeat(12, minmax(0, 1fr));
1792
- row-gap: var(--us-descriptions-gap-y);
1793
- column-gap: var(--us-descriptions-gap-x);
1805
+ .us-input-group .us-input {
1806
+ border-radius: 0px;
1794
1807
  }
1795
-
1796
- .us-description {
1797
- position: relative;
1798
- padding-block: var(--us-description-padding-y);
1799
- padding-inline: var(--us-description-padding-x);
1808
+ .us-input-group .us-input:first-of-type {
1809
+ border-top-left-radius: var(--us-input-border-radius);
1810
+ border-bottom-left-radius: var(--us-input-border-radius);
1800
1811
  }
1801
- .us-description__container {
1802
- display: grid;
1803
- grid-template-columns: repeat(12, minmax(0, 1fr));
1804
- row-gap: var(--us-description-gap-y);
1805
- column-gap: var(--us-description-gap-x);
1812
+ .us-input-group .us-input:last-of-type {
1813
+ border-top-right-radius: var(--us-input-border-radius);
1814
+ border-bottom-right-radius: var(--us-input-border-radius);
1806
1815
  }
1807
- .us-description-value {
1816
+ .us-input__icon {
1817
+ padding: 0;
1808
1818
  display: flex;
1819
+ justify-content: center;
1809
1820
  align-items: center;
1821
+ border: none;
1822
+ outline: none;
1823
+ background-color: transparent;
1810
1824
  }
1811
- .us-description-value__start-content, .us-description-value__end-content {
1812
- flex-shrink: 0;
1813
- }
1814
- .us-description-value__content {
1815
- flex-grow: 1;
1825
+ .us-input__icon--opacity {
1826
+ opacity: 0;
1816
1827
  }
1817
- .us-descriptions--row .us-description-label {
1818
- grid-column: span 6/span 6;
1828
+ .us-input__icon--pointer {
1829
+ cursor: pointer;
1819
1830
  }
1820
- .us-descriptions--row .us-description-value {
1821
- grid-column: span 6/span 6;
1831
+ .us-input:hover .us-input__icon--opacity-hoverable {
1832
+ opacity: 0.5;
1822
1833
  }
1823
- .us-descriptions--col .us-description-label, .us-descriptions--col .us-description-value {
1824
- grid-column: span 12/span 12;
1834
+ .us-input:hover .us-input__icon--opacity-hoverable:hover {
1835
+ opacity: 1;
1825
1836
  }
1826
- .us-description-label {
1827
- font-size: var(--us-description-label-font-size);
1828
- font-weight: var(--us-description-label-font-weight);
1829
- color: var(--us-description-label-color);
1830
- opacity: var(--us-description-label-opacity);
1837
+ .us-input__content {
1838
+ position: relative;
1839
+ flex: 1;
1840
+ height: 100%;
1841
+ display: flex;
1842
+ align-items: center;
1843
+ overflow: hidden;
1831
1844
  }
1832
- .us-description-text {
1833
- display: inline;
1834
- font-size: var(--us-description-text-font-size);
1835
- font-weight: var(--us-description-text-font-weight);
1836
- color: var(--us-description-text-color);
1837
- opacity: var(--us-description-text-opacity);
1845
+ .us-input__content--chips {
1846
+ padding-block: var(--us-input-padding-y);
1847
+ padding-inline: var(--us-input-padding-x);
1848
+ flex-grow: 1;
1849
+ display: flex;
1850
+ flex-wrap: wrap;
1851
+ gap: 0.25rem;
1838
1852
  }
1839
- .us-description-empty {
1840
- opacity: 0.75;
1841
- user-select: none;
1842
- cursor: default;
1853
+ .us-input__content--chips input {
1854
+ flex: 1;
1855
+ height: 24px;
1856
+ border: none;
1857
+ outline: none;
1858
+ color: inherit;
1859
+ background: inherit;
1860
+ min-width: 0;
1843
1861
  }
1844
-
1845
- .us-result {
1846
- flex-grow: 1;
1862
+ .us-input__field {
1863
+ flex: 1;
1847
1864
  width: 100%;
1848
- padding-block: var(--us-result-padding-y);
1849
- padding-inline: var(--us-result-padding-x);
1865
+ height: 100%;
1866
+ padding-block: var(--us-input-padding-y);
1867
+ padding-inline: var(--us-input-padding-x);
1868
+ font-size: var(--us-input-font-size);
1869
+ font-family: var(--us-input-font-family);
1870
+ line-height: var(--us-input-line-height);
1871
+ border: none;
1872
+ outline: none;
1873
+ color: var(--us-input-color);
1874
+ background-color: transparent;
1850
1875
  display: flex;
1851
- flex-direction: column;
1852
- justify-content: center;
1853
1876
  align-items: center;
1854
- gap: var(--us-result-gap);
1855
1877
  }
1856
- .us-result__content {
1857
- text-align: center;
1858
- display: flex;
1859
- flex-direction: column;
1860
- gap: var(--us-result-content-gap);
1878
+ .us-input__field:focus {
1879
+ outline: none !important;
1861
1880
  }
1862
- .us-result__title {
1863
- font-size: var(--us-result-title-font-size);
1864
- font-weight: var(--us-result-title-font-weight);
1881
+ .us-input__field::placeholder {
1882
+ color: var(--us-input-placeholder-color);
1865
1883
  }
1866
- .us-result__subtitle {
1867
- font-size: var(--us-result-subtitle-font-size);
1868
- font-weight: var(--us-result-subtitle-font-weight);
1884
+ .us-input__search, .us-input__placeholder {
1885
+ flex: 1;
1886
+ width: 100%;
1887
+ padding-block: var(--us-input-padding-y);
1888
+ padding-inline: var(--us-input-padding-x);
1889
+ font-size: var(--us-input-font-size);
1890
+ font-family: var(--us-input-font-family);
1891
+ line-height: var(--us-input-line-height);
1892
+ color: var(--us-input-color);
1893
+ overflow: hidden;
1894
+ text-overflow: ellipsis;
1895
+ white-space: nowrap;
1896
+ display: block;
1869
1897
  }
1870
-
1871
- .us-nav-rail {
1898
+ .us-input__placeholder {
1899
+ color: var(--us-input-placeholder-color);
1900
+ }
1901
+ .us-input__start-content, .us-input__end-content {
1872
1902
  flex-shrink: 0;
1873
- position: relative;
1874
- width: 73px;
1875
1903
  height: 100%;
1876
- overflow: hidden;
1877
1904
  display: flex;
1878
- flex-direction: column;
1879
- }
1880
- .us-nav-rail--left {
1881
- border-right-width: 1px;
1882
- border-right-color: var(--us-nav-rail-border-color);
1883
- border-right-style: solid;
1905
+ align-items: center;
1906
+ font-size: var(--us-input-font-size);
1907
+ font-family: var(--us-input-font-family);
1908
+ line-height: var(--us-input-line-height);
1909
+ gap: var(--us-input-content-gap);
1884
1910
  }
1885
- .us-nav-rail--right {
1886
- border-left-width: 1px;
1887
- border-left-color: var(--us-nav-rail-border-color);
1888
- border-left-style: solid;
1911
+ .us-input__start-content .us-icon, .us-input__end-content .us-icon {
1912
+ font-size: var(--us-input-icon-size);
1889
1913
  }
1890
- .us-nav-rail__start-content, .us-nav-rail__end-content {
1891
- flex-shrink: 0;
1914
+ .us-input__start-content {
1915
+ padding-left: calc(0.75 * var(--us-input-padding-x));
1916
+ padding-right: calc(0.375 * var(--us-input-padding-x));
1892
1917
  }
1893
- .us-nav-rail__start-content {
1894
- padding-block: var(--us-nav-rail-start-content-padding-y);
1895
- padding-inline: var(--us-nav-rail-start-content-padding-x);
1896
- gap: var(--us-nav-rail-start-content-gap);
1918
+ .us-input__end-content {
1919
+ padding-inline: calc(0.75 * var(--us-input-padding-x));
1897
1920
  }
1898
- .us-nav-rail__end-content {
1899
- padding-block: var(--us-nav-rail-end-content-padding-y);
1900
- padding-inline: var(--us-nav-rail-end-content-padding-x);
1901
- gap: var(--us-nav-rail-end-content-gap);
1921
+ .us-input--start-content .us-input__content .us-input__field, .us-input--start-content .us-input__content .us-input__search, .us-input--start-content .us-input__content .us-input__placeholder {
1922
+ padding-left: 0;
1902
1923
  }
1903
- .us-nav-rail__content {
1904
- flex-grow: 1;
1905
- padding-block: var(--us-nav-rail-content-padding-y);
1906
- padding-inline: var(--us-nav-rail-content-padding-x);
1907
- gap: var(--us-nav-rail-content-gap);
1924
+ .us-input--end-content .us-input__content .us-input__field, .us-input--end-content .us-input__content .us-input__search, .us-input--end-content .us-input__content .us-input__placeholder {
1925
+ padding-right: 0;
1908
1926
  }
1909
- .us-nav-rail__start-content, .us-nav-rail__end-content, .us-nav-rail__content {
1910
- display: flex;
1911
- flex-direction: column;
1912
- }
1913
- .us-nav-rail-item {
1914
- flex-shrink: 0;
1915
- padding-block: var(--us-nav-rail-item-padding-y);
1916
- padding-inline: var(--us-nav-rail-item-padding-x);
1917
- position: relative;
1918
- text-decoration: none;
1919
- opacity: var(--us-nav-rail-item-opacity);
1920
- border-radius: var(--us-nav-rail-item-border-radius);
1921
- cursor: default;
1922
- color: var(--us-nav-rail-item-color);
1923
- background-color: var(--us-nav-rail-item-background);
1924
- display: flex;
1925
- user-select: none;
1927
+
1928
+ .us-checkbox {
1929
+ cursor: pointer;
1930
+ display: inline-flex;
1931
+ align-items: center;
1932
+ gap: var(--us-checkbox-gap);
1933
+ -webkit-tap-highlight-color: transparent;
1926
1934
  }
1927
- .us-nav-rail-item__indicator {
1935
+ .us-checkbox input {
1928
1936
  position: absolute;
1929
- top: 0;
1930
- bottom: 0;
1931
- z-index: 1;
1932
- width: var(--us-nav-rail-item-indicator-size);
1933
- z-index: 1;
1934
- background: var(--us-nav-rail-item-indicator-color);
1935
- transform: translateX(calc(var(--us-nav-rail-item-indicator-size) * -1));
1936
- transition: transform 0.125s cubic-bezier(0.17, 0.67, 0.55, 1.09), inset 0.125s cubic-bezier(0.17, 0.67, 0.55, 1.09);
1937
+ width: 0;
1938
+ height: 0;
1939
+ opacity: 0;
1937
1940
  }
1938
- .us-nav-rail-item__content {
1939
- flex-grow: 1;
1940
- position: relative;
1941
- padding-block: var(--us-nav-rail-item-content-padding-y);
1942
- padding-inline: var(--us-nav-rail-item-content-padding-x);
1943
- display: flex;
1944
- flex-direction: column;
1945
- justify-content: center;
1946
- align-items: center;
1947
- gap: var(--us-nav-rail-item-gap);
1941
+ .us-checkbox--disabled {
1942
+ opacity: 0.6;
1943
+ pointer-events: none;
1948
1944
  }
1949
- .us-nav-rail-item__media {
1945
+ .us-checkbox--read-only {
1946
+ pointer-events: none;
1947
+ }
1948
+ .us-checkbox__control {
1950
1949
  position: relative;
1951
- outline-width: var(--us-nav-rail-item-media-border-width);
1952
- outline-style: var(--us-nav-rail-item-media-border-style);
1953
- outline-color: var(--us-nav-rail-item-media-border-color);
1954
- width: var(--us-nav-rail-item-media-width);
1955
- height: var(--us-nav-rail-item-media-height);
1956
- border-radius: var(--us-nav-rail-item-media-border-radius);
1957
- overflow: hidden;
1950
+ width: var(--us-checkbox-control-width);
1951
+ height: var(--us-checkbox-control-height);
1952
+ border-width: var(--us-checkbox-control-border-width);
1953
+ border-style: var(--us-checkbox-control-border-style);
1954
+ border-color: var(--us-checkbox-control-border-color);
1955
+ border-radius: var(--us-checkbox-control-border-radius);
1956
+ color: var(--us-checkbox-control-color);
1958
1957
  display: flex;
1959
1958
  justify-content: center;
1960
1959
  align-items: center;
1961
- transition: transform 0.125s cubic-bezier(0.17, 0.67, 0.55, 1.09);
1960
+ transition: color 0.05s ease-in-out 0.025s, border-color 0.05s ease-in-out 0.025s;
1961
+ overflow: hidden;
1962
1962
  }
1963
- .us-nav-rail-item__icon {
1964
- padding-block: var(--us-nav-rail-item-icon-padding-y);
1965
- padding-inline: var(--us-nav-rail-item-icon-padding-x);
1966
- display: flex;
1967
- justify-content: center;
1968
- align-items: center;
1963
+ .us-checkbox--before .us-checkbox__control {
1964
+ order: 2;
1969
1965
  }
1970
- .us-nav-rail-item__icon .us-icon {
1971
- font-size: var(--us-nav-rail-item-icon-font-size);
1966
+ .us-checkbox--befire .us-checkbox__label {
1967
+ order: 1;
1972
1968
  }
1973
- .us-nav-rail-item__label {
1969
+ .us-checkbox--checked .us-checkbox__control {
1970
+ border-color: var(--us-_checked-checkbox-control-border-color, var(--us-checkbox-control-border-color));
1971
+ color: var(--us-_checked-checkbox-control-color, var(--us-checkbox-control-color));
1972
+ }
1973
+ .us-checkbox--focus .us-checkbox__control {
1974
+ box-shadow: var(--us-_focus-checkbox-control-box-shadow);
1975
+ }
1976
+ .us-checkbox__tap {
1974
1977
  position: absolute;
1975
- bottom: calc((var(--us-nav-rail-item-label-font-size) + var(--us-nav-rail-item-gap, 0)) * -1);
1976
- left: 50%;
1977
- transform: translateX(-50%);
1978
- font-size: var(--us-nav-rail-item-label-font-size);
1979
- font-weight: var(--us-nav-rail-item-label-font-weight);
1980
- line-height: var(--us-nav-rail-item-label-line-height);
1981
- width: 100%;
1982
- text-align: center;
1983
- overflow: hidden;
1984
- display: -webkit-box;
1985
- -webkit-box-orient: vertical;
1986
- -webkit-line-clamp: 1;
1987
- transition: opacity 0.125s cubic-bezier(0.17, 0.67, 0.55, 1.09);
1978
+ inset: 0px;
1979
+ opacity: 0;
1980
+ border-radius: inherit;
1981
+ background-color: var(--us-checkbox-tap-background);
1982
+ transform: scale(0);
1983
+ transition: opacity 0.05s ease-in-out 0.025s, transform 0.05s ease-in-out 0.025s;
1988
1984
  }
1989
- .us-nav-rail-item--selected {
1990
- color: var(--us-_active-nav-rail-item-color);
1985
+ .us-checkbox--checked .us-checkbox__tap {
1986
+ opacity: 1;
1987
+ transform: scale(1.5);
1991
1988
  }
1992
- .us-nav-rail-item--selected .us-nav-rail-item__media {
1993
- outline-color: var(--us-_active-nav-rail-item-media-border-color);
1989
+ .us-checkbox .us-icon {
1990
+ opacity: 1;
1991
+ transform: scale(0);
1992
+ transition: opacity 0.05s ease-in-out 0.025s, transform 0.05s ease-in-out 0.025s;
1994
1993
  }
1995
- .us-nav-rail-item--selected .us-nav-rail-item__icon, .us-nav-rail-item:hover .us-nav-rail-item__icon {
1996
- transform: scale(1.15);
1994
+ .us-checkbox--checked .us-icon {
1995
+ opacity: 1;
1996
+ transform: scale(1);
1997
1997
  }
1998
- .us-nav-rail-item--selected .us-nav-rail-item__indicator, .us-nav-rail-item--selected:hover .us-nav-rail-item__indicator {
1999
- color: var(--us-_active-nav-rail-item-indicator-color);
1998
+ .us-checkbox-group {
1999
+ display: flex;
2000
+ flex-wrap: wrap;
2001
+ gap: var(--us-checkbox-group-gap);
2000
2002
  }
2001
- .us-nav-rail-item--selected .us-nav-rail-item__indicator, .us-nav-rail-item:hover .us-nav-rail-item__indicator {
2002
- transform: translateX(0px);
2003
+ .us-checkbox-group--row {
2004
+ flex-direction: row;
2005
+ align-items: center;
2003
2006
  }
2004
- .us-nav-rail--left .us-nav-rail-item__indicator {
2005
- left: -25%;
2006
- border-radius: 0px var(--us-nav-rail-item-indicator-border-radius) var(--us-nav-rail-item-indicator-border-radius) 0px;
2007
+ .us-checkbox-group--col {
2008
+ flex-direction: column;
2007
2009
  }
2008
- .us-nav-rail--right .us-nav-rail-item__indicator {
2009
- right: -25%;
2010
- border-radius: var(--us-nav-rail-item-indicator-border-radius) 0px 0px var(--us-nav-rail-item-indicator-border-radius);
2010
+ .us-checkbox-group--start {
2011
+ justify-content: flex-start;
2011
2012
  }
2012
- .us-nav-rail--left .us-nav-rail-item--selected .us-nav-rail-item__indicator, .us-nav-rail--left .us-nav-rail-item--selected:hover .us-nav-rail-item__indicator {
2013
- left: 0px;
2013
+ .us-checkbox-group--center {
2014
+ justify-content: center;
2014
2015
  }
2015
- .us-nav-rail--right .us-nav-rail-item--selected .us-nav-rail-item__indicator, .us-nav-rail--right .us-nav-rail-item--selected:hover .us-nav-rail-item__indicator {
2016
- right: 0px;
2016
+ .us-checkbox-group--end {
2017
+ justify-content: flex-end;
2018
+ }
2019
+ .us-checkbox-group--stretch .us-checkbox {
2020
+ flex-grow: 1;
2021
+ }
2022
+ .us-checkbox__label {
2023
+ font-size: var(--us-checkbox-label-font-size);
2024
+ color: var(--us-checkbox-label-color);
2017
2025
  }
2018
2026
 
2019
- .us-steps {
2020
- flex-shrink: 0;
2021
- display: grid;
2027
+ .us-radio {
2028
+ cursor: pointer;
2029
+ display: inline-flex;
2030
+ align-items: center;
2031
+ gap: var(--us-radio-gap);
2032
+ -webkit-tap-highlight-color: transparent;
2033
+ }
2034
+ .us-radio--disabled {
2035
+ opacity: 0.6;
2036
+ pointer-events: none;
2037
+ }
2038
+ .us-radio--read-only {
2039
+ pointer-events: none;
2040
+ }
2041
+ .us-radio__control {
2042
+ position: relative;
2043
+ width: var(--us-radio-control-width);
2044
+ height: var(--us-radio-control-height);
2045
+ border-width: var(--us-radio-control-border-width);
2046
+ border-style: var(--us-radio-control-border-style);
2047
+ border-color: var(--us-radio-control-border-color);
2048
+ border-radius: var(--us-radio-control-border-radius);
2049
+ color: var(--us-radio-control-color);
2050
+ display: flex;
2051
+ justify-content: center;
2052
+ align-items: center;
2053
+ transition: color 0.05s ease-in-out 0.025s, border-color 0.05s ease-in-out 0.025s;
2022
2054
  overflow: hidden;
2023
2055
  }
2024
- .us-steps--horizontal {
2025
- grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
2056
+ .us-radio--before .us-radio__control {
2057
+ order: 2;
2026
2058
  }
2027
- .us-steps--vertical {
2028
- grid-template-columns: 1;
2029
- gap: 2rem;
2059
+ .us-radio--befire .us-radio__label {
2060
+ order: 1;
2030
2061
  }
2031
- .us-steps--vertical .us-step {
2032
- flex-direction: row;
2033
- gap: 1.5rem;
2062
+ .us-radio--checked .us-radio__control {
2063
+ border-color: var(--us-_checked-radio-control-border-color, var(--us-radio-control-border-color));
2064
+ color: var(--us-_checked-radio-control-color, var(--us-radio-control-color));
2034
2065
  }
2035
- .us-steps--vertical .us-step__content {
2036
- padding: 4px 0px;
2066
+ .us-radio--focus .us-radio__control {
2067
+ box-shadow: var(--us-_focus-radio-control-box-shadow);
2037
2068
  }
2038
- .us-steps--vertical .us-step__title, .us-steps--vertical .us-step__subtitle {
2039
- margin: 0;
2040
- text-align: start;
2069
+ .us-radio__tap {
2070
+ position: absolute;
2071
+ inset: 0px;
2072
+ opacity: 0;
2073
+ border-radius: inherit;
2074
+ background-color: var(--us-radio-tap-background);
2075
+ transform: scale(0);
2076
+ transition: opacity 0.05s ease-in-out 0.025s, transform 0.05s ease-in-out 0.025s;
2041
2077
  }
2042
- .us-steps--vertical .us-steps__indicator {
2043
- width: 1px;
2044
- height: 100%;
2045
- top: -50%;
2046
- bottom: 50%;
2047
- left: auto;
2048
- right: auto;
2078
+ .us-radio--checked .us-radio__tap {
2079
+ opacity: 1;
2080
+ transform: scale(1.5);
2049
2081
  }
2050
-
2051
- .us-step {
2052
- position: relative;
2082
+ .us-radio .us-icon {
2083
+ opacity: 1;
2084
+ transform: scale(0);
2085
+ transition: opacity 0.05s ease-in-out 0.025s, transform 0.05s ease-in-out 0.025s;
2086
+ }
2087
+ .us-radio--checked .us-icon {
2088
+ opacity: 1;
2089
+ transform: scale(1);
2090
+ }
2091
+ .us-radio-group {
2053
2092
  display: flex;
2093
+ flex-wrap: wrap;
2094
+ gap: var(--us-radio-group-gap);
2095
+ }
2096
+ .us-radio-group--row {
2097
+ flex-direction: row;
2098
+ align-items: center;
2099
+ }
2100
+ .us-radio-group--col {
2054
2101
  flex-direction: column;
2055
- gap: 0.5rem;
2056
2102
  }
2057
- .us-step--completed {
2058
- --us-step-divider-color: var(--us-_completed-step-divider-color);
2103
+ .us-radio-group--start {
2104
+ justify-content: flex-start;
2059
2105
  }
2060
- .us-step--current {
2061
- --us-step-divider-color: var(--us-_current-step-divider-color);
2106
+ .us-radio-group--center {
2107
+ justify-content: center;
2062
2108
  }
2063
- .us-step--disabled {
2064
- opacity: 0.65;
2065
- pointer-events: none;
2109
+ .us-radio-group--end {
2110
+ justify-content: flex-end;
2066
2111
  }
2067
- .us-step__header {
2068
- position: relative;
2069
- display: flex;
2070
- flex-direction: column;
2112
+ .us-radio-group--stretch .us-radio {
2113
+ flex-grow: 1;
2114
+ }
2115
+ .us-radio input {
2116
+ position: absolute;
2117
+ width: 0;
2118
+ height: 0;
2119
+ opacity: 0;
2120
+ }
2121
+ .us-radio__label {
2122
+ font-size: var(--us-radio-label-font-size);
2123
+ color: var(--us-radio-label-color);
2124
+ }
2125
+
2126
+ .us-switch {
2127
+ --us-switch-control-padding: calc(var(--us-switch-thumb-width) * 0.25);
2128
+ cursor: pointer;
2129
+ display: inline-flex;
2071
2130
  align-items: center;
2072
- gap: 1rem;
2131
+ gap: var(--us-switch-gap);
2132
+ -webkit-tap-highlight-color: transparent;
2133
+ }
2134
+ .us-switch input {
2135
+ position: absolute;
2136
+ opacity: 0;
2137
+ width: 0;
2138
+ height: 0;
2139
+ }
2140
+ .us-switch--disabled {
2141
+ opacity: 0.6;
2142
+ pointer-events: none;
2073
2143
  }
2074
- .us-step__avatar-wrapper {
2075
- border: 2px solid transparent;
2076
- padding: 2px;
2077
- border-radius: 50%;
2144
+ .us-switch--read-only {
2145
+ pointer-events: none;
2078
2146
  }
2079
- .us-step__avatar {
2147
+ .us-switch__control {
2080
2148
  position: relative;
2081
- flex-shrink: 0;
2082
- width: 44px;
2083
- height: 44px;
2084
- border-radius: 50%;
2085
- font-size: var(--us-step-indicator-font-size);
2086
- font-weight: var(--us-step-indicator-font-weight);
2087
- color: var(--us-step-indicator-color);
2088
- background-color: var(--us-step-background-color);
2089
- display: flex;
2090
- justify-content: center;
2149
+ display: inline-block;
2150
+ width: var(--us-switch-control-width);
2151
+ height: var(--us-switch-control-height);
2152
+ border-radius: var(--us-switch-control-border-radius);
2153
+ cursor: pointer;
2154
+ background-color: var(--us-switch-control-color);
2155
+ display: inline-flex;
2091
2156
  align-items: center;
2092
- z-index: 1;
2093
- }
2094
- .us-step--current .us-step__avatar-wrapper {
2095
- border-color: var(--us-_current-step-border-color);
2157
+ transition: all 0.05s ease-in-out;
2158
+ user-select: none;
2159
+ -webkit-tap-highlight-color: transparent;
2096
2160
  }
2097
- .us-step__content {
2098
- display: flex;
2099
- flex-direction: column;
2100
- gap: 0.5rem;
2161
+ .us-switch--before .us-switch__control {
2162
+ order: 2;
2101
2163
  }
2102
- .us-step__title {
2103
- flex-shrink: 0;
2104
- max-width: 150px;
2105
- margin: 0 auto;
2106
- font-size: 0.875rem;
2107
- font-weight: 500;
2108
- text-align: center;
2109
- overflow: hidden;
2110
- display: -webkit-box;
2111
- -webkit-box-orient: vertical;
2112
- -webkit-line-clamp: 2;
2164
+ .us-switch--befire .us-switch__label {
2165
+ order: 1;
2113
2166
  }
2114
- .us-step__subtitle {
2115
- flex-shrink: 0;
2116
- max-width: 150px;
2117
- margin: 0 auto;
2118
- font-size: 0.75rem;
2119
- text-align: center;
2120
- overflow: hidden;
2121
- display: -webkit-box;
2122
- -webkit-box-orient: vertical;
2123
- -webkit-line-clamp: 2;
2124
- opacity: 0.75;
2167
+ .us-switch--checked .us-switch__control {
2168
+ background-color: var(--us-_checked-switch-control-color, var(--us-switch-control-color));
2125
2169
  }
2126
-
2127
- .us-steps {
2128
- position: relative;
2170
+ .us-switch--focus .us-switch__control {
2171
+ box-shadow: var(--us-_focus-switch-control-box-shadow);
2129
2172
  }
2130
- .us-steps__indicator {
2131
- position: absolute;
2132
- flex-grow: 1;
2133
- position: absolute;
2134
- right: 50%;
2135
- top: 50%;
2136
- left: -50%;
2137
- width: 100%;
2138
- height: 1px;
2139
- background-color: var(--us-step-divider-color);
2140
- z-index: -1;
2173
+ .us-switch__thumb {
2174
+ width: var(--us-switch-thumb-width);
2175
+ height: var(--us-switch-thumb-height);
2176
+ transform: translateX(var(--us-switch-control-padding));
2177
+ border-radius: var(--us-switch-thumb-border-radius);
2178
+ background-color: var(--us-switch-thumb-color);
2179
+ transition: all 0.05s ease-in-out;
2141
2180
  }
2142
- .us-steps__indicator--completed {
2143
- border-bottom-color: var(--us-_completed-step-divider-color);
2181
+ .us-switch--checked .us-switch__thumb {
2182
+ transform: translateX(calc(var(--us-switch-control-width) - var(--us-switch-thumb-width) - (var(--us-switch-control-padding))));
2144
2183
  }
2145
- .us-steps__indicator--current {
2146
- border-bottom-color: var(--us-_current-step-divider-color);
2184
+ .us-switch__label {
2185
+ font-size: var(--us-switch-label-font-size);
2186
+ color: var(--us-switch-label-color);
2147
2187
  }
2148
2188
 
2149
2189
  .us-animation-spin {
@@ -3679,7 +3719,6 @@
3679
3719
  overflow: hidden;
3680
3720
  color: var(--us-overlay-color);
3681
3721
  opacity: var(--us-overlay-opacity);
3682
- z-index: -1;
3683
3722
  pointer-events: none;
3684
3723
  background-color: currentColor;
3685
3724
  transition: var(--us-overlay-transition, background-color, opacity, 0.1s cubic-bezier(0.215, 0.61, 0.355, 1));
@@ -3746,6 +3785,126 @@
3746
3785
  opacity: var(--us-outline-focus-opacity, var(--us-outline-hover-opacity, var(--us-outline-opacity)));
3747
3786
  }
3748
3787
 
3788
+ .us-glow {
3789
+ --shadow-color: rgb(var(--us-glow-color) / var(--us-glow-alpha));
3790
+ position: absolute;
3791
+ inset: 0;
3792
+ border-radius: inherit;
3793
+ overflow: hidden;
3794
+ pointer-events: none;
3795
+ z-index: var(--us-glow-z-index);
3796
+ opacity: var(--us-glow-opacity);
3797
+ transition: var(--us-glow-transition, box-shadow, opacity, 0.1s cubic-bezier(0.215, 0.61, 0.355, 1));
3798
+ /* base color compuesto con alpha */
3799
+ color: var(--us-glow-color);
3800
+ color: rgb(var(--us-glow-color)/var(--us-glow-alpha));
3801
+ box-shadow: 0 0 var(--us-glow-blur) var(--us-glow-spread) var(--shadow-color);
3802
+ }
3803
+
3804
+ /* Hover */
3805
+ :not([hidden]):hover > .us-glow {
3806
+ --border-color: rgb(
3807
+ var(--us-_hover-glow-color, var(--us-glow-color)) /
3808
+ var(--us-_hover-glow-alpha, var(--us-glow-alpha))
3809
+ );
3810
+ --shadow-color: rgb(
3811
+ var(--us-_hover-glow-color, var(--us-glow-color)) /
3812
+ var(--us-_hover-glow-shadow-alpha, var(--us-glow-shadow-alpha))
3813
+ );
3814
+ opacity: var(--us-_hover-glow-opacity, var(--us-glow-opacity));
3815
+ box-shadow: 0 0 0 1px var(--border-color), 0 0 var(--us-_hover-glow-blur, var(--us-glow-blur)) var(--us-_hover-glow-spread, var(--us-glow-spread)) var(--shadow-color);
3816
+ }
3817
+
3818
+ /* Active */
3819
+ :not([hidden]):active > .us-glow {
3820
+ --border-color: rgb(
3821
+ var(--us-_active-glow-color, var(--us-_hover-glow-color, var(--us-glow-color))) /
3822
+ var(--us-_active-glow-alpha, var(--us-_hover-glow-alpha, var(--us-glow-alpha)))
3823
+ );
3824
+ --shadow-color: rgb(
3825
+ var(--us-_active-glow-color, var(--us-_hover-glow-color, var(--us-glow-color))) /
3826
+ var(
3827
+ --us-_active-glow-shadow-alpha,
3828
+ var(--us-_hover-glow-shadow-alpha, var(--us-glow-shadow-alpha))
3829
+ )
3830
+ );
3831
+ opacity: var(--us-_active-glow-opacity, var(--us-_hover-glow-opacity, var(--us-glow-opacity)));
3832
+ box-shadow: 0 0 0 1px var(--border-color), 0 0 var(--us-_active-glow-blur, var(--us-_hover-glow-blur, var(--us-glow-blur))) var(--us-_active-glow-spread, var(--us-_hover-glow-spread, var(--us-glow-spread))) var(--shadow-color);
3833
+ }
3834
+
3835
+ /* Focus */
3836
+ [class*="--focus"] > .us-glow,
3837
+ :not([hidden]):focus > .us-glow {
3838
+ --border-color: rgb(
3839
+ var(--us-_focus-glow-color, var(--us-glow-color)) /
3840
+ var(--us-_focus-glow-alpha, var(--us-glow-alpha))
3841
+ );
3842
+ --shadow-color: rgb(
3843
+ var(--us-_focus-glow-color, var(--us-glow-color)) /
3844
+ var(--us-_focus-glow-shadow-alpha, var(--us-glow-shadow-alpha))
3845
+ );
3846
+ opacity: var(--us-_focus-glow-opacity, var(--us-glow-opacity));
3847
+ box-shadow: 0 0 0 1px var(--border-color), 0 0 var(--us-_focus-glow-blur, var(--us-glow-blur)) var(--us-_focus-glow-spread, var(--us-glow-spread)) var(--shadow-color);
3848
+ }
3849
+
3850
+ .us-ring {
3851
+ position: absolute;
3852
+ inset: 0;
3853
+ border-radius: inherit;
3854
+ overflow: hidden;
3855
+ color: var(--us-ring-color);
3856
+ opacity: var(--us-ring-opacity, 0);
3857
+ pointer-events: none;
3858
+ transition: var(--us-ring-transition, outline-color, opacity, 0.1s cubic-bezier(0.215, 0.61, 0.355, 1));
3859
+ outline-width: var(--us-ring-width, 2px);
3860
+ outline-style: solid;
3861
+ outline-color: currentColor;
3862
+ outline-offset: var(--us-ring-offset, 4px);
3863
+ }
3864
+
3865
+ /* Hover */
3866
+ :not([hidden]):hover > .us-ring {
3867
+ color: var(--us-_hover-ring-color, var(--us-ring-color));
3868
+ opacity: var(--us-_hover-ring-opacity, var(--us-ring-opacity));
3869
+ outline-width: var(--us-_hover-ring-width, var(--us-ring-width, 2px));
3870
+ outline-offset: var(--us-_hover-ring-offset, var(--us-ring-offset, 4px));
3871
+ }
3872
+
3873
+ /* Active */
3874
+ :not([hidden]):active > .us-ring {
3875
+ color: var(--us-_active-ring-color, var(--us-_hover-ring-color, var(--us-ring-color)));
3876
+ opacity: var(--us-_active-ring-opacity, var(--us-_hover-ring-opacity, var(--us-ring-opacity)));
3877
+ outline-width: var(--us-_active-ring-width, var(--us-_hover-ring-width, var(--us-ring-width, 2px)));
3878
+ outline-offset: var(--us-_active-ring-offset, var(--us-_hover-ring-offset, var(--us-ring-offset, 4px)));
3879
+ }
3880
+
3881
+ /* Focus */
3882
+ [class*="--focus"] > .us-ring,
3883
+ :not([hidden]):focus > .us-ring {
3884
+ color: var(--us-_focus-ring-color, var(--us-ring-color));
3885
+ opacity: var(--us-_focus-ring-opacity, var(--us-ring-opacity));
3886
+ outline-width: var(--us-_focus-ring-width, var(--us-ring-width, 2px));
3887
+ outline-offset: var(--us-_focus-ring-offset, var(--us-ring-offset, 4px));
3888
+ }
3889
+
3890
+ /* Focus + Hover */
3891
+ [class*="--focus"]:hover > .us-ring,
3892
+ :not([hidden]):focus:hover > .us-ring {
3893
+ color: var(--us-_focus-hover-ring-color, var(--us-_focus-ring-color, var(--us-ring-color)));
3894
+ opacity: var(--us-_focus-hover-ring-opacity, var(--us-_focus-ring-opacity, var(--us-ring-opacity)));
3895
+ outline-width: var(--us-_focus-hover-ring-width, var(--us-_focus-ring-width, var(--us-ring-width, 2px)));
3896
+ outline-offset: var(--us-_focus-hover-ring-offset, var(--us-_focus-ring-offset, var(--us-ring-offset, 4px)));
3897
+ }
3898
+
3899
+ /* Focus + Active */
3900
+ [class*="--focus"]:active > .us-ring,
3901
+ :not([hidden]):focus:active > .us-ring {
3902
+ color: var(--us-_focus-active-ring-color, var(--us-_focus-ring-color, var(--us-ring-color)));
3903
+ opacity: var(--us-_focus-active-ring-opacity, var(--us-_focus-ring-opacity, var(--us-ring-opacity)));
3904
+ outline-width: var(--us-_focus-active-ring-width, var(--us-_focus-ring-width, var(--us-ring-width, 2px)));
3905
+ outline-offset: var(--us-_focus-active-ring-offset, var(--us-_focus-ring-offset, var(--us-ring-offset, 4px)));
3906
+ }
3907
+
3749
3908
  .us-surface {
3750
3909
  position: absolute;
3751
3910
  inset: 0px;
@@ -3753,7 +3912,6 @@
3753
3912
  overflow: hidden;
3754
3913
  color: var(--us-surface-color);
3755
3914
  opacity: var(--us-surface-opacity);
3756
- z-index: -1;
3757
3915
  pointer-events: none;
3758
3916
  background-color: currentColor;
3759
3917
  transition: var(--us-surface-transition, background-color, opacity, 0.1s cubic-bezier(0.215, 0.61, 0.355, 1));
@@ -3778,6 +3936,250 @@
3778
3936
  stroke: currentColor !important;
3779
3937
  }
3780
3938
 
3939
+ /* Contenedor principal */
3940
+ /* ----------------- Contenedor principal ----------------- */
3941
+ .win-container {
3942
+ width: 100vw;
3943
+ height: 100vh;
3944
+ background-color: #f1f5f9; /* bg-slate-50 */
3945
+ position: relative;
3946
+ overflow: hidden;
3947
+ }
3948
+
3949
+ /* ----------------- DraggableResizable ----------------- */
3950
+ .win-draggable {
3951
+ background-color: white;
3952
+ user-select: none;
3953
+ }
3954
+
3955
+ .win-header {
3956
+ width: 100%;
3957
+ height: 2rem; /* h-8 */
3958
+ background-color: #fff; /* bg-gray-100 */
3959
+ border-bottom: 1px solid #cbd5e1;
3960
+ display: flex;
3961
+ align-items: center;
3962
+ padding: 0 0.5rem; /* px-2 */
3963
+ user-select: none;
3964
+ }
3965
+
3966
+ .win-header.win-draggable {
3967
+ cursor: move; /* solo si draggable */
3968
+ }
3969
+
3970
+ .win-header-icon {
3971
+ margin-right: 4px;
3972
+ }
3973
+
3974
+ .win-header-title {
3975
+ font-size: 12px; /* text-sm */
3976
+ font-weight: 400; /* font-medium */
3977
+ }
3978
+
3979
+ .win-header-buttons {
3980
+ margin-left: auto;
3981
+ display: flex;
3982
+ align-items: center;
3983
+ gap: 0.25rem; /* gap-1 */
3984
+ }
3985
+
3986
+ /* Botones del header */
3987
+ .win-btn {
3988
+ width: 1.75rem; /* w-7 */
3989
+ height: 1.5rem; /* h-6 */
3990
+ display: flex;
3991
+ justify-content: center;
3992
+ align-items: center;
3993
+ border-radius: 0.25rem; /* rounded */
3994
+ background-color: transparent;
3995
+ outline: none;
3996
+ border: none;
3997
+ }
3998
+
3999
+ .win-btn:hover {
4000
+ background-color: #e5e7eb; /* hover:bg-gray-200 */
4001
+ }
4002
+
4003
+ .win-btn--danger:hover {
4004
+ background-color: #ef4444; /* hover:bg-red-500 */
4005
+ color: white;
4006
+ }
4007
+
4008
+ /* ----------------- Taskbar ----------------- */
4009
+ .win-taskbar {
4010
+ height: 36px;
4011
+ background-color: #fff;
4012
+ display: flex;
4013
+ align-items: center;
4014
+ padding: 0 0.25rem;
4015
+ gap: 0.25rem;
4016
+ }
4017
+
4018
+ .win-taskbar--top {
4019
+ border-top: 1px solid #cbd5e1;
4020
+ }
4021
+
4022
+ .win-taskbar--bottom {
4023
+ border-bottom: 1px solid #cbd5e1;
4024
+ }
4025
+
4026
+ .win-taskbar--highlighted {
4027
+ background-color: #86efac;
4028
+ }
4029
+
4030
+ .win-taskbar-button {
4031
+ position: relative;
4032
+ height: 28px;
4033
+ display: flex;
4034
+ align-items: center;
4035
+ gap: 0.25rem;
4036
+ font-size: 0.75rem;
4037
+ padding: 0 0.5rem;
4038
+ border-radius: 0.25rem;
4039
+ cursor: pointer;
4040
+ }
4041
+
4042
+ .win-taskbar-button > .us-outline {
4043
+ --us-outline-border-width: 1px;
4044
+ --us-outline-opacity: 0;
4045
+ }
4046
+
4047
+ .win-taskbar-button > .us-overlay {
4048
+ --us-overlay-opacity: 0.075;
4049
+ --us-_hover-overlay-opacity: 0.125;
4050
+ }
4051
+
4052
+ .win-taskbar-button--active {
4053
+ color: var(--us-black-color);
4054
+ }
4055
+
4056
+ .win-taskbar-button--active > .us-overlay {
4057
+ --us-overlay-color: var(--us-primary-color);
4058
+ --us-overlay-opacity: 0.125;
4059
+ --us-_hover-overlay-opacity: 0.25;
4060
+ }
4061
+
4062
+ .win-taskbar-button__content {
4063
+ position: relative;
4064
+ display: flex;
4065
+ align-items: center;
4066
+ gap: 0.25rem;
4067
+ }
4068
+
4069
+ .win-taskbar-button .win-btn {
4070
+ width: 1.25rem;
4071
+ height: 1.25rem;
4072
+ border-radius: 9999px;
4073
+ }
4074
+
4075
+ /* ----------------- Resize handles ----------------- */
4076
+ /* Base handle */
4077
+ .win-handle {
4078
+ position: absolute;
4079
+ width: 0.75rem; /* w-3 */
4080
+ height: 0.75rem; /* h-3 */
4081
+ background-color: white;
4082
+ border: 1px solid #d1d5db; /* border-gray-300 */
4083
+ border-radius: 9999px; /* rounded-full */
4084
+ z-index: 20;
4085
+ transform-origin: center;
4086
+ transition: background-color 0.15s ease;
4087
+ }
4088
+
4089
+ /* Hover */
4090
+ .win-handle:hover {
4091
+ background-color: #3b82f6; /* blue-500 */
4092
+ }
4093
+
4094
+ /* Dirección y cursor */
4095
+ .win-handle-n {
4096
+ top: 0;
4097
+ left: 50%;
4098
+ transform: translate(-50%, -50%);
4099
+ cursor: n-resize;
4100
+ }
4101
+
4102
+ .win-handle-s {
4103
+ bottom: 0;
4104
+ left: 50%;
4105
+ transform: translate(-50%, 50%);
4106
+ cursor: s-resize;
4107
+ }
4108
+
4109
+ .win-handle-e {
4110
+ top: 50%;
4111
+ right: 0;
4112
+ transform: translate(50%, -50%);
4113
+ cursor: e-resize;
4114
+ }
4115
+
4116
+ .win-handle-w {
4117
+ top: 50%;
4118
+ left: 0;
4119
+ transform: translate(-50%, -50%);
4120
+ cursor: w-resize;
4121
+ }
4122
+
4123
+ .win-handle-ne {
4124
+ top: 0;
4125
+ right: 0;
4126
+ transform: translate(50%, -50%);
4127
+ cursor: ne-resize;
4128
+ }
4129
+
4130
+ .win-handle-nw {
4131
+ top: 0;
4132
+ left: 0;
4133
+ transform: translate(-50%, -50%);
4134
+ cursor: nw-resize;
4135
+ }
4136
+
4137
+ .win-handle-se {
4138
+ bottom: 0;
4139
+ right: 0;
4140
+ transform: translate(50%, 50%);
4141
+ cursor: se-resize;
4142
+ }
4143
+
4144
+ .win-handle-sw {
4145
+ bottom: 0;
4146
+ left: 0;
4147
+ transform: translate(-50%, 50%);
4148
+ cursor: sw-resize;
4149
+ }
4150
+
4151
+ .win-snap-preview {
4152
+ position: absolute;
4153
+ background-color: rgba(96, 165, 250, 0.3); /* bg-blue-400 + bg-opacity-30 */
4154
+ border: 2px solid #2563eb; /* border-blue-600 */
4155
+ pointer-events: none;
4156
+ z-index: 999998; /* debajo de la ventana */
4157
+ }
4158
+
4159
+ .win-panel {
4160
+ background-color: #fff;
4161
+ display: flex;
4162
+ flex-direction: column;
4163
+ }
4164
+
4165
+ .us-lm-panel--floating {
4166
+ border: 1px solid #e0e0e0;
4167
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
4168
+ border-radius: 8px;
4169
+ }
4170
+
4171
+ .us-lm-panel--floating .win-header {
4172
+ border-radius: 8px 8px 0 0;
4173
+ }
4174
+
4175
+ .us-lm-panel .us-lm-handle {
4176
+ display: none;
4177
+ }
4178
+
4179
+ .us-lm-panel:hover .us-lm-handle {
4180
+ display: block;
4181
+ }
4182
+
3781
4183
  /* Estilos CSS aquí */
3782
4184
  .slider-container {
3783
4185
  width: 300px;