@kushagradhawan/kookie-ui 0.1.109 → 0.1.111
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/components.css +115 -82
- package/dist/cjs/components/sidebar.d.ts.map +1 -1
- package/dist/cjs/components/sidebar.js +1 -1
- package/dist/cjs/components/sidebar.js.map +3 -3
- package/dist/cjs/components/sidebar.props.d.ts +1 -1
- package/dist/cjs/components/sidebar.props.js +1 -1
- package/dist/cjs/components/sidebar.props.js.map +2 -2
- package/dist/esm/components/sidebar.d.ts.map +1 -1
- package/dist/esm/components/sidebar.js +1 -1
- package/dist/esm/components/sidebar.js.map +3 -3
- package/dist/esm/components/sidebar.props.d.ts +1 -1
- package/dist/esm/components/sidebar.props.js +1 -1
- package/dist/esm/components/sidebar.props.js.map +2 -2
- package/package.json +1 -1
- package/schemas/base-button.json +1 -1
- package/schemas/button.json +1 -1
- package/schemas/icon-button.json +1 -1
- package/schemas/index.json +6 -6
- package/schemas/toggle-button.json +1 -1
- package/schemas/toggle-icon-button.json +1 -1
- package/src/components/_internal/base-button.css +6 -32
- package/src/components/_internal/base-card.css +0 -3
- package/src/components/_internal/base-checkbox.css +0 -2
- package/src/components/_internal/base-radio.css +0 -2
- package/src/components/avatar.css +0 -1
- package/src/components/select.css +0 -2
- package/src/components/sidebar.css +113 -6
- package/src/components/sidebar.props.tsx +1 -1
- package/src/components/sidebar.tsx +45 -2
- package/src/components/text-area.css +0 -1
- package/src/components/text-field.css +0 -1
- package/styles.css +115 -82
package/styles.css
CHANGED
|
@@ -7003,7 +7003,6 @@
|
|
|
7003
7003
|
padding-top: var(--classic-active-padding-offset-2);
|
|
7004
7004
|
padding-bottom: 0;
|
|
7005
7005
|
background-color: var(--gray-3);
|
|
7006
|
-
box-shadow: var(--shadow-1);
|
|
7007
7006
|
}
|
|
7008
7007
|
:where([data-panel-background='translucent'], [data-material='translucent']) .rt-AvatarRoot:where(button):where(.rt-variant-classic):where(:active:not(:disabled, [data-disabled])), :where([data-panel-background='translucent'], [data-material='translucent']) .rt-AvatarRoot:where(a):where(.rt-variant-classic):where(:active:not(:disabled, [data-disabled])), :where([data-panel-background='translucent'], [data-material='translucent']) .rt-AvatarRoot:where([role="button"]):where(.rt-variant-classic):where(:active:not(:disabled, [data-disabled])){
|
|
7009
7008
|
background-color: color-mix(in srgb, var(--gray-a3), var(--gray-3) 60%);
|
|
@@ -8645,11 +8644,9 @@
|
|
|
8645
8644
|
}
|
|
8646
8645
|
.rt-BaseButton:where(.rt-variant-classic):where([data-state='open']){
|
|
8647
8646
|
background-color: color-mix(in srgb, var(--gray-a3) calc(var(--material-alpha) * 100%), var(--gray-3) var(--material-blend));
|
|
8648
|
-
box-shadow: var(--shadow-1);
|
|
8649
8647
|
}
|
|
8650
8648
|
.rt-BaseButton:where(.rt-variant-classic):where(:active:not([data-state='open'], [data-disabled]), [data-state='on']:not([data-disabled])){
|
|
8651
8649
|
background-color: color-mix(in srgb, var(--gray-a3) calc(var(--material-alpha) * 100%), var(--gray-3) var(--material-blend));
|
|
8652
|
-
box-shadow: var(--shadow-1);
|
|
8653
8650
|
}
|
|
8654
8651
|
@media (pointer: coarse) {
|
|
8655
8652
|
.rt-BaseButton:where(.rt-variant-classic):where(:active:not([data-state='open'])){
|
|
@@ -8736,11 +8733,9 @@
|
|
|
8736
8733
|
.rt-BaseButton:where(.rt-variant-solid):where([data-state='open']){
|
|
8737
8734
|
background-color: color-mix(in srgb, var(--accent-a10) calc(var(--material-alpha) * 100%), var(--accent-10) var(--solid-blend));
|
|
8738
8735
|
filter: var(--base-button-solid-open-filter);
|
|
8739
|
-
box-shadow: var(--shadow-1);
|
|
8740
8736
|
}
|
|
8741
8737
|
.rt-BaseButton:where(.rt-variant-solid):where(:active:not([data-state='open'])){
|
|
8742
8738
|
filter: var(--base-button-solid-active-filter);
|
|
8743
|
-
box-shadow: var(--shadow-1);
|
|
8744
8739
|
}
|
|
8745
8740
|
@media (pointer: coarse) {
|
|
8746
8741
|
.rt-BaseButton:where(.rt-variant-solid):where(:active:not([data-state='open'])){
|
|
@@ -8766,11 +8761,9 @@
|
|
|
8766
8761
|
.rt-BaseButton:where(.rt-variant-solid):where(.rt-high-contrast):where([data-state='open']){
|
|
8767
8762
|
background-color: color-mix(in srgb, var(--accent-a12) calc(var(--material-alpha) * 100%), var(--accent-12) var(--solid-blend));
|
|
8768
8763
|
filter: var(--base-button-solid-high-contrast-open-filter);
|
|
8769
|
-
box-shadow: var(--shadow-1);
|
|
8770
8764
|
}
|
|
8771
8765
|
.rt-BaseButton:where(.rt-variant-solid):where(.rt-high-contrast):where(:active:not([data-state='open'])){
|
|
8772
8766
|
filter: var(--base-button-solid-high-contrast-active-filter);
|
|
8773
|
-
box-shadow: var(--shadow-1);
|
|
8774
8767
|
}
|
|
8775
8768
|
.rt-BaseButton:where(.rt-variant-solid):where([data-disabled]){
|
|
8776
8769
|
color: var(--gray-a8);
|
|
@@ -8807,11 +8800,9 @@
|
|
|
8807
8800
|
}
|
|
8808
8801
|
.rt-BaseButton:where(.rt-variant-soft):where([data-state='open']){
|
|
8809
8802
|
background-color: color-mix(in srgb, var(--accent-a4) calc(var(--material-alpha) * 100%), var(--accent-4) var(--material-blend));
|
|
8810
|
-
box-shadow: var(--shadow-1);
|
|
8811
8803
|
}
|
|
8812
8804
|
.rt-BaseButton:where(.rt-variant-soft):where(:active:not([data-state='open'])){
|
|
8813
8805
|
background-color: color-mix(in srgb, var(--accent-a5) calc(var(--material-alpha) * 100%), var(--accent-5) var(--material-blend));
|
|
8814
|
-
box-shadow: var(--shadow-1);
|
|
8815
8806
|
}
|
|
8816
8807
|
.rt-BaseButton:where(.rt-variant-soft):where([data-disabled]){
|
|
8817
8808
|
color: var(--gray-a8);
|
|
@@ -8852,11 +8843,9 @@
|
|
|
8852
8843
|
}
|
|
8853
8844
|
.rt-BaseButton:where(.rt-variant-ghost):where([data-state='open']){
|
|
8854
8845
|
background-color: color-mix(in srgb, var(--accent-a3) calc(var(--material-alpha) * 100%), var(--accent-3) var(--material-blend));
|
|
8855
|
-
box-shadow: var(--shadow-1);
|
|
8856
8846
|
}
|
|
8857
8847
|
.rt-BaseButton:where(.rt-variant-ghost):where(:active:not([data-state='open'])){
|
|
8858
8848
|
background-color: color-mix(in srgb, var(--accent-a4) calc(var(--material-alpha) * 100%), var(--accent-4) var(--material-blend));
|
|
8859
|
-
box-shadow: var(--shadow-1);
|
|
8860
8849
|
}
|
|
8861
8850
|
.rt-BaseButton:where(.rt-variant-ghost):where([data-disabled]){
|
|
8862
8851
|
color: var(--gray-a8);
|
|
@@ -8880,11 +8869,11 @@
|
|
|
8880
8869
|
}
|
|
8881
8870
|
.rt-BaseButton:where(.rt-variant-outline):where([data-state='open']){
|
|
8882
8871
|
background-color: color-mix(in srgb, var(--accent-a2) calc(var(--material-alpha) * 100%), var(--accent-2) var(--material-blend));
|
|
8883
|
-
box-shadow: inset 0 0 0 1px var(--outline-border-7)
|
|
8872
|
+
box-shadow: inset 0 0 0 1px var(--outline-border-7);
|
|
8884
8873
|
}
|
|
8885
8874
|
.rt-BaseButton:where(.rt-variant-outline):where(:active:not([data-state='open'])){
|
|
8886
8875
|
background-color: color-mix(in srgb, var(--accent-a3) calc(var(--material-alpha) * 100%), var(--accent-3) var(--material-blend));
|
|
8887
|
-
box-shadow: inset 0 0 0 1px var(--outline-border-8)
|
|
8876
|
+
box-shadow: inset 0 0 0 1px var(--outline-border-8);
|
|
8888
8877
|
}
|
|
8889
8878
|
.rt-BaseButton:where(.rt-variant-outline):where(:focus-visible){
|
|
8890
8879
|
outline: 2px solid var(--focus-8);
|
|
@@ -8916,11 +8905,11 @@
|
|
|
8916
8905
|
}
|
|
8917
8906
|
.rt-BaseButton:where(.rt-variant-surface):where([data-state='open']){
|
|
8918
8907
|
background-color: color-mix(in srgb, var(--accent-a3) calc(var(--material-alpha) * 100%), var(--accent-3) var(--material-blend));
|
|
8919
|
-
box-shadow: inset 0 0 0 1px var(--surface-border-8)
|
|
8908
|
+
box-shadow: inset 0 0 0 1px var(--surface-border-8);
|
|
8920
8909
|
}
|
|
8921
8910
|
.rt-BaseButton:where(.rt-variant-surface):where(:active:not([data-state='open'])){
|
|
8922
8911
|
background-color: color-mix(in srgb, var(--accent-a4) calc(var(--material-alpha) * 100%), var(--accent-4) var(--material-blend));
|
|
8923
|
-
box-shadow: inset 0 0 0 1px var(--surface-border-8)
|
|
8912
|
+
box-shadow: inset 0 0 0 1px var(--surface-border-8);
|
|
8924
8913
|
}
|
|
8925
8914
|
.rt-BaseButton:where(.rt-variant-surface):where(:focus-visible){
|
|
8926
8915
|
outline: 2px solid var(--focus-8);
|
|
@@ -8938,13 +8927,11 @@
|
|
|
8938
8927
|
}
|
|
8939
8928
|
.rt-BaseButton:where([data-state='on']):where(.rt-variant-classic){
|
|
8940
8929
|
background-color: color-mix(in srgb, var(--gray-a3) calc(var(--material-alpha) * 100%), var(--gray-3) var(--material-blend));
|
|
8941
|
-
box-shadow: var(--shadow-1);
|
|
8942
8930
|
}
|
|
8943
8931
|
.rt-BaseButton:where([data-state='on']):where(.rt-variant-solid){
|
|
8944
8932
|
--solid-blend: calc(100% - (var(--material-alpha) * 90%));
|
|
8945
8933
|
background-color: color-mix(in srgb, var(--accent-a10) calc(var(--material-alpha) * 100%), var(--accent-10) var(--solid-blend));
|
|
8946
8934
|
opacity: 0.9;
|
|
8947
|
-
box-shadow: var(--shadow-1);
|
|
8948
8935
|
}
|
|
8949
8936
|
.rt-BaseButton:where([data-state='on']):where(.rt-variant-solid):where(.rt-high-contrast){
|
|
8950
8937
|
background-color: var(--accent-12);
|
|
@@ -8952,21 +8939,19 @@
|
|
|
8952
8939
|
}
|
|
8953
8940
|
.rt-BaseButton:where([data-state='on']):where(.rt-variant-soft){
|
|
8954
8941
|
background-color: color-mix(in srgb, var(--accent-a5) calc(var(--material-alpha) * 100%), var(--accent-5) var(--material-blend));
|
|
8955
|
-
box-shadow: var(--shadow-1);
|
|
8956
8942
|
}
|
|
8957
8943
|
.rt-BaseButton:where([data-state='on']):where(.rt-variant-ghost){
|
|
8958
8944
|
background-color: color-mix(in srgb, var(--accent-a4) calc(var(--material-alpha) * 100%), var(--accent-4) var(--material-blend));
|
|
8959
|
-
box-shadow: var(--shadow-1);
|
|
8960
8945
|
}
|
|
8961
8946
|
.rt-BaseButton:where([data-state='on']):where(.rt-variant-outline){
|
|
8962
8947
|
--outline-border-8: color-mix(in srgb, var(--accent-a8) calc(var(--material-alpha) * 100%), var(--accent-8) var(--material-blend));
|
|
8963
8948
|
background-color: color-mix(in srgb, var(--accent-a3) calc(var(--material-alpha) * 100%), var(--accent-3) var(--material-blend));
|
|
8964
|
-
box-shadow: inset 0 0 0 1px var(--outline-border-8)
|
|
8949
|
+
box-shadow: inset 0 0 0 1px var(--outline-border-8);
|
|
8965
8950
|
}
|
|
8966
8951
|
.rt-BaseButton:where([data-state='on']):where(.rt-variant-surface){
|
|
8967
8952
|
--surface-border-8: color-mix(in srgb, var(--accent-a8) calc(var(--material-alpha) * 100%), var(--accent-8) var(--material-blend));
|
|
8968
8953
|
background-color: color-mix(in srgb, var(--accent-a4) calc(var(--material-alpha) * 100%), var(--accent-4) var(--material-blend));
|
|
8969
|
-
box-shadow: inset 0 0 0 1px var(--surface-border-8)
|
|
8954
|
+
box-shadow: inset 0 0 0 1px var(--surface-border-8);
|
|
8970
8955
|
}
|
|
8971
8956
|
.rt-BaseButton:where([disabled][aria-pressed]){
|
|
8972
8957
|
transform: none;
|
|
@@ -10440,11 +10425,9 @@
|
|
|
10440
10425
|
}
|
|
10441
10426
|
.rt-BaseCard:where(.rt-variant-classic):where(:-moz-any-link, button, label):where([data-state='open']){
|
|
10442
10427
|
transition-duration: 40ms;
|
|
10443
|
-
box-shadow: var(--shadow-1);
|
|
10444
10428
|
}
|
|
10445
10429
|
.rt-BaseCard:where(.rt-variant-classic):where(:any-link, button, label):where([data-state='open']){
|
|
10446
10430
|
transition-duration: 40ms;
|
|
10447
|
-
box-shadow: var(--shadow-1);
|
|
10448
10431
|
}
|
|
10449
10432
|
.rt-BaseCard:where(.rt-variant-classic):where(:-moz-any-link, button, label):where([data-state='open'])::before{
|
|
10450
10433
|
background-color: var(--gray-3);
|
|
@@ -10464,12 +10447,6 @@
|
|
|
10464
10447
|
.rt-BaseCard:where(.rt-variant-classic):where(:any-link, button, label):where([data-state='open'])::after{
|
|
10465
10448
|
box-shadow: none;
|
|
10466
10449
|
}
|
|
10467
|
-
.rt-BaseCard:where(.rt-variant-classic):where(:-moz-any-link, button, label):where(:active:not([data-state='open'])){
|
|
10468
|
-
box-shadow: var(--shadow-1);
|
|
10469
|
-
}
|
|
10470
|
-
.rt-BaseCard:where(.rt-variant-classic):where(:any-link, button, label):where(:active:not([data-state='open'])){
|
|
10471
|
-
box-shadow: var(--shadow-1);
|
|
10472
|
-
}
|
|
10473
10450
|
.rt-BaseCard:where(.rt-variant-classic):where(:-moz-any-link, button, label):where(:active:not([data-state='open']))::before{
|
|
10474
10451
|
background-color: var(--gray-3);
|
|
10475
10452
|
}
|
|
@@ -11152,7 +11129,6 @@
|
|
|
11152
11129
|
}
|
|
11153
11130
|
.rt-BaseCheckboxRoot:where(.rt-variant-classic):where([data-state='checked'], [data-state='indeterminate'])::before{
|
|
11154
11131
|
background-color: var(--accent-3);
|
|
11155
|
-
box-shadow: var(--shadow-1);
|
|
11156
11132
|
}
|
|
11157
11133
|
:where([data-panel-background='translucent'], [data-material='translucent']) .rt-BaseCheckboxRoot:where(.rt-variant-classic):where([data-state='checked'], [data-state='indeterminate'])::before{
|
|
11158
11134
|
background-color: color-mix(in srgb, var(--accent-a3), var(--accent-3) 60%);
|
|
@@ -11186,7 +11162,6 @@
|
|
|
11186
11162
|
}
|
|
11187
11163
|
.rt-BaseCheckboxRoot:where(.rt-variant-classic):where(:active:not(:disabled))::before{
|
|
11188
11164
|
background-color: var(--accent-3);
|
|
11189
|
-
box-shadow: var(--shadow-1);
|
|
11190
11165
|
}
|
|
11191
11166
|
:where([data-panel-background='translucent'], [data-material='translucent']) .rt-BaseCheckboxRoot:where(.rt-variant-classic):where(:active:not(:disabled))::before{
|
|
11192
11167
|
background-color: color-mix(in srgb, var(--accent-a3), var(--accent-3) 60%);
|
|
@@ -14414,11 +14389,9 @@
|
|
|
14414
14389
|
}
|
|
14415
14390
|
.rt-TextFieldRoot:where(.rt-variant-classic):where(:has(.rt-TextFieldInput:where(:disabled, :-moz-read-only))){
|
|
14416
14391
|
background-image: linear-gradient(var(--gray-a2), var(--gray-a2));
|
|
14417
|
-
box-shadow: var(--shadow-1);
|
|
14418
14392
|
}
|
|
14419
14393
|
.rt-TextFieldRoot:where(.rt-variant-classic):where(:has(.rt-TextFieldInput:where(:disabled, :read-only))){
|
|
14420
14394
|
background-image: linear-gradient(var(--gray-a2), var(--gray-a2));
|
|
14421
|
-
box-shadow: var(--shadow-1);
|
|
14422
14395
|
}
|
|
14423
14396
|
.rt-TextFieldRoot:where(.rt-variant-soft){
|
|
14424
14397
|
--text-field-selection-color: var(--accent-a5);
|
|
@@ -17563,7 +17536,6 @@
|
|
|
17563
17536
|
}
|
|
17564
17537
|
.rt-BaseRadioRoot:where(.rt-variant-classic):where(:checked, [data-state='checked'])::before{
|
|
17565
17538
|
background-color: var(--accent-3);
|
|
17566
|
-
box-shadow: var(--shadow-1);
|
|
17567
17539
|
}
|
|
17568
17540
|
:where([data-panel-background='translucent'], [data-material='translucent']) .rt-BaseRadioRoot:where(.rt-variant-classic):where(:checked, [data-state='checked'])::before{
|
|
17569
17541
|
background-color: color-mix(in srgb, var(--accent-a3), var(--accent-3) 60%);
|
|
@@ -17585,7 +17557,6 @@
|
|
|
17585
17557
|
}
|
|
17586
17558
|
.rt-BaseRadioRoot:where(.rt-variant-classic):where(:active:not(:disabled, [data-disabled]))::before{
|
|
17587
17559
|
background-color: var(--accent-3);
|
|
17588
|
-
box-shadow: var(--shadow-1);
|
|
17589
17560
|
}
|
|
17590
17561
|
:where([data-panel-background='translucent'], [data-material='translucent']) .rt-BaseRadioRoot:where(.rt-variant-classic):where(:active:not(:disabled, [data-disabled]))::before{
|
|
17591
17562
|
background-color: color-mix(in srgb, var(--accent-a3), var(--accent-3) 60%);
|
|
@@ -20067,7 +20038,6 @@
|
|
|
20067
20038
|
}
|
|
20068
20039
|
.rt-SelectTrigger:where(.rt-variant-classic):where([data-state='open']){
|
|
20069
20040
|
background-color: var(--accent-3);
|
|
20070
|
-
box-shadow: var(--shadow-1);
|
|
20071
20041
|
}
|
|
20072
20042
|
:where([data-panel-background='translucent'], [data-material='translucent']) .rt-SelectTrigger:where(.rt-variant-classic):where([data-state='open']){
|
|
20073
20043
|
background-color: color-mix(in srgb, var(--accent-a3), var(--accent-3) 60%);
|
|
@@ -20080,7 +20050,6 @@
|
|
|
20080
20050
|
}
|
|
20081
20051
|
.rt-SelectTrigger:where(.rt-variant-classic):where(:active:not([data-state='open'], [data-disabled])){
|
|
20082
20052
|
background-color: var(--accent-3);
|
|
20083
|
-
box-shadow: var(--shadow-1);
|
|
20084
20053
|
}
|
|
20085
20054
|
:where([data-panel-background='translucent'], [data-material='translucent']) .rt-SelectTrigger:where(.rt-variant-classic):where(:active:not([data-state='open'], [data-disabled])){
|
|
20086
20055
|
background-color: color-mix(in srgb, var(--accent-a3), var(--accent-3) 60%);
|
|
@@ -20915,23 +20884,46 @@
|
|
|
20915
20884
|
text-align: center !important;
|
|
20916
20885
|
font-size: var(--font-size-0) !important;
|
|
20917
20886
|
line-height: var(--line-height-0) !important;
|
|
20918
|
-
padding-top: var(--space-2) !important;
|
|
20919
|
-
padding-bottom: var(--space-2) !important;
|
|
20920
20887
|
padding-inline-start: var(--space-1) !important;
|
|
20921
20888
|
padding-inline-end: var(--space-1) !important;
|
|
20889
|
+
margin-top: 1px;
|
|
20890
|
+
margin-bottom: 1px;
|
|
20922
20891
|
}
|
|
20923
|
-
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-1){
|
|
20924
|
-
|
|
20925
|
-
|
|
20926
|
-
|
|
20927
|
-
|
|
20928
|
-
|
|
20929
|
-
|
|
20892
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-1) :where(.rt-SidebarMenuButton, .rt-SidebarMenuSubTrigger){
|
|
20893
|
+
padding-top: var(--space-1) !important;
|
|
20894
|
+
padding-bottom: var(--space-1) !important;
|
|
20895
|
+
justify-content: center;
|
|
20896
|
+
align-items: center;
|
|
20897
|
+
flex-direction: column;
|
|
20898
|
+
gap: var(--space-1);
|
|
20899
|
+
text-align: center;
|
|
20900
|
+
font-size: var(--font-size-0);
|
|
20901
|
+
line-height: var(--line-height-0);
|
|
20902
|
+
white-space: nowrap;
|
|
20903
|
+
overflow: hidden;
|
|
20904
|
+
text-overflow: ellipsis;
|
|
20905
|
+
max-width: 100%;
|
|
20906
|
+
min-width: 0;
|
|
20930
20907
|
}
|
|
20931
|
-
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-
|
|
20932
|
-
|
|
20908
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-2) :where(.rt-SidebarMenuButton, .rt-SidebarMenuSubTrigger){
|
|
20909
|
+
padding-top: var(--space-1) !important;
|
|
20910
|
+
padding-bottom: var(--space-1) !important;
|
|
20911
|
+
justify-content: center;
|
|
20912
|
+
align-items: center;
|
|
20913
|
+
flex-direction: column;
|
|
20914
|
+
gap: var(--space-1);
|
|
20915
|
+
text-align: center;
|
|
20916
|
+
font-size: var(--font-size-0);
|
|
20917
|
+
line-height: var(--line-height-0);
|
|
20918
|
+
white-space: nowrap;
|
|
20919
|
+
overflow: hidden;
|
|
20920
|
+
text-overflow: ellipsis;
|
|
20921
|
+
max-width: 100%;
|
|
20922
|
+
min-width: 0;
|
|
20933
20923
|
}
|
|
20934
|
-
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-
|
|
20924
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-3) :where(.rt-SidebarMenuButton, .rt-SidebarMenuSubTrigger){
|
|
20925
|
+
padding-top: var(--space-2) !important;
|
|
20926
|
+
padding-bottom: var(--space-2) !important;
|
|
20935
20927
|
justify-content: center;
|
|
20936
20928
|
align-items: center;
|
|
20937
20929
|
flex-direction: column;
|
|
@@ -20945,6 +20937,17 @@
|
|
|
20945
20937
|
max-width: 100%;
|
|
20946
20938
|
min-width: 0;
|
|
20947
20939
|
}
|
|
20940
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-1){
|
|
20941
|
+
--base-menu-item-padding-left: var(--space-1) !important;
|
|
20942
|
+
--base-menu-item-padding-right: var(--space-1) !important;
|
|
20943
|
+
--base-menu-item-padding-y: var(--space-2) !important;
|
|
20944
|
+
}
|
|
20945
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-1):where(:not(:has(.rt-BaseMenuCheckboxItem, .rt-BaseMenuRadioItem))){
|
|
20946
|
+
--base-menu-item-padding-left: var(--space-1) !important;
|
|
20947
|
+
}
|
|
20948
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-1):where(:has(.rt-BaseMenuCheckboxItem, .rt-BaseMenuRadioItem)){
|
|
20949
|
+
--base-menu-item-padding-left: var(--space-1) !important;
|
|
20950
|
+
}
|
|
20948
20951
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-1) :where(.rt-SidebarMenuButton, .rt-SidebarMenuSubTrigger) :where(svg){
|
|
20949
20952
|
width: var(--content-icon-size-3);
|
|
20950
20953
|
height: var(--content-icon-size-3);
|
|
@@ -20960,20 +20963,6 @@
|
|
|
20960
20963
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-2):where(:has(.rt-BaseMenuCheckboxItem, .rt-BaseMenuRadioItem)){
|
|
20961
20964
|
--base-menu-item-padding-left: var(--space-1) !important;
|
|
20962
20965
|
}
|
|
20963
|
-
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-2) :where(.rt-SidebarMenuButton, .rt-SidebarMenuSubTrigger){
|
|
20964
|
-
justify-content: center;
|
|
20965
|
-
align-items: center;
|
|
20966
|
-
flex-direction: column;
|
|
20967
|
-
gap: var(--space-1);
|
|
20968
|
-
text-align: center;
|
|
20969
|
-
font-size: var(--font-size-0);
|
|
20970
|
-
line-height: var(--line-height-0);
|
|
20971
|
-
white-space: nowrap;
|
|
20972
|
-
overflow: hidden;
|
|
20973
|
-
text-overflow: ellipsis;
|
|
20974
|
-
max-width: 100%;
|
|
20975
|
-
min-width: 0;
|
|
20976
|
-
}
|
|
20977
20966
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-2) :where(.rt-SidebarMenuButton, .rt-SidebarMenuSubTrigger) :where(svg){
|
|
20978
20967
|
width: var(--content-icon-size-4);
|
|
20979
20968
|
height: var(--content-icon-size-4);
|
|
@@ -20989,20 +20978,6 @@
|
|
|
20989
20978
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-3):where(:has(.rt-BaseMenuCheckboxItem, .rt-BaseMenuRadioItem)){
|
|
20990
20979
|
--base-menu-item-padding-left: var(--space-1) !important;
|
|
20991
20980
|
}
|
|
20992
|
-
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-3) :where(.rt-SidebarMenuButton, .rt-SidebarMenuSubTrigger){
|
|
20993
|
-
justify-content: center;
|
|
20994
|
-
align-items: center;
|
|
20995
|
-
flex-direction: column;
|
|
20996
|
-
gap: var(--space-1);
|
|
20997
|
-
text-align: center;
|
|
20998
|
-
font-size: var(--font-size-0);
|
|
20999
|
-
line-height: var(--line-height-0);
|
|
21000
|
-
white-space: nowrap;
|
|
21001
|
-
overflow: hidden;
|
|
21002
|
-
text-overflow: ellipsis;
|
|
21003
|
-
max-width: 100%;
|
|
21004
|
-
min-width: 0;
|
|
21005
|
-
}
|
|
21006
20981
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-3) :where(.rt-SidebarMenuButton, .rt-SidebarMenuSubTrigger) :where(svg){
|
|
21007
20982
|
width: var(--content-icon-size-5);
|
|
21008
20983
|
height: var(--content-icon-size-5);
|
|
@@ -21040,18 +21015,78 @@
|
|
|
21040
21015
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuButton) :where(svg){
|
|
21041
21016
|
display: block;
|
|
21042
21017
|
}
|
|
21018
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuIconWrapper){
|
|
21019
|
+
display: flex;
|
|
21020
|
+
align-items: center;
|
|
21021
|
+
justify-content: center;
|
|
21022
|
+
width: auto;
|
|
21023
|
+
padding: var(--space-3) var(--space-2);
|
|
21024
|
+
border-radius: var(--radius-2);
|
|
21025
|
+
transition: background-color var(--motion-duration-micro) var(--motion-ease-standard), color var(--motion-duration-small) var(--motion-ease-standard);
|
|
21026
|
+
}
|
|
21027
|
+
.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-1 .rt-SidebarMenuIconWrapper{
|
|
21028
|
+
padding: var(--space-2) var(--space-2);
|
|
21029
|
+
border-radius: var(--radius-1);
|
|
21030
|
+
}
|
|
21031
|
+
.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-2 .rt-SidebarMenuIconWrapper{
|
|
21032
|
+
padding: var(--space-2);
|
|
21033
|
+
border-radius: var(--radius-2);
|
|
21034
|
+
}
|
|
21035
|
+
.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-r-size-3 .rt-SidebarMenuIconWrapper{
|
|
21036
|
+
padding: var(--space-3);
|
|
21037
|
+
border-radius: var(--radius-2);
|
|
21038
|
+
}
|
|
21043
21039
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuButton .rt-SidebarMenuLabel){
|
|
21044
21040
|
display: block;
|
|
21045
21041
|
max-width: 100%;
|
|
21046
21042
|
min-width: 0;
|
|
21047
|
-
overflow:
|
|
21048
|
-
text-overflow:
|
|
21043
|
+
overflow: visible;
|
|
21044
|
+
text-overflow: clip;
|
|
21049
21045
|
white-space: nowrap;
|
|
21050
21046
|
text-align: center;
|
|
21051
|
-
color: var(--
|
|
21047
|
+
color: var(--gray-11);
|
|
21052
21048
|
font-size: var(--font-size-0);
|
|
21053
21049
|
line-height: var(--line-height-0);
|
|
21054
21050
|
}
|
|
21051
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuButton[data-active] .rt-SidebarMenuLabel){
|
|
21052
|
+
color: var(--accent-11);
|
|
21053
|
+
font-weight: var(--font-weight-medium);
|
|
21054
|
+
}
|
|
21055
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuButton[data-highlighted] .rt-SidebarMenuLabel){
|
|
21056
|
+
color: var(--accent-11);
|
|
21057
|
+
}
|
|
21058
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuButton[data-highlighted]),
|
|
21059
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuButton[data-active]){
|
|
21060
|
+
background-color: transparent !important;
|
|
21061
|
+
}
|
|
21062
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-menu-variant-soft .rt-SidebarMenuButton[data-highlighted] .rt-SidebarMenuIconWrapper){
|
|
21063
|
+
background-color: var(--accent-4);
|
|
21064
|
+
}
|
|
21065
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-menu-variant-soft .rt-SidebarMenuButton[data-active] .rt-SidebarMenuIconWrapper){
|
|
21066
|
+
background-color: var(--accent-3);
|
|
21067
|
+
}
|
|
21068
|
+
:where([data-panel-background='translucent']) :where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-menu-variant-soft .rt-SidebarMenuButton[data-highlighted] .rt-SidebarMenuIconWrapper){
|
|
21069
|
+
background-color: var(--accent-a4);
|
|
21070
|
+
}
|
|
21071
|
+
:where([data-panel-background='translucent']) :where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-menu-variant-soft .rt-SidebarMenuButton[data-active] .rt-SidebarMenuIconWrapper){
|
|
21072
|
+
background-color: var(--accent-a3);
|
|
21073
|
+
}
|
|
21074
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-menu-variant-solid .rt-SidebarMenuButton[data-highlighted] .rt-SidebarMenuIconWrapper){
|
|
21075
|
+
background-color: var(--accent-9);
|
|
21076
|
+
color: var(--accent-contrast);
|
|
21077
|
+
}
|
|
21078
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-menu-variant-solid .rt-SidebarMenuButton[data-active] .rt-SidebarMenuIconWrapper){
|
|
21079
|
+
background-color: var(--accent-9);
|
|
21080
|
+
color: var(--accent-contrast);
|
|
21081
|
+
}
|
|
21082
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-menu-variant-solid[data-high-contrast] .rt-SidebarMenuButton[data-highlighted] .rt-SidebarMenuIconWrapper){
|
|
21083
|
+
background-color: var(--accent-12);
|
|
21084
|
+
color: var(--accent-1);
|
|
21085
|
+
}
|
|
21086
|
+
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarContent.rt-menu-variant-solid[data-high-contrast] .rt-SidebarMenuButton[data-active] .rt-SidebarMenuIconWrapper){
|
|
21087
|
+
background-color: var(--accent-12);
|
|
21088
|
+
color: var(--accent-1);
|
|
21089
|
+
}
|
|
21055
21090
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuBadge),
|
|
21056
21091
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-SidebarMenuShortcut),
|
|
21057
21092
|
:where(.rt-SidebarContainer[data-presentation='thin'] .rt-Badge),
|
|
@@ -24605,11 +24640,9 @@
|
|
|
24605
24640
|
}
|
|
24606
24641
|
.rt-TextAreaRoot:where(.rt-variant-classic):where(:has(.rt-TextAreaInput:where(:disabled, :-moz-read-only))){
|
|
24607
24642
|
background-image: linear-gradient(var(--gray-a2), var(--gray-a2));
|
|
24608
|
-
box-shadow: var(--shadow-1);
|
|
24609
24643
|
}
|
|
24610
24644
|
.rt-TextAreaRoot:where(.rt-variant-classic):where(:has(.rt-TextAreaInput:where(:disabled, :read-only))){
|
|
24611
24645
|
background-image: linear-gradient(var(--gray-a2), var(--gray-a2));
|
|
24612
|
-
box-shadow: var(--shadow-1);
|
|
24613
24646
|
}
|
|
24614
24647
|
.rt-TextAreaRoot:where(.rt-variant-soft){
|
|
24615
24648
|
--text-area-selection-color: var(--accent-a5);
|