@kushagradhawan/kookie-ui 0.1.107 → 0.1.109
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 +80 -51
- package/dist/cjs/components/_internal/shell-bottom.d.ts +2 -0
- package/dist/cjs/components/_internal/shell-bottom.d.ts.map +1 -1
- package/dist/cjs/components/_internal/shell-bottom.js +1 -1
- package/dist/cjs/components/_internal/shell-bottom.js.map +3 -3
- package/dist/cjs/components/_internal/shell-inspector.d.ts +2 -0
- package/dist/cjs/components/_internal/shell-inspector.d.ts.map +1 -1
- package/dist/cjs/components/_internal/shell-inspector.js +1 -1
- package/dist/cjs/components/_internal/shell-inspector.js.map +3 -3
- package/dist/cjs/components/_internal/shell-sidebar.d.ts +2 -0
- package/dist/cjs/components/_internal/shell-sidebar.d.ts.map +1 -1
- package/dist/cjs/components/_internal/shell-sidebar.js +1 -1
- package/dist/cjs/components/_internal/shell-sidebar.js.map +3 -3
- package/dist/cjs/components/shell.context.d.ts +13 -0
- package/dist/cjs/components/shell.context.d.ts.map +1 -1
- package/dist/cjs/components/shell.context.js +1 -1
- package/dist/cjs/components/shell.context.js.map +3 -3
- package/dist/cjs/components/shell.d.ts +14 -6
- package/dist/cjs/components/shell.d.ts.map +1 -1
- package/dist/cjs/components/shell.js +1 -1
- package/dist/cjs/components/shell.js.map +3 -3
- package/dist/esm/components/_internal/shell-bottom.d.ts +2 -0
- package/dist/esm/components/_internal/shell-bottom.d.ts.map +1 -1
- package/dist/esm/components/_internal/shell-bottom.js +1 -1
- package/dist/esm/components/_internal/shell-bottom.js.map +3 -3
- package/dist/esm/components/_internal/shell-inspector.d.ts +2 -0
- package/dist/esm/components/_internal/shell-inspector.d.ts.map +1 -1
- package/dist/esm/components/_internal/shell-inspector.js +1 -1
- package/dist/esm/components/_internal/shell-inspector.js.map +3 -3
- package/dist/esm/components/_internal/shell-sidebar.d.ts +2 -0
- package/dist/esm/components/_internal/shell-sidebar.d.ts.map +1 -1
- package/dist/esm/components/_internal/shell-sidebar.js +1 -1
- package/dist/esm/components/_internal/shell-sidebar.js.map +3 -3
- package/dist/esm/components/shell.context.d.ts +13 -0
- package/dist/esm/components/shell.context.d.ts.map +1 -1
- package/dist/esm/components/shell.context.js +1 -1
- package/dist/esm/components/shell.context.js.map +3 -3
- package/dist/esm/components/shell.d.ts +14 -6
- package/dist/esm/components/shell.d.ts.map +1 -1
- package/dist/esm/components/shell.js +1 -1
- package/dist/esm/components/shell.js.map +3 -3
- 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/shell-bottom.tsx +15 -1
- package/src/components/_internal/shell-inspector.tsx +15 -1
- package/src/components/_internal/shell-sidebar.tsx +15 -1
- package/src/components/segmented-control.css +37 -37
- package/src/components/sheet.css +12 -0
- package/src/components/shell.context.tsx +14 -0
- package/src/components/shell.css +51 -28
- package/src/components/shell.tsx +150 -81
- package/styles.css +80 -51
package/styles.css
CHANGED
|
@@ -17959,12 +17959,19 @@
|
|
|
17959
17959
|
border-radius: 0 !important;
|
|
17960
17960
|
will-change: transform;
|
|
17961
17961
|
}
|
|
17962
|
+
@supports (height: 100dvh) {
|
|
17963
|
+
:where(.rt-SheetContent){
|
|
17964
|
+
height: 100dvh;
|
|
17965
|
+
max-height: 100dvh;
|
|
17966
|
+
}
|
|
17967
|
+
}
|
|
17962
17968
|
:where(.rt-SheetContent[data-side='start']){
|
|
17963
17969
|
inset-block: 0 !important;
|
|
17964
17970
|
inset-inline-start: 0 !important;
|
|
17965
17971
|
margin: 0 !important;
|
|
17966
17972
|
border-start-start-radius: 0;
|
|
17967
17973
|
border-end-start-radius: 0;
|
|
17974
|
+
padding-bottom: env(safe-area-inset-bottom, 0px);
|
|
17968
17975
|
}
|
|
17969
17976
|
:where(.rt-SheetContent[data-side='end']){
|
|
17970
17977
|
inset-block: 0 !important;
|
|
@@ -17972,6 +17979,7 @@
|
|
|
17972
17979
|
margin: 0 !important;
|
|
17973
17980
|
border-start-end-radius: 0;
|
|
17974
17981
|
border-end-end-radius: 0;
|
|
17982
|
+
padding-bottom: env(safe-area-inset-bottom, 0px);
|
|
17975
17983
|
}
|
|
17976
17984
|
:where(.rt-SheetContent[data-side='top']){
|
|
17977
17985
|
inset-block-start: 0 !important;
|
|
@@ -18252,7 +18260,7 @@
|
|
|
18252
18260
|
color: var(--gray-a8);
|
|
18253
18261
|
background-color: var(--gray-3);
|
|
18254
18262
|
}
|
|
18255
|
-
.rt-SegmentedControlRoot.rt-r-orientation-vertical{
|
|
18263
|
+
.rt-SegmentedControlRoot:where(.rt-r-orientation-vertical){
|
|
18256
18264
|
grid-auto-flow: row;
|
|
18257
18265
|
grid-auto-columns: unset;
|
|
18258
18266
|
grid-auto-rows: 1fr;
|
|
@@ -18260,7 +18268,7 @@
|
|
|
18260
18268
|
min-height: -moz-max-content;
|
|
18261
18269
|
min-height: max-content;
|
|
18262
18270
|
}
|
|
18263
|
-
.rt-SegmentedControlRoot.rt-r-orientation-vertical:has([data-icon-only]){
|
|
18271
|
+
.rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):has([data-icon-only]){
|
|
18264
18272
|
grid-auto-columns: unset;
|
|
18265
18273
|
grid-auto-rows: minmax(var(--segmented-control-height), 1fr);
|
|
18266
18274
|
}
|
|
@@ -18284,15 +18292,15 @@
|
|
|
18284
18292
|
outline: var(--focus-outline-width) solid var(--focus-8);
|
|
18285
18293
|
outline-offset: var(--focus-outline-offset-inset);
|
|
18286
18294
|
}
|
|
18287
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem{
|
|
18295
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem{
|
|
18288
18296
|
flex-direction: column;
|
|
18289
18297
|
}
|
|
18290
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem:first-child{
|
|
18298
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem:first-child{
|
|
18291
18299
|
border-top-left-radius: inherit;
|
|
18292
18300
|
border-top-right-radius: inherit;
|
|
18293
18301
|
border-bottom-left-radius: 0;
|
|
18294
18302
|
}
|
|
18295
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem:nth-last-child(2){
|
|
18303
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem:nth-last-child(2){
|
|
18296
18304
|
border-bottom-left-radius: inherit;
|
|
18297
18305
|
border-bottom-right-radius: inherit;
|
|
18298
18306
|
border-top-right-radius: 0;
|
|
@@ -18356,7 +18364,7 @@
|
|
|
18356
18364
|
:where(.rt-SegmentedControlRoot:has(:focus-visible)) .rt-SegmentedControlItemSeparator{
|
|
18357
18365
|
transition-duration: 0ms;
|
|
18358
18366
|
}
|
|
18359
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItemSeparator{
|
|
18367
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItemSeparator{
|
|
18360
18368
|
margin-left: calc(var(--space-1) * 0.75);
|
|
18361
18369
|
margin-right: calc(var(--space-1) * 0.75);
|
|
18362
18370
|
margin-top: calc(-1 * var(--border-width-standard) * 0.5);
|
|
@@ -18452,68 +18460,68 @@
|
|
|
18452
18460
|
:where(.rt-SegmentedControlItem[data-state='on']:nth-child(10)) ~ .rt-SegmentedControlIndicator{
|
|
18453
18461
|
transform: translateX(900%);
|
|
18454
18462
|
}
|
|
18455
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator{
|
|
18463
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator{
|
|
18456
18464
|
width: 100%;
|
|
18457
18465
|
height: unset;
|
|
18458
18466
|
}
|
|
18459
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(2){
|
|
18467
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(2){
|
|
18460
18468
|
height: calc(100% / 1);
|
|
18461
18469
|
}
|
|
18462
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(3){
|
|
18470
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(3){
|
|
18463
18471
|
height: calc(100% / 2);
|
|
18464
18472
|
}
|
|
18465
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(4){
|
|
18473
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(4){
|
|
18466
18474
|
height: calc(100% / 3);
|
|
18467
18475
|
}
|
|
18468
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(5){
|
|
18476
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(5){
|
|
18469
18477
|
height: calc(100% / 4);
|
|
18470
18478
|
}
|
|
18471
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(6){
|
|
18479
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(6){
|
|
18472
18480
|
height: calc(100% / 5);
|
|
18473
18481
|
}
|
|
18474
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(7){
|
|
18482
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(7){
|
|
18475
18483
|
height: calc(100% / 6);
|
|
18476
18484
|
}
|
|
18477
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(8){
|
|
18485
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(8){
|
|
18478
18486
|
height: calc(100% / 7);
|
|
18479
18487
|
}
|
|
18480
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(9){
|
|
18488
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(9){
|
|
18481
18489
|
height: calc(100% / 8);
|
|
18482
18490
|
}
|
|
18483
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(10){
|
|
18491
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(10){
|
|
18484
18492
|
height: calc(100% / 9);
|
|
18485
18493
|
}
|
|
18486
|
-
.rt-r-orientation-vertical .rt-SegmentedControlIndicator:nth-child(11){
|
|
18494
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlIndicator:nth-child(11){
|
|
18487
18495
|
height: calc(100% / 10);
|
|
18488
18496
|
}
|
|
18489
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(1) ~ .rt-SegmentedControlIndicator{
|
|
18497
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(1) ~ .rt-SegmentedControlIndicator{
|
|
18490
18498
|
transform: translateY(0%);
|
|
18491
18499
|
}
|
|
18492
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(2) ~ .rt-SegmentedControlIndicator{
|
|
18500
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(2) ~ .rt-SegmentedControlIndicator{
|
|
18493
18501
|
transform: translateY(100%);
|
|
18494
18502
|
}
|
|
18495
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(3) ~ .rt-SegmentedControlIndicator{
|
|
18503
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(3) ~ .rt-SegmentedControlIndicator{
|
|
18496
18504
|
transform: translateY(200%);
|
|
18497
18505
|
}
|
|
18498
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(4) ~ .rt-SegmentedControlIndicator{
|
|
18506
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(4) ~ .rt-SegmentedControlIndicator{
|
|
18499
18507
|
transform: translateY(300%);
|
|
18500
18508
|
}
|
|
18501
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(5) ~ .rt-SegmentedControlIndicator{
|
|
18509
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(5) ~ .rt-SegmentedControlIndicator{
|
|
18502
18510
|
transform: translateY(400%);
|
|
18503
18511
|
}
|
|
18504
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(6) ~ .rt-SegmentedControlIndicator{
|
|
18512
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(6) ~ .rt-SegmentedControlIndicator{
|
|
18505
18513
|
transform: translateY(500%);
|
|
18506
18514
|
}
|
|
18507
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(7) ~ .rt-SegmentedControlIndicator{
|
|
18515
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(7) ~ .rt-SegmentedControlIndicator{
|
|
18508
18516
|
transform: translateY(600%);
|
|
18509
18517
|
}
|
|
18510
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(8) ~ .rt-SegmentedControlIndicator{
|
|
18518
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(8) ~ .rt-SegmentedControlIndicator{
|
|
18511
18519
|
transform: translateY(700%);
|
|
18512
18520
|
}
|
|
18513
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(9) ~ .rt-SegmentedControlIndicator{
|
|
18521
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(9) ~ .rt-SegmentedControlIndicator{
|
|
18514
18522
|
transform: translateY(800%);
|
|
18515
18523
|
}
|
|
18516
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-state='on']:nth-child(10) ~ .rt-SegmentedControlIndicator{
|
|
18524
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-state='on']:nth-child(10) ~ .rt-SegmentedControlIndicator{
|
|
18517
18525
|
transform: translateY(900%);
|
|
18518
18526
|
}
|
|
18519
18527
|
.rt-SegmentedControlItemLabel,
|
|
@@ -19122,39 +19130,39 @@
|
|
|
19122
19130
|
padding-left: 0;
|
|
19123
19131
|
padding-right: 0;
|
|
19124
19132
|
}
|
|
19125
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-icon-only]{
|
|
19133
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-icon-only]{
|
|
19126
19134
|
min-width: unset;
|
|
19127
19135
|
min-height: var(--segmented-control-height);
|
|
19128
19136
|
}
|
|
19129
|
-
.rt-r-orientation-vertical .rt-SegmentedControlItem[data-icon-only] .rt-SegmentedControlItemLabel{
|
|
19137
|
+
:where(.rt-r-orientation-vertical) .rt-SegmentedControlItem[data-icon-only] .rt-SegmentedControlItemLabel{
|
|
19130
19138
|
padding-top: 0;
|
|
19131
19139
|
padding-bottom: 0;
|
|
19132
19140
|
}
|
|
19133
|
-
.rt-SegmentedControlRoot.rt-r-orientation-vertical.rt-r-size-1:has([data-icon-only]){
|
|
19141
|
+
.rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):where(.rt-r-size-1):has([data-icon-only]){
|
|
19134
19142
|
width: var(--space-5);
|
|
19135
19143
|
}
|
|
19136
|
-
.rt-SegmentedControlRoot.rt-r-orientation-vertical.rt-r-size-2:has([data-icon-only]){
|
|
19144
|
+
.rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):where(.rt-r-size-2):has([data-icon-only]){
|
|
19137
19145
|
width: var(--space-6);
|
|
19138
19146
|
}
|
|
19139
|
-
.rt-SegmentedControlRoot.rt-r-orientation-vertical.rt-r-size-3:has([data-icon-only]){
|
|
19147
|
+
.rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):where(.rt-r-size-3):has([data-icon-only]){
|
|
19140
19148
|
width: var(--space-7);
|
|
19141
19149
|
}
|
|
19142
|
-
.rt-SegmentedControlRoot.rt-r-orientation-vertical.rt-r-size-4:has([data-icon-only]){
|
|
19150
|
+
.rt-SegmentedControlRoot:where(.rt-r-orientation-vertical):where(.rt-r-size-4):has([data-icon-only]){
|
|
19143
19151
|
width: var(--space-8);
|
|
19144
19152
|
}
|
|
19145
|
-
.rt-r-orientation-vertical.rt-r-size-1 .rt-SegmentedControlItemLabel{
|
|
19153
|
+
:where(.rt-r-orientation-vertical):where(.rt-r-size-1) .rt-SegmentedControlItemLabel{
|
|
19146
19154
|
padding-top: var(--space-1);
|
|
19147
19155
|
padding-bottom: var(--space-1);
|
|
19148
19156
|
}
|
|
19149
|
-
.rt-r-orientation-vertical.rt-r-size-2 .rt-SegmentedControlItemLabel{
|
|
19157
|
+
:where(.rt-r-orientation-vertical):where(.rt-r-size-2) .rt-SegmentedControlItemLabel{
|
|
19150
19158
|
padding-top: var(--space-2);
|
|
19151
19159
|
padding-bottom: var(--space-2);
|
|
19152
19160
|
}
|
|
19153
|
-
.rt-r-orientation-vertical.rt-r-size-3 .rt-SegmentedControlItemLabel{
|
|
19161
|
+
:where(.rt-r-orientation-vertical):where(.rt-r-size-3) .rt-SegmentedControlItemLabel{
|
|
19154
19162
|
padding-top: var(--space-2);
|
|
19155
19163
|
padding-bottom: var(--space-2);
|
|
19156
19164
|
}
|
|
19157
|
-
.rt-r-orientation-vertical.rt-r-size-4 .rt-SegmentedControlItemLabel{
|
|
19165
|
+
:where(.rt-r-orientation-vertical):where(.rt-r-size-4) .rt-SegmentedControlItemLabel{
|
|
19158
19166
|
padding-top: var(--space-3);
|
|
19159
19167
|
padding-bottom: var(--space-3);
|
|
19160
19168
|
}
|
|
@@ -22251,9 +22259,6 @@
|
|
|
22251
22259
|
.rt-ShellRail[data-mode='collapsed']{
|
|
22252
22260
|
width: 0px;
|
|
22253
22261
|
transition-delay: var(--motion-duration-small);
|
|
22254
|
-
position: absolute;
|
|
22255
|
-
inset-block: 0;
|
|
22256
|
-
inset-inline-start: 0;
|
|
22257
22262
|
}
|
|
22258
22263
|
.rt-ShellRailContent{
|
|
22259
22264
|
display: flex;
|
|
@@ -22262,13 +22267,17 @@
|
|
|
22262
22267
|
height: 100%;
|
|
22263
22268
|
gap: var(--space-2);
|
|
22264
22269
|
opacity: 0;
|
|
22270
|
+
pointer-events: none;
|
|
22265
22271
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
22266
22272
|
}
|
|
22267
22273
|
.rt-ShellRailContent[data-visible]{
|
|
22268
22274
|
opacity: 1;
|
|
22275
|
+
pointer-events: auto;
|
|
22269
22276
|
}
|
|
22270
22277
|
.rt-ShellRail[data-mode='collapsed'] .rt-ShellRailContent{
|
|
22271
22278
|
opacity: 0;
|
|
22279
|
+
width: 0;
|
|
22280
|
+
visibility: hidden;
|
|
22272
22281
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
|
|
22273
22282
|
}
|
|
22274
22283
|
.rt-ShellPanel{
|
|
@@ -22286,9 +22295,6 @@
|
|
|
22286
22295
|
.rt-ShellPanel:not([data-visible]){
|
|
22287
22296
|
width: 0px;
|
|
22288
22297
|
transition-delay: var(--motion-duration-small);
|
|
22289
|
-
position: absolute;
|
|
22290
|
-
inset-block: 0;
|
|
22291
|
-
inset-inline-start: var(--peek-rail-width, var(--rail-size, 64px));
|
|
22292
22298
|
}
|
|
22293
22299
|
.rt-ShellPanelContent{
|
|
22294
22300
|
display: flex;
|
|
@@ -22297,13 +22303,17 @@
|
|
|
22297
22303
|
height: 100%;
|
|
22298
22304
|
overflow: hidden;
|
|
22299
22305
|
opacity: 0;
|
|
22306
|
+
pointer-events: none;
|
|
22300
22307
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
22301
22308
|
}
|
|
22302
22309
|
.rt-ShellPanelContent[data-visible]{
|
|
22303
22310
|
opacity: 1;
|
|
22311
|
+
pointer-events: auto;
|
|
22304
22312
|
}
|
|
22305
22313
|
.rt-ShellPanel:not([data-visible]) .rt-ShellPanelContent{
|
|
22306
22314
|
opacity: 0;
|
|
22315
|
+
width: 0;
|
|
22316
|
+
visibility: hidden;
|
|
22307
22317
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
|
|
22308
22318
|
}
|
|
22309
22319
|
.rt-ShellSidebar{
|
|
@@ -22326,11 +22336,6 @@
|
|
|
22326
22336
|
}
|
|
22327
22337
|
.rt-ShellSidebar[data-mode='collapsed']{
|
|
22328
22338
|
width: 0px;
|
|
22329
|
-
position: absolute;
|
|
22330
|
-
inset-block: 0;
|
|
22331
|
-
inset-inline-start: 0;
|
|
22332
|
-
flex-shrink: 0;
|
|
22333
|
-
flex-basis: 0;
|
|
22334
22339
|
transition-delay: var(--motion-duration-small);
|
|
22335
22340
|
}
|
|
22336
22341
|
.rt-ShellSidebarContent{
|
|
@@ -22340,6 +22345,7 @@
|
|
|
22340
22345
|
height: 100%;
|
|
22341
22346
|
overflow: hidden;
|
|
22342
22347
|
opacity: 0;
|
|
22348
|
+
pointer-events: none;
|
|
22343
22349
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
22344
22350
|
}
|
|
22345
22351
|
.rt-ShellSidebar[data-mode='thin'] .rt-ShellResizer{
|
|
@@ -22347,6 +22353,7 @@
|
|
|
22347
22353
|
}
|
|
22348
22354
|
.rt-ShellSidebarContent[data-visible]{
|
|
22349
22355
|
opacity: 1;
|
|
22356
|
+
pointer-events: auto;
|
|
22350
22357
|
}
|
|
22351
22358
|
.rt-ShellSidebarContent[data-phase='hiding']{
|
|
22352
22359
|
opacity: 0;
|
|
@@ -22361,6 +22368,8 @@
|
|
|
22361
22368
|
}
|
|
22362
22369
|
.rt-ShellSidebar[data-mode='collapsed'] .rt-ShellSidebarContent{
|
|
22363
22370
|
opacity: 0;
|
|
22371
|
+
width: 0;
|
|
22372
|
+
visibility: hidden;
|
|
22364
22373
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
|
|
22365
22374
|
}
|
|
22366
22375
|
.rt-ShellSidebar[data-presentation='stacked']{
|
|
@@ -22411,13 +22420,17 @@
|
|
|
22411
22420
|
height: 100%;
|
|
22412
22421
|
overflow: hidden;
|
|
22413
22422
|
opacity: 0;
|
|
22423
|
+
pointer-events: none;
|
|
22414
22424
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
22415
22425
|
}
|
|
22416
22426
|
.rt-ShellInspectorContent[data-visible]{
|
|
22417
22427
|
opacity: 1;
|
|
22428
|
+
pointer-events: auto;
|
|
22418
22429
|
}
|
|
22419
22430
|
.rt-ShellInspector[data-mode='collapsed'] .rt-ShellInspectorContent{
|
|
22420
22431
|
opacity: 0;
|
|
22432
|
+
width: 0;
|
|
22433
|
+
visibility: hidden;
|
|
22421
22434
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
|
|
22422
22435
|
}
|
|
22423
22436
|
.rt-ShellBottom{
|
|
@@ -22434,9 +22447,6 @@
|
|
|
22434
22447
|
}
|
|
22435
22448
|
.rt-ShellBottom[data-mode='collapsed']{
|
|
22436
22449
|
height: 0px;
|
|
22437
|
-
position: absolute;
|
|
22438
|
-
inset-inline: 0;
|
|
22439
|
-
inset-block-end: 0;
|
|
22440
22450
|
transition-delay: var(--motion-duration-small);
|
|
22441
22451
|
}
|
|
22442
22452
|
.rt-ShellBottomContent{
|
|
@@ -22446,10 +22456,12 @@
|
|
|
22446
22456
|
height: var(--bottom-size, 200px);
|
|
22447
22457
|
overflow: hidden;
|
|
22448
22458
|
opacity: 0;
|
|
22459
|
+
pointer-events: none;
|
|
22449
22460
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
22450
22461
|
}
|
|
22451
22462
|
.rt-ShellBottomContent[data-visible]{
|
|
22452
22463
|
opacity: 1;
|
|
22464
|
+
pointer-events: auto;
|
|
22453
22465
|
}
|
|
22454
22466
|
.rt-ShellPanel[data-resizing],
|
|
22455
22467
|
.rt-ShellSidebar[data-resizing],
|
|
@@ -22471,6 +22483,8 @@
|
|
|
22471
22483
|
}
|
|
22472
22484
|
.rt-ShellBottom[data-mode='collapsed'] .rt-ShellBottomContent{
|
|
22473
22485
|
opacity: 0;
|
|
22486
|
+
height: 0;
|
|
22487
|
+
visibility: hidden;
|
|
22474
22488
|
transition: opacity var(--motion-duration-small) var(--motion-ease-standard);
|
|
22475
22489
|
}
|
|
22476
22490
|
[data-presentation='overlay']{
|
|
@@ -22631,6 +22645,21 @@
|
|
|
22631
22645
|
.rt-ShellBottom[data-peek][data-mode='collapsed']{
|
|
22632
22646
|
height: var(--bottom-size, 200px);
|
|
22633
22647
|
}
|
|
22648
|
+
.rt-ShellBody[data-has-inset]{
|
|
22649
|
+
background: var(--gray-2);
|
|
22650
|
+
}
|
|
22651
|
+
.rt-ShellLeft[data-inset],
|
|
22652
|
+
.rt-ShellSidebar[data-inset],
|
|
22653
|
+
.rt-ShellContent[data-inset],
|
|
22654
|
+
.rt-ShellInspector[data-inset],
|
|
22655
|
+
.rt-ShellBottom[data-inset]{
|
|
22656
|
+
--shell-inset-gap: var(--space-2);
|
|
22657
|
+
margin: var(--shell-inset-gap);
|
|
22658
|
+
border-radius: var(--radius-3);
|
|
22659
|
+
background: var(--color-background);
|
|
22660
|
+
box-shadow: var(--shadow-2);
|
|
22661
|
+
height: auto;
|
|
22662
|
+
}
|
|
22634
22663
|
.rt-SliderRoot{
|
|
22635
22664
|
--slider-thumb-width: var(--space-3);
|
|
22636
22665
|
--slider-thumb-height: var(--space-2);
|