@kushagradhawan/kookie-ui 0.1.33 → 0.1.35
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 +684 -205
- package/dist/cjs/components/_internal/base-button.d.ts.map +1 -1
- package/dist/cjs/components/_internal/base-button.js +1 -1
- package/dist/cjs/components/_internal/base-button.js.map +3 -3
- package/dist/cjs/components/chatbar.d.ts +205 -0
- package/dist/cjs/components/chatbar.d.ts.map +1 -0
- package/dist/cjs/components/chatbar.js +2 -0
- package/dist/cjs/components/chatbar.js.map +7 -0
- package/dist/cjs/components/icon-button.d.ts.map +1 -1
- package/dist/cjs/components/icon-button.js +2 -2
- package/dist/cjs/components/icon-button.js.map +3 -3
- package/dist/cjs/components/icons.d.ts +6 -1
- package/dist/cjs/components/icons.d.ts.map +1 -1
- package/dist/cjs/components/icons.js +1 -1
- package/dist/cjs/components/icons.js.map +3 -3
- package/dist/cjs/components/index.d.ts +3 -0
- package/dist/cjs/components/index.d.ts.map +1 -1
- package/dist/cjs/components/index.js +1 -1
- package/dist/cjs/components/index.js.map +3 -3
- package/dist/cjs/components/popover.d.ts +13 -1
- package/dist/cjs/components/popover.d.ts.map +1 -1
- package/dist/cjs/components/popover.js +1 -1
- package/dist/cjs/components/popover.js.map +3 -3
- package/dist/cjs/components/sheet.d.ts +82 -0
- package/dist/cjs/components/sheet.d.ts.map +1 -0
- package/dist/cjs/components/sheet.js +2 -0
- package/dist/cjs/components/sheet.js.map +7 -0
- package/dist/cjs/components/shell.d.ts +180 -0
- package/dist/cjs/components/shell.d.ts.map +1 -0
- package/dist/cjs/components/shell.js +2 -0
- package/dist/cjs/components/shell.js.map +7 -0
- package/dist/cjs/components/sidebar.d.ts +4 -33
- 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/skeleton.d.ts.map +1 -1
- package/dist/cjs/components/skeleton.js +1 -1
- package/dist/cjs/components/skeleton.js.map +2 -2
- package/dist/cjs/helpers/inert.d.ts +1 -1
- package/dist/cjs/helpers/inert.d.ts.map +1 -1
- package/dist/cjs/helpers/inert.js +1 -1
- package/dist/cjs/helpers/inert.js.map +2 -2
- package/dist/esm/components/_internal/base-button.d.ts.map +1 -1
- package/dist/esm/components/_internal/base-button.js +1 -1
- package/dist/esm/components/_internal/base-button.js.map +3 -3
- package/dist/esm/components/chatbar.d.ts +205 -0
- package/dist/esm/components/chatbar.d.ts.map +1 -0
- package/dist/esm/components/chatbar.js +2 -0
- package/dist/esm/components/chatbar.js.map +7 -0
- package/dist/esm/components/icon-button.d.ts.map +1 -1
- package/dist/esm/components/icon-button.js +2 -2
- package/dist/esm/components/icon-button.js.map +3 -3
- package/dist/esm/components/icons.d.ts +6 -1
- package/dist/esm/components/icons.d.ts.map +1 -1
- package/dist/esm/components/icons.js +1 -1
- package/dist/esm/components/icons.js.map +3 -3
- package/dist/esm/components/index.d.ts +3 -0
- package/dist/esm/components/index.d.ts.map +1 -1
- package/dist/esm/components/index.js +1 -1
- package/dist/esm/components/index.js.map +3 -3
- package/dist/esm/components/popover.d.ts +13 -1
- package/dist/esm/components/popover.d.ts.map +1 -1
- package/dist/esm/components/popover.js +1 -1
- package/dist/esm/components/popover.js.map +3 -3
- package/dist/esm/components/sheet.d.ts +82 -0
- package/dist/esm/components/sheet.d.ts.map +1 -0
- package/dist/esm/components/sheet.js +2 -0
- package/dist/esm/components/sheet.js.map +7 -0
- package/dist/esm/components/shell.d.ts +180 -0
- package/dist/esm/components/shell.d.ts.map +1 -0
- package/dist/esm/components/shell.js +2 -0
- package/dist/esm/components/shell.js.map +7 -0
- package/dist/esm/components/sidebar.d.ts +4 -33
- 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/skeleton.d.ts.map +1 -1
- package/dist/esm/components/skeleton.js.map +2 -2
- package/dist/esm/helpers/inert.d.ts +1 -1
- package/dist/esm/helpers/inert.d.ts.map +1 -1
- package/dist/esm/helpers/inert.js +1 -1
- package/dist/esm/helpers/inert.js.map +2 -2
- package/package.json +2 -1
- package/src/components/_internal/base-button.tsx +8 -0
- package/src/components/_internal/base-card.css +4 -4
- package/src/components/_internal/base-dialog.css +3 -41
- package/src/components/_internal/base-menu.css +2 -2
- package/src/components/_internal/base-sidebar-menu.css +3 -3
- package/src/components/accordion.css +2 -2
- package/src/components/animations.css +65 -81
- package/src/components/chatbar.css +214 -0
- package/src/components/chatbar.tsx +1195 -0
- package/src/components/icon-button.tsx +11 -0
- package/src/components/icons.tsx +97 -2
- package/src/components/image.css +2 -2
- package/src/components/index.css +3 -0
- package/src/components/index.tsx +3 -0
- package/src/components/popover.css +45 -0
- package/src/components/popover.tsx +180 -2
- package/src/components/scroll-area.css +3 -3
- package/src/components/segmented-control.css +3 -3
- package/src/components/sheet.css +90 -0
- package/src/components/sheet.tsx +247 -0
- package/src/components/shell.css +137 -0
- package/src/components/shell.tsx +1032 -0
- package/src/components/sidebar.css +55 -268
- package/src/components/sidebar.tsx +40 -262
- package/src/components/skeleton.tsx +1 -2
- package/src/components/text-area.css +1 -0
- package/src/components/tooltip.css +2 -2
- package/src/helpers/inert.ts +3 -3
- package/src/styles/tokens/constants.css +6 -3
- package/src/styles/tokens/index.css +1 -0
- package/src/styles/tokens/transition.css +91 -46
- package/styles.css +743 -241
- package/tokens/base.css +55 -33
- package/tokens.css +59 -36
package/styles.css
CHANGED
|
@@ -90,42 +90,64 @@
|
|
|
90
90
|
--duration-3: 100ms;
|
|
91
91
|
--duration-4: 150ms;
|
|
92
92
|
--duration-5: 200ms;
|
|
93
|
-
--duration-spring-1:
|
|
94
|
-
--duration-spring-2:
|
|
95
|
-
--duration-spring-3:
|
|
96
|
-
--ease-1: ease-
|
|
97
|
-
--ease-2: ease-
|
|
98
|
-
--ease-3:
|
|
99
|
-
--ease-4:
|
|
100
|
-
--ease-5:
|
|
93
|
+
--duration-spring-1: 100ms;
|
|
94
|
+
--duration-spring-2: 150ms;
|
|
95
|
+
--duration-spring-3: 200ms;
|
|
96
|
+
--ease-1: var(--ease-spring-1);
|
|
97
|
+
--ease-2: var(--ease-spring-2);
|
|
98
|
+
--ease-3: var(--ease-spring-3);
|
|
99
|
+
--ease-4: var(--ease-spring-1);
|
|
100
|
+
--ease-5: var(--ease-spring-2);
|
|
101
101
|
--ease-spring-1: cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
102
102
|
--ease-spring-2: cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
103
103
|
--ease-spring-3: cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
104
|
-
--transition-fast: var(--duration-
|
|
105
|
-
--transition-standard: var(--duration-
|
|
106
|
-
--transition-slow: var(--duration-
|
|
107
|
-
--transition-spring-fast: var(--duration-
|
|
108
|
-
--transition-spring-standard: var(--duration-
|
|
109
|
-
--transition-spring-slow: var(--duration-
|
|
110
|
-
--transition-spring-bounce: var(--duration-
|
|
111
|
-
--transition-spring-elastic: var(--duration-
|
|
112
|
-
--
|
|
113
|
-
--
|
|
114
|
-
--
|
|
115
|
-
--
|
|
116
|
-
--
|
|
117
|
-
--
|
|
118
|
-
--
|
|
119
|
-
--
|
|
120
|
-
--
|
|
121
|
-
--
|
|
122
|
-
--
|
|
123
|
-
--
|
|
124
|
-
--
|
|
125
|
-
--
|
|
126
|
-
--
|
|
127
|
-
--
|
|
128
|
-
--
|
|
104
|
+
--transition-fast: var(--motion-duration-micro) var(--motion-ease-standard);
|
|
105
|
+
--transition-standard: var(--motion-duration-small) var(--motion-ease-standard);
|
|
106
|
+
--transition-slow: var(--motion-duration-medium) var(--motion-ease-smooth);
|
|
107
|
+
--transition-spring-fast: var(--motion-duration-micro) var(--motion-spring-snappy);
|
|
108
|
+
--transition-spring-standard: var(--motion-duration-small) var(--motion-spring-snappy);
|
|
109
|
+
--transition-spring-slow: var(--motion-duration-medium) var(--motion-spring-snappy);
|
|
110
|
+
--transition-spring-bounce: var(--motion-duration-small) var(--motion-spring-bounce);
|
|
111
|
+
--transition-spring-elastic: var(--motion-duration-medium) var(--motion-spring-elastic);
|
|
112
|
+
--motion-duration-micro: 75ms;
|
|
113
|
+
--motion-duration-small: 150ms;
|
|
114
|
+
--motion-duration-medium: 250ms;
|
|
115
|
+
--motion-duration-large: 350ms;
|
|
116
|
+
--motion-ease-standard: ease-in-out;
|
|
117
|
+
--motion-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
|
|
118
|
+
--motion-ease-anticipate: cubic-bezier(0.36, 0, 0.66, -0.56);
|
|
119
|
+
--motion-ease-follow: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
120
|
+
--motion-spring-snappy: var(--ease-spring-1);
|
|
121
|
+
--motion-spring-bounce: var(--ease-spring-2);
|
|
122
|
+
--motion-spring-elastic: var(--ease-spring-3);
|
|
123
|
+
--motion-stagger-1: 15ms;
|
|
124
|
+
--motion-stagger-2: 30ms;
|
|
125
|
+
--motion-stagger-3: 45ms;
|
|
126
|
+
--spring-snappy-mass: 1;
|
|
127
|
+
--spring-snappy-stiffness: 280;
|
|
128
|
+
--spring-snappy-damping: 24;
|
|
129
|
+
--spring-snappy-initial-velocity: 0;
|
|
130
|
+
--spring-smooth-mass: 1;
|
|
131
|
+
--spring-smooth-stiffness: 200;
|
|
132
|
+
--spring-smooth-damping: 30;
|
|
133
|
+
--spring-smooth-initial-velocity: 0;
|
|
134
|
+
--transition-button: background var(--motion-duration-small) var(--motion-ease-standard), box-shadow var(--motion-duration-small) var(--motion-ease-standard), backdrop-filter var(--motion-duration-small) var(--motion-ease-standard), transform var(--motion-duration-micro) var(--motion-spring-snappy), padding var(--motion-duration-micro) var(--motion-ease-standard);
|
|
135
|
+
--transition-text-field: background var(--motion-duration-small) var(--motion-ease-standard), box-shadow var(--motion-duration-small) var(--motion-ease-standard);
|
|
136
|
+
--transition-select: background var(--motion-duration-small) var(--motion-ease-standard), box-shadow var(--motion-duration-small) var(--motion-ease-standard);
|
|
137
|
+
--transition-badge: background var(--motion-duration-small) var(--motion-ease-standard), box-shadow var(--motion-duration-small) var(--motion-ease-standard), padding var(--motion-duration-micro) var(--motion-ease-standard);
|
|
138
|
+
--transition-card: background-color var(--motion-duration-small) var(--motion-ease-standard), box-shadow var(--motion-duration-small) var(--motion-ease-standard), top var(--motion-duration-small) var(--motion-ease-standard);
|
|
139
|
+
--transition-tabs: color var(--motion-duration-micro) var(--motion-ease-standard), background-color var(--motion-duration-micro) var(--motion-ease-standard), font-weight var(--motion-duration-small) var(--motion-ease-standard), letter-spacing var(--motion-duration-small) var(--motion-ease-standard), word-spacing var(--motion-duration-small) var(--motion-ease-standard), transform var(--motion-duration-micro) var(--motion-spring-snappy);
|
|
140
|
+
--transition-segmented-control: opacity var(--motion-duration-small) var(--motion-ease-standard), transform var(--motion-duration-small) var(--motion-spring-snappy), background-color var(--motion-duration-small) var(--motion-ease-standard);
|
|
141
|
+
--transition-menu: background var(--motion-duration-micro) var(--motion-ease-standard), color var(--motion-duration-small) var(--motion-ease-standard);
|
|
142
|
+
--transition-checkbox: background-color var(--motion-duration-small) var(--motion-ease-standard), box-shadow var(--motion-duration-small) var(--motion-ease-standard), color var(--motion-duration-micro) var(--motion-ease-standard);
|
|
143
|
+
--transition-radio: background-color var(--motion-duration-small) var(--motion-ease-standard), box-shadow var(--motion-duration-small) var(--motion-ease-standard), color var(--motion-duration-micro) var(--motion-ease-standard);
|
|
144
|
+
--transition-focus: outline var(--motion-duration-small) var(--motion-ease-standard), outline-offset var(--motion-duration-small) var(--motion-ease-standard);
|
|
145
|
+
--transition-progress: transform var(--motion-duration-small) var(--motion-ease-standard);
|
|
146
|
+
--transition-accordion-content: height var(--motion-duration-small) var(--motion-spring-snappy), opacity var(--motion-duration-small) var(--motion-spring-snappy), transform var(--motion-duration-small) var(--motion-spring-snappy);
|
|
147
|
+
--transition-accordion-trigger: background-color var(--motion-duration-small) var(--motion-spring-snappy), transform var(--motion-duration-micro) var(--motion-spring-snappy);
|
|
148
|
+
--transition-accordion-trigger-active: transform var(--motion-duration-micro) var(--motion-spring-bounce);
|
|
149
|
+
--transition-spring-gpu: transform var(--motion-duration-small) var(--motion-spring-snappy), opacity var(--motion-duration-small) var(--motion-spring-snappy);
|
|
150
|
+
--transition-spring-gpu-fast: transform var(--motion-duration-micro) var(--motion-spring-snappy), opacity var(--motion-duration-micro) var(--motion-spring-snappy);
|
|
129
151
|
--font-size-0: calc(10px * var(--scaling));
|
|
130
152
|
--font-size-1: calc(12px * var(--scaling));
|
|
131
153
|
--font-size-2: calc(14px * var(--scaling));
|
|
@@ -240,7 +262,7 @@
|
|
|
240
262
|
--scrollarea-scrollbar-vertical-margin-bottom: var(--space-1);
|
|
241
263
|
--scrollarea-scrollbar-vertical-margin-left: var(--space-1);
|
|
242
264
|
--scrollarea-scrollbar-vertical-margin-right: var(--space-1);
|
|
243
|
-
--segmented-control-transition-duration: var(--duration-
|
|
265
|
+
--segmented-control-transition-duration: var(--motion-duration-micro);
|
|
244
266
|
--spinner-animation-duration: 800ms;
|
|
245
267
|
--spinner-opacity: 0.65;
|
|
246
268
|
color: var(--gray-12);
|
|
@@ -3509,11 +3531,11 @@
|
|
|
3509
3531
|
--surface-opacity-light: var(--opacity-5);
|
|
3510
3532
|
--surface-opacity-heavy: var(--opacity-6);
|
|
3511
3533
|
--surface-opacity-dark: var(--opacity-7);
|
|
3512
|
-
--dialog-opacity: var(--opacity-
|
|
3534
|
+
--dialog-opacity: var(--opacity-9);
|
|
3513
3535
|
--dialog-opacity-percentage: calc(var(--dialog-opacity) * 100%);
|
|
3514
|
-
--panel-opacity: var(--opacity-
|
|
3536
|
+
--panel-opacity: var(--opacity-8);
|
|
3515
3537
|
--panel-opacity-percentage: calc(var(--panel-opacity) * 100%);
|
|
3516
|
-
--surface-opacity: var(--opacity-
|
|
3538
|
+
--surface-opacity: var(--opacity-7);
|
|
3517
3539
|
--surface-opacity-percentage: calc(var(--surface-opacity) * 100%);
|
|
3518
3540
|
--border-width-standard: 1px;
|
|
3519
3541
|
--classic-elevation-offset: -0.02em;
|
|
@@ -3588,6 +3610,7 @@
|
|
|
3588
3610
|
--position-negative-full: -100%;
|
|
3589
3611
|
--position-zero: 0%;
|
|
3590
3612
|
--transition-background-blur: background-color var(--duration-2) var(--ease-1);
|
|
3613
|
+
--sheet-slide-distance: 50%;
|
|
3591
3614
|
--spacing-multiplier-small: 0.5;
|
|
3592
3615
|
--spacing-multiplier-medium: 0.75;
|
|
3593
3616
|
--spacing-multiplier-large: 1.25;
|
|
@@ -3642,8 +3665,6 @@
|
|
|
3642
3665
|
--avatar-image-active-filter: brightness(0.9) saturate(1.1);
|
|
3643
3666
|
--base-button-solid-high-contrast-hover-filter: contrast(0.88) saturate(1.1) brightness(1.1);
|
|
3644
3667
|
--segmented-control-indicator-background-color: var(--color-background);
|
|
3645
|
-
--sidebar-icon-width-1: calc(var(--space-9) + var(--space-1));
|
|
3646
|
-
--sidebar-icon-width-2: calc(var(--space-9) + var(--space-3));
|
|
3647
3668
|
--slider-range-high-contrast-background-image: linear-gradient(var(--black-a8), var(--black-a8));
|
|
3648
3669
|
}
|
|
3649
3670
|
@supports (color: color(display-p3 1 1 1)) {
|
|
@@ -5188,65 +5209,81 @@
|
|
|
5188
5209
|
@keyframes rt-slide-from-top {
|
|
5189
5210
|
from{
|
|
5190
5211
|
transform: translateY(4px) scale(0.97);
|
|
5212
|
+
opacity: 0.5;
|
|
5191
5213
|
}
|
|
5192
5214
|
to{
|
|
5193
5215
|
transform: translateY(0) scale(1);
|
|
5216
|
+
opacity: 1;
|
|
5194
5217
|
}
|
|
5195
5218
|
}
|
|
5196
5219
|
@keyframes rt-slide-to-top {
|
|
5197
5220
|
from{
|
|
5198
5221
|
transform: translateY(0) scale(1);
|
|
5222
|
+
opacity: 1;
|
|
5199
5223
|
}
|
|
5200
5224
|
to{
|
|
5201
5225
|
transform: translateY(4px) scale(0.97);
|
|
5226
|
+
opacity: 0.5;
|
|
5202
5227
|
}
|
|
5203
5228
|
}
|
|
5204
5229
|
@keyframes rt-slide-from-bottom {
|
|
5205
5230
|
from{
|
|
5206
5231
|
transform: translateY(-4px) scale(0.97);
|
|
5232
|
+
opacity: 0.5;
|
|
5207
5233
|
}
|
|
5208
5234
|
to{
|
|
5209
5235
|
transform: translateY(0) scale(1);
|
|
5236
|
+
opacity: 1;
|
|
5210
5237
|
}
|
|
5211
5238
|
}
|
|
5212
5239
|
@keyframes rt-slide-to-bottom {
|
|
5213
5240
|
from{
|
|
5214
5241
|
transform: translateY(0) scale(1);
|
|
5242
|
+
opacity: 1;
|
|
5215
5243
|
}
|
|
5216
5244
|
to{
|
|
5217
5245
|
transform: translateY(-4px) scale(0.97);
|
|
5246
|
+
opacity: 0.5;
|
|
5218
5247
|
}
|
|
5219
5248
|
}
|
|
5220
5249
|
@keyframes rt-slide-from-left {
|
|
5221
5250
|
from{
|
|
5222
5251
|
transform: translateX(4px) scale(0.97);
|
|
5252
|
+
opacity: 0.5;
|
|
5223
5253
|
}
|
|
5224
5254
|
to{
|
|
5225
5255
|
transform: translateX(0) scale(1);
|
|
5256
|
+
opacity: 1;
|
|
5226
5257
|
}
|
|
5227
5258
|
}
|
|
5228
5259
|
@keyframes rt-slide-to-left {
|
|
5229
5260
|
from{
|
|
5230
5261
|
transform: translateX(0) scale(1);
|
|
5262
|
+
opacity: 1;
|
|
5231
5263
|
}
|
|
5232
5264
|
to{
|
|
5233
5265
|
transform: translateX(4px) scale(0.97);
|
|
5266
|
+
opacity: 0.5;
|
|
5234
5267
|
}
|
|
5235
5268
|
}
|
|
5236
5269
|
@keyframes rt-slide-from-right {
|
|
5237
5270
|
from{
|
|
5238
5271
|
transform: translateX(-4px) scale(0.97);
|
|
5272
|
+
opacity: 0.5;
|
|
5239
5273
|
}
|
|
5240
5274
|
to{
|
|
5241
5275
|
transform: translateX(0) scale(1);
|
|
5276
|
+
opacity: 1;
|
|
5242
5277
|
}
|
|
5243
5278
|
}
|
|
5244
5279
|
@keyframes rt-slide-to-right {
|
|
5245
5280
|
from{
|
|
5246
5281
|
transform: translateX(0) scale(1);
|
|
5282
|
+
opacity: 1;
|
|
5247
5283
|
}
|
|
5248
5284
|
to{
|
|
5249
5285
|
transform: translateX(-4px) scale(0.97);
|
|
5286
|
+
opacity: 0.5;
|
|
5250
5287
|
}
|
|
5251
5288
|
}
|
|
5252
5289
|
@keyframes rt-tab-indicator-appear {
|
|
@@ -5264,10 +5301,10 @@
|
|
|
5264
5301
|
}
|
|
5265
5302
|
@media (prefers-reduced-motion: no-preference) {
|
|
5266
5303
|
.rt-PopperContent{
|
|
5267
|
-
animation-timing-function: var(--
|
|
5304
|
+
animation-timing-function: var(--motion-spring-snappy);
|
|
5268
5305
|
}
|
|
5269
5306
|
.rt-PopperContent:where([data-state='open']){
|
|
5270
|
-
animation-duration: var(--duration-
|
|
5307
|
+
animation-duration: var(--motion-duration-small);
|
|
5271
5308
|
}
|
|
5272
5309
|
.rt-PopperContent:where([data-state='open']):where([data-side='top']){
|
|
5273
5310
|
animation-name: rt-slide-from-top, rt-fade-in;
|
|
@@ -5285,7 +5322,7 @@
|
|
|
5285
5322
|
animation-name: rt-slide-from-bottom, rt-fade-in;
|
|
5286
5323
|
}
|
|
5287
5324
|
.rt-PopperContent:where([data-state='closed']){
|
|
5288
|
-
animation-duration: var(--duration-
|
|
5325
|
+
animation-duration: var(--motion-duration-small);
|
|
5289
5326
|
}
|
|
5290
5327
|
.rt-PopperContent:where([data-state='closed']):where([data-side='top']){
|
|
5291
5328
|
animation-name: rt-slide-to-top, rt-fade-out;
|
|
@@ -5303,7 +5340,99 @@
|
|
|
5303
5340
|
animation-name: rt-slide-to-bottom, rt-fade-out;
|
|
5304
5341
|
}
|
|
5305
5342
|
.rt-BaseTabListTrigger:where([data-state='active'], [data-active])::before{
|
|
5306
|
-
animation: rt-tab-indicator-appear var(--duration-
|
|
5343
|
+
animation: rt-tab-indicator-appear var(--motion-duration-small) var(--motion-spring-snappy);
|
|
5344
|
+
}
|
|
5345
|
+
}
|
|
5346
|
+
@keyframes rt-dialog-overlay-no-op {
|
|
5347
|
+
from{
|
|
5348
|
+
opacity: 1;
|
|
5349
|
+
}
|
|
5350
|
+
to{
|
|
5351
|
+
opacity: 1;
|
|
5352
|
+
}
|
|
5353
|
+
}
|
|
5354
|
+
@keyframes rt-dialog-content-show {
|
|
5355
|
+
from{
|
|
5356
|
+
opacity: 0;
|
|
5357
|
+
transform: translateY(5px) scale(0.97);
|
|
5358
|
+
}
|
|
5359
|
+
to{
|
|
5360
|
+
opacity: 1;
|
|
5361
|
+
transform: translateY(0px) scale(1);
|
|
5362
|
+
}
|
|
5363
|
+
}
|
|
5364
|
+
@keyframes rt-dialog-content-hide {
|
|
5365
|
+
from{
|
|
5366
|
+
opacity: 1;
|
|
5367
|
+
transform: translateY(0px) scale(1);
|
|
5368
|
+
}
|
|
5369
|
+
to{
|
|
5370
|
+
opacity: 0;
|
|
5371
|
+
transform: translateY(5px) scale(0.99);
|
|
5372
|
+
}
|
|
5373
|
+
}
|
|
5374
|
+
@keyframes rt-sheet-open-from-start {
|
|
5375
|
+
from{
|
|
5376
|
+
transform: translate3d(calc(-1 * var(--sheet-slide-distance)), 0, 0);
|
|
5377
|
+
}
|
|
5378
|
+
to{
|
|
5379
|
+
transform: translate3d(0, 0, 0);
|
|
5380
|
+
}
|
|
5381
|
+
}
|
|
5382
|
+
@keyframes rt-sheet-close-to-start {
|
|
5383
|
+
from{
|
|
5384
|
+
transform: translate3d(0, 0, 0);
|
|
5385
|
+
}
|
|
5386
|
+
to{
|
|
5387
|
+
transform: translate3d(calc(-1 * var(--sheet-slide-distance)), 0, 0);
|
|
5388
|
+
}
|
|
5389
|
+
}
|
|
5390
|
+
@keyframes rt-sheet-open-from-end {
|
|
5391
|
+
from{
|
|
5392
|
+
transform: translate3d(var(--sheet-slide-distance), 0, 0);
|
|
5393
|
+
}
|
|
5394
|
+
to{
|
|
5395
|
+
transform: translate3d(0, 0, 0);
|
|
5396
|
+
}
|
|
5397
|
+
}
|
|
5398
|
+
@keyframes rt-sheet-close-to-end {
|
|
5399
|
+
from{
|
|
5400
|
+
transform: translate3d(0, 0, 0);
|
|
5401
|
+
}
|
|
5402
|
+
to{
|
|
5403
|
+
transform: translate3d(var(--sheet-slide-distance), 0, 0);
|
|
5404
|
+
}
|
|
5405
|
+
}
|
|
5406
|
+
@keyframes rt-sheet-open-from-top {
|
|
5407
|
+
from{
|
|
5408
|
+
transform: translate3d(0, calc(-1 * var(--sheet-slide-distance)), 0);
|
|
5409
|
+
}
|
|
5410
|
+
to{
|
|
5411
|
+
transform: translate3d(0, 0, 0);
|
|
5412
|
+
}
|
|
5413
|
+
}
|
|
5414
|
+
@keyframes rt-sheet-close-to-top {
|
|
5415
|
+
from{
|
|
5416
|
+
transform: translate3d(0, 0, 0);
|
|
5417
|
+
}
|
|
5418
|
+
to{
|
|
5419
|
+
transform: translate3d(0, calc(-1 * var(--sheet-slide-distance)), 0);
|
|
5420
|
+
}
|
|
5421
|
+
}
|
|
5422
|
+
@keyframes rt-sheet-open-from-bottom {
|
|
5423
|
+
from{
|
|
5424
|
+
transform: translate3d(0, var(--sheet-slide-distance), 0);
|
|
5425
|
+
}
|
|
5426
|
+
to{
|
|
5427
|
+
transform: translate3d(0, 0, 0);
|
|
5428
|
+
}
|
|
5429
|
+
}
|
|
5430
|
+
@keyframes rt-sheet-close-to-bottom {
|
|
5431
|
+
from{
|
|
5432
|
+
transform: translate3d(0, 0, 0);
|
|
5433
|
+
}
|
|
5434
|
+
to{
|
|
5435
|
+
transform: translate3d(0, var(--sheet-slide-distance), 0);
|
|
5307
5436
|
}
|
|
5308
5437
|
}
|
|
5309
5438
|
.rt-Box{
|
|
@@ -6324,10 +6453,10 @@
|
|
|
6324
6453
|
font-size: var(--font-size-4);
|
|
6325
6454
|
}
|
|
6326
6455
|
:where(.rt-AccordionContent[data-state="open"]){
|
|
6327
|
-
animation: rt-slide-down var(--duration-
|
|
6456
|
+
animation: rt-slide-down var(--motion-duration-small) var(--motion-spring-snappy);
|
|
6328
6457
|
}
|
|
6329
6458
|
:where(.rt-AccordionContent[data-state="closed"]){
|
|
6330
|
-
animation: rt-slide-up var(--duration-
|
|
6459
|
+
animation: rt-slide-up var(--motion-duration-micro) var(--motion-spring-snappy);
|
|
6331
6460
|
}
|
|
6332
6461
|
@keyframes rt-slide-down {
|
|
6333
6462
|
0%{
|
|
@@ -6674,36 +6803,8 @@
|
|
|
6674
6803
|
}
|
|
6675
6804
|
}
|
|
6676
6805
|
@media (prefers-reduced-motion: no-preference) {
|
|
6677
|
-
@keyframes rt-dialog-overlay-no-op {
|
|
6678
|
-
from{
|
|
6679
|
-
opacity: 1;
|
|
6680
|
-
}
|
|
6681
|
-
to{
|
|
6682
|
-
opacity: 1;
|
|
6683
|
-
}
|
|
6684
|
-
}
|
|
6685
|
-
@keyframes rt-dialog-content-show {
|
|
6686
|
-
from{
|
|
6687
|
-
opacity: 0;
|
|
6688
|
-
transform: translateY(5px) scale(0.97);
|
|
6689
|
-
}
|
|
6690
|
-
to{
|
|
6691
|
-
opacity: 1;
|
|
6692
|
-
transform: translateY(0px) scale(1);
|
|
6693
|
-
}
|
|
6694
|
-
}
|
|
6695
|
-
@keyframes rt-dialog-content-hide {
|
|
6696
|
-
from{
|
|
6697
|
-
opacity: 1;
|
|
6698
|
-
transform: translateY(0px) scale(1);
|
|
6699
|
-
}
|
|
6700
|
-
to{
|
|
6701
|
-
opacity: 0;
|
|
6702
|
-
transform: translateY(5px) scale(0.99);
|
|
6703
|
-
}
|
|
6704
|
-
}
|
|
6705
6806
|
.rt-BaseDialogOverlay:where([data-state='closed']){
|
|
6706
|
-
animation: rt-dialog-overlay-no-op var(--duration-
|
|
6807
|
+
animation: rt-dialog-overlay-no-op var(--motion-duration-small) var(--motion-spring-snappy);
|
|
6707
6808
|
}
|
|
6708
6809
|
.rt-BaseDialogOverlay:where([data-state='open'])::before{
|
|
6709
6810
|
animation: rt-fade-in var(--duration-5) var(--ease-spring-1);
|
|
@@ -6713,11 +6814,11 @@
|
|
|
6713
6814
|
animation: rt-fade-out var(--duration-4) var(--ease-spring-1);
|
|
6714
6815
|
}
|
|
6715
6816
|
.rt-BaseDialogContent:where([data-state='open']){
|
|
6716
|
-
animation: rt-dialog-content-show var(--duration-
|
|
6817
|
+
animation: rt-dialog-content-show var(--motion-duration-medium) var(--motion-spring-snappy);
|
|
6717
6818
|
}
|
|
6718
6819
|
.rt-BaseDialogContent:where([data-state='closed']){
|
|
6719
6820
|
opacity: 0;
|
|
6720
|
-
animation: rt-dialog-content-hide var(--duration-
|
|
6821
|
+
animation: rt-dialog-content-hide var(--motion-duration-small) var(--motion-spring-snappy);
|
|
6721
6822
|
}
|
|
6722
6823
|
}
|
|
6723
6824
|
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
|
|
@@ -10343,16 +10444,16 @@
|
|
|
10343
10444
|
}
|
|
10344
10445
|
.rt-BaseCard:where(.rt-variant-soft){
|
|
10345
10446
|
--card-border-width: 0px;
|
|
10346
|
-
--card-background-color: var(--gray-
|
|
10447
|
+
--card-background-color: var(--gray-3);
|
|
10347
10448
|
}
|
|
10348
10449
|
:where([data-panel-background='translucent'], [data-material='translucent']) .rt-BaseCard:where(.rt-variant-soft){
|
|
10349
|
-
--card-background-color: color-mix(in srgb, var(--gray-
|
|
10450
|
+
--card-background-color: color-mix(in srgb, var(--gray-a3), var(--gray-3) 60%);
|
|
10350
10451
|
}
|
|
10351
10452
|
.rt-BaseCard:where(.rt-variant-soft):where([data-panel-background='solid'], [data-material='solid']){
|
|
10352
|
-
--card-background-color: var(--gray-
|
|
10453
|
+
--card-background-color: var(--gray-3);
|
|
10353
10454
|
}
|
|
10354
10455
|
.rt-BaseCard:where(.rt-variant-soft):where([data-panel-background='translucent'], [data-material='translucent']){
|
|
10355
|
-
--card-background-color: color-mix(in srgb, var(--gray-
|
|
10456
|
+
--card-background-color: color-mix(in srgb, var(--gray-a3), var(--gray-3) 60%);
|
|
10356
10457
|
}
|
|
10357
10458
|
.rt-BaseCard:where(.rt-variant-soft)::before{
|
|
10358
10459
|
background-color: var(--card-background-color);
|
|
@@ -12411,10 +12512,10 @@
|
|
|
12411
12512
|
}
|
|
12412
12513
|
}
|
|
12413
12514
|
:where([data-panel-background='translucent']) :is(.rt-BaseMenuContent:where(.rt-variant-solid, .rt-variant-soft) :where(.rt-BaseMenuSubTrigger)){
|
|
12414
|
-
transition: background var(--duration-
|
|
12515
|
+
transition: background var(--motion-duration-micro) var(--motion-ease-standard), color var(--motion-duration-small) var(--motion-ease-standard);
|
|
12415
12516
|
}
|
|
12416
12517
|
:where([data-panel-background='translucent']) :is(.rt-BaseMenuContent:where(.rt-variant-solid, .rt-variant-soft) :where(.rt-BaseMenuItem)){
|
|
12417
|
-
transition: background var(--duration-
|
|
12518
|
+
transition: background var(--motion-duration-micro) var(--motion-ease-standard), color var(--motion-duration-small) var(--motion-ease-standard);
|
|
12418
12519
|
}
|
|
12419
12520
|
.rt-BaseMenuContent:where(.rt-variant-solid) :where(.rt-BaseMenuSubTrigger[data-state='open']){
|
|
12420
12521
|
background-color: var(--gray-3);
|
|
@@ -14024,7 +14125,7 @@
|
|
|
14024
14125
|
}
|
|
14025
14126
|
.rt-Image:where(:any-link, button, label){
|
|
14026
14127
|
cursor: pointer;
|
|
14027
|
-
transition: var(--transition-card), filter var(--duration-
|
|
14128
|
+
transition: var(--transition-card), filter var(--motion-duration-small) var(--motion-ease-standard);
|
|
14028
14129
|
}
|
|
14029
14130
|
@media (hover: hover) {
|
|
14030
14131
|
.rt-Image:where(:any-link, button, label):where(:hover){
|
|
@@ -14041,7 +14142,7 @@
|
|
|
14041
14142
|
}
|
|
14042
14143
|
:where(:any-link, button, label){
|
|
14043
14144
|
cursor: pointer;
|
|
14044
|
-
transition: var(--transition-card), filter var(--duration-
|
|
14145
|
+
transition: var(--transition-card), filter var(--motion-duration-small) var(--motion-ease-standard);
|
|
14045
14146
|
}
|
|
14046
14147
|
@media (hover: hover) {
|
|
14047
14148
|
:where(:any-link, button, label):where(:hover){
|
|
@@ -15082,6 +15183,7 @@
|
|
|
15082
15183
|
--inset-padding-right: var(--popover-content-padding);
|
|
15083
15184
|
--inset-padding-bottom: var(--popover-content-padding);
|
|
15084
15185
|
--inset-padding-left: var(--popover-content-padding);
|
|
15186
|
+
--popover-toolbar-padding: var(--popover-content-padding);
|
|
15085
15187
|
padding: var(--popover-content-padding);
|
|
15086
15188
|
box-sizing: border-box;
|
|
15087
15189
|
transform-origin: var(--radix-popover-content-transform-origin);
|
|
@@ -15101,109 +15203,172 @@
|
|
|
15101
15203
|
-webkit-backdrop-filter: var(--backdrop-filter-panel);
|
|
15102
15204
|
backdrop-filter: var(--backdrop-filter-panel);
|
|
15103
15205
|
}
|
|
15206
|
+
.rt-PopoverContent:where([data-has-toolbar]){
|
|
15207
|
+
padding-top: var(--popover-toolbar-offset, var(--popover-content-padding));
|
|
15208
|
+
}
|
|
15209
|
+
.rt-PopoverToolbar{
|
|
15210
|
+
position: absolute;
|
|
15211
|
+
top: 0;
|
|
15212
|
+
left: 0;
|
|
15213
|
+
right: 0;
|
|
15214
|
+
z-index: 1;
|
|
15215
|
+
display: grid;
|
|
15216
|
+
grid-template-columns: 1fr auto 1fr;
|
|
15217
|
+
align-items: center;
|
|
15218
|
+
column-gap: var(--space-1);
|
|
15219
|
+
padding: var(--popover-toolbar-padding);
|
|
15220
|
+
background-color: var(--color-panel);
|
|
15221
|
+
}
|
|
15222
|
+
.rt-PopoverToolbarSection{
|
|
15223
|
+
display: flex;
|
|
15224
|
+
align-items: center;
|
|
15225
|
+
gap: var(--space-2);
|
|
15226
|
+
}
|
|
15227
|
+
.rt-PopoverToolbarLeft{
|
|
15228
|
+
justify-self: start;
|
|
15229
|
+
}
|
|
15230
|
+
.rt-PopoverToolbarCenter{
|
|
15231
|
+
grid-column: 2;
|
|
15232
|
+
justify-self: center;
|
|
15233
|
+
min-width: 0;
|
|
15234
|
+
text-align: center;
|
|
15235
|
+
}
|
|
15236
|
+
.rt-PopoverToolbarRight{
|
|
15237
|
+
justify-self: end;
|
|
15238
|
+
}
|
|
15239
|
+
.rt-PopoverToolbarTitle{
|
|
15240
|
+
display: inline-block;
|
|
15241
|
+
white-space: nowrap;
|
|
15242
|
+
overflow: hidden;
|
|
15243
|
+
text-overflow: ellipsis;
|
|
15244
|
+
}
|
|
15104
15245
|
.rt-PopoverContent:where(.rt-r-size-1){
|
|
15105
15246
|
--popover-content-padding: var(--space-5);
|
|
15247
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15106
15248
|
border-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-2)));
|
|
15107
15249
|
}
|
|
15108
15250
|
.rt-PopoverContent:where(.rt-r-size-2){
|
|
15109
15251
|
--popover-content-padding: var(--space-6);
|
|
15252
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15110
15253
|
border-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-3)));
|
|
15111
15254
|
}
|
|
15112
15255
|
.rt-PopoverContent:where(.rt-r-size-3){
|
|
15113
15256
|
--popover-content-padding: var(--space-7);
|
|
15257
|
+
--popover-toolbar-padding: var(--space-3);
|
|
15114
15258
|
border-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-4)));
|
|
15115
15259
|
}
|
|
15116
15260
|
.rt-PopoverContent:where(.rt-r-size-4){
|
|
15117
15261
|
--popover-content-padding: var(--space-8);
|
|
15262
|
+
--popover-toolbar-padding: var(--space-4);
|
|
15118
15263
|
border-radius: min(var(--radius-8), calc(var(--radius-4) + var(--space-5)));
|
|
15119
15264
|
}
|
|
15120
15265
|
@media (min-width: 520px){
|
|
15121
15266
|
.rt-PopoverContent:where(.xs\:rt-r-size-1){
|
|
15122
15267
|
--popover-content-padding: var(--space-5);
|
|
15268
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15123
15269
|
border-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-2)));
|
|
15124
15270
|
}
|
|
15125
15271
|
.rt-PopoverContent:where(.xs\:rt-r-size-2){
|
|
15126
15272
|
--popover-content-padding: var(--space-6);
|
|
15273
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15127
15274
|
border-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-3)));
|
|
15128
15275
|
}
|
|
15129
15276
|
.rt-PopoverContent:where(.xs\:rt-r-size-3){
|
|
15130
15277
|
--popover-content-padding: var(--space-7);
|
|
15278
|
+
--popover-toolbar-padding: var(--space-3);
|
|
15131
15279
|
border-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-4)));
|
|
15132
15280
|
}
|
|
15133
15281
|
.rt-PopoverContent:where(.xs\:rt-r-size-4){
|
|
15134
15282
|
--popover-content-padding: var(--space-8);
|
|
15283
|
+
--popover-toolbar-padding: var(--space-4);
|
|
15135
15284
|
border-radius: min(var(--radius-8), calc(var(--radius-4) + var(--space-5)));
|
|
15136
15285
|
}
|
|
15137
15286
|
}
|
|
15138
15287
|
@media (min-width: 768px){
|
|
15139
15288
|
.rt-PopoverContent:where(.sm\:rt-r-size-1){
|
|
15140
15289
|
--popover-content-padding: var(--space-5);
|
|
15290
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15141
15291
|
border-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-2)));
|
|
15142
15292
|
}
|
|
15143
15293
|
.rt-PopoverContent:where(.sm\:rt-r-size-2){
|
|
15144
15294
|
--popover-content-padding: var(--space-6);
|
|
15295
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15145
15296
|
border-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-3)));
|
|
15146
15297
|
}
|
|
15147
15298
|
.rt-PopoverContent:where(.sm\:rt-r-size-3){
|
|
15148
15299
|
--popover-content-padding: var(--space-7);
|
|
15300
|
+
--popover-toolbar-padding: var(--space-3);
|
|
15149
15301
|
border-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-4)));
|
|
15150
15302
|
}
|
|
15151
15303
|
.rt-PopoverContent:where(.sm\:rt-r-size-4){
|
|
15152
15304
|
--popover-content-padding: var(--space-8);
|
|
15305
|
+
--popover-toolbar-padding: var(--space-4);
|
|
15153
15306
|
border-radius: min(var(--radius-8), calc(var(--radius-4) + var(--space-5)));
|
|
15154
15307
|
}
|
|
15155
15308
|
}
|
|
15156
15309
|
@media (min-width: 1024px){
|
|
15157
15310
|
.rt-PopoverContent:where(.md\:rt-r-size-1){
|
|
15158
15311
|
--popover-content-padding: var(--space-5);
|
|
15312
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15159
15313
|
border-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-2)));
|
|
15160
15314
|
}
|
|
15161
15315
|
.rt-PopoverContent:where(.md\:rt-r-size-2){
|
|
15162
15316
|
--popover-content-padding: var(--space-6);
|
|
15317
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15163
15318
|
border-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-3)));
|
|
15164
15319
|
}
|
|
15165
15320
|
.rt-PopoverContent:where(.md\:rt-r-size-3){
|
|
15166
15321
|
--popover-content-padding: var(--space-7);
|
|
15322
|
+
--popover-toolbar-padding: var(--space-3);
|
|
15167
15323
|
border-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-4)));
|
|
15168
15324
|
}
|
|
15169
15325
|
.rt-PopoverContent:where(.md\:rt-r-size-4){
|
|
15170
15326
|
--popover-content-padding: var(--space-8);
|
|
15327
|
+
--popover-toolbar-padding: var(--space-4);
|
|
15171
15328
|
border-radius: min(var(--radius-8), calc(var(--radius-4) + var(--space-5)));
|
|
15172
15329
|
}
|
|
15173
15330
|
}
|
|
15174
15331
|
@media (min-width: 1280px){
|
|
15175
15332
|
.rt-PopoverContent:where(.lg\:rt-r-size-1){
|
|
15176
15333
|
--popover-content-padding: var(--space-5);
|
|
15334
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15177
15335
|
border-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-2)));
|
|
15178
15336
|
}
|
|
15179
15337
|
.rt-PopoverContent:where(.lg\:rt-r-size-2){
|
|
15180
15338
|
--popover-content-padding: var(--space-6);
|
|
15339
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15181
15340
|
border-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-3)));
|
|
15182
15341
|
}
|
|
15183
15342
|
.rt-PopoverContent:where(.lg\:rt-r-size-3){
|
|
15184
15343
|
--popover-content-padding: var(--space-7);
|
|
15344
|
+
--popover-toolbar-padding: var(--space-3);
|
|
15185
15345
|
border-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-4)));
|
|
15186
15346
|
}
|
|
15187
15347
|
.rt-PopoverContent:where(.lg\:rt-r-size-4){
|
|
15188
15348
|
--popover-content-padding: var(--space-8);
|
|
15349
|
+
--popover-toolbar-padding: var(--space-4);
|
|
15189
15350
|
border-radius: min(var(--radius-8), calc(var(--radius-4) + var(--space-5)));
|
|
15190
15351
|
}
|
|
15191
15352
|
}
|
|
15192
15353
|
@media (min-width: 1640px){
|
|
15193
15354
|
.rt-PopoverContent:where(.xl\:rt-r-size-1){
|
|
15194
15355
|
--popover-content-padding: var(--space-5);
|
|
15356
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15195
15357
|
border-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-2)));
|
|
15196
15358
|
}
|
|
15197
15359
|
.rt-PopoverContent:where(.xl\:rt-r-size-2){
|
|
15198
15360
|
--popover-content-padding: var(--space-6);
|
|
15361
|
+
--popover-toolbar-padding: var(--space-2);
|
|
15199
15362
|
border-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-3)));
|
|
15200
15363
|
}
|
|
15201
15364
|
.rt-PopoverContent:where(.xl\:rt-r-size-3){
|
|
15202
15365
|
--popover-content-padding: var(--space-7);
|
|
15366
|
+
--popover-toolbar-padding: var(--space-3);
|
|
15203
15367
|
border-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-4)));
|
|
15204
15368
|
}
|
|
15205
15369
|
.rt-PopoverContent:where(.xl\:rt-r-size-4){
|
|
15206
15370
|
--popover-content-padding: var(--space-8);
|
|
15371
|
+
--popover-toolbar-padding: var(--space-4);
|
|
15207
15372
|
border-radius: min(var(--radius-8), calc(var(--radius-4) + var(--space-5)));
|
|
15208
15373
|
}
|
|
15209
15374
|
}
|
|
@@ -16159,6 +16324,103 @@
|
|
|
16159
16324
|
.rt-RadioGroupItemInner{
|
|
16160
16325
|
min-width: 0;
|
|
16161
16326
|
}
|
|
16327
|
+
:where(.rt-SheetContent){
|
|
16328
|
+
position: fixed !important;
|
|
16329
|
+
width: var(--width, 90vw) !important;
|
|
16330
|
+
max-width: var(--max-width, 100vw) !important;
|
|
16331
|
+
height: 100vh !important;
|
|
16332
|
+
max-height: 100vh !important;
|
|
16333
|
+
margin: 0 !important;
|
|
16334
|
+
border-radius: 0 !important;
|
|
16335
|
+
will-change: transform;
|
|
16336
|
+
}
|
|
16337
|
+
:where(.rt-SheetContent[data-side='start']){
|
|
16338
|
+
top: 0 !important;
|
|
16339
|
+
bottom: 0 !important;
|
|
16340
|
+
left: 0 !important;
|
|
16341
|
+
right: auto !important;
|
|
16342
|
+
margin: 0 !important;
|
|
16343
|
+
border-start-start-radius: 0;
|
|
16344
|
+
border-end-start-radius: 0;
|
|
16345
|
+
}
|
|
16346
|
+
:where(.rt-SheetContent[data-side='end']){
|
|
16347
|
+
top: 0 !important;
|
|
16348
|
+
bottom: 0 !important;
|
|
16349
|
+
right: 0 !important;
|
|
16350
|
+
left: auto !important;
|
|
16351
|
+
margin: 0 !important;
|
|
16352
|
+
border-start-end-radius: 0;
|
|
16353
|
+
border-end-end-radius: 0;
|
|
16354
|
+
}
|
|
16355
|
+
:where(.rt-SheetContent[data-side='top']){
|
|
16356
|
+
top: 0 !important;
|
|
16357
|
+
left: 0 !important;
|
|
16358
|
+
right: 0 !important;
|
|
16359
|
+
bottom: auto !important;
|
|
16360
|
+
width: auto !important;
|
|
16361
|
+
max-width: none !important;
|
|
16362
|
+
height: var(--height, 75vh) !important;
|
|
16363
|
+
margin: 0 !important;
|
|
16364
|
+
border-start-start-radius: 0;
|
|
16365
|
+
border-start-end-radius: 0;
|
|
16366
|
+
}
|
|
16367
|
+
:where(.rt-SheetContent[data-side='bottom']){
|
|
16368
|
+
bottom: 0 !important;
|
|
16369
|
+
left: 0 !important;
|
|
16370
|
+
right: 0 !important;
|
|
16371
|
+
top: auto !important;
|
|
16372
|
+
width: auto !important;
|
|
16373
|
+
max-width: none !important;
|
|
16374
|
+
height: var(--height, 75vh) !important;
|
|
16375
|
+
margin: 0 !important;
|
|
16376
|
+
border-end-start-radius: 0;
|
|
16377
|
+
border-end-end-radius: 0;
|
|
16378
|
+
}
|
|
16379
|
+
:where(.rt-SheetOverlay)::before{
|
|
16380
|
+
opacity: 1;
|
|
16381
|
+
}
|
|
16382
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
16383
|
+
.rt-SheetContent:where([data-state='open']){
|
|
16384
|
+
animation-duration: var(--motion-duration-medium);
|
|
16385
|
+
animation-timing-function: var(--motion-spring-snappy);
|
|
16386
|
+
animation-fill-mode: both;
|
|
16387
|
+
}
|
|
16388
|
+
.rt-SheetContent:where([data-state='closed']){
|
|
16389
|
+
opacity: 1;
|
|
16390
|
+
animation-duration: var(--motion-duration-small);
|
|
16391
|
+
animation-timing-function: var(--motion-spring-snappy);
|
|
16392
|
+
animation-fill-mode: both;
|
|
16393
|
+
}
|
|
16394
|
+
.rt-SheetContent:where([data-state='open'][data-side='start']){
|
|
16395
|
+
animation-name: rt-sheet-open-from-start, rt-fade-in !important;
|
|
16396
|
+
}
|
|
16397
|
+
.rt-SheetContent:where([data-state='closed'][data-side='start']){
|
|
16398
|
+
animation-name: rt-sheet-close-to-start, rt-fade-out !important;
|
|
16399
|
+
}
|
|
16400
|
+
.rt-SheetContent:where([data-state='open'][data-side='end']){
|
|
16401
|
+
animation-name: rt-sheet-open-from-end, rt-fade-in !important;
|
|
16402
|
+
}
|
|
16403
|
+
.rt-SheetContent:where([data-state='closed'][data-side='end']){
|
|
16404
|
+
animation-name: rt-sheet-close-to-end, rt-fade-out !important;
|
|
16405
|
+
}
|
|
16406
|
+
.rt-SheetContent:where([data-state='open'][data-side='top']){
|
|
16407
|
+
animation-name: rt-sheet-open-from-top, rt-fade-in !important;
|
|
16408
|
+
}
|
|
16409
|
+
.rt-SheetContent:where([data-state='closed'][data-side='top']){
|
|
16410
|
+
animation-name: rt-sheet-close-to-top, rt-fade-out !important;
|
|
16411
|
+
}
|
|
16412
|
+
.rt-SheetContent:where([data-state='open'][data-side='bottom']){
|
|
16413
|
+
animation-name: rt-sheet-open-from-bottom, rt-fade-in !important;
|
|
16414
|
+
}
|
|
16415
|
+
.rt-SheetContent:where([data-state='closed'][data-side='bottom']){
|
|
16416
|
+
animation-name: rt-sheet-close-to-bottom, rt-fade-out !important;
|
|
16417
|
+
}
|
|
16418
|
+
}
|
|
16419
|
+
@media (prefers-reduced-motion: reduce) {
|
|
16420
|
+
.rt-SheetContent{
|
|
16421
|
+
animation: none !important;
|
|
16422
|
+
}
|
|
16423
|
+
}
|
|
16162
16424
|
.rt-ScrollAreaRoot{
|
|
16163
16425
|
display: flex;
|
|
16164
16426
|
flex-direction: column;
|
|
@@ -16194,8 +16456,8 @@
|
|
|
16194
16456
|
touch-action: none;
|
|
16195
16457
|
background-color: var(--gray-a3);
|
|
16196
16458
|
border-radius: var(--scrollarea-scrollbar-border-radius);
|
|
16197
|
-
animation-duration:
|
|
16198
|
-
animation-timing-function: ease-
|
|
16459
|
+
animation-duration: var(--motion-duration-micro);
|
|
16460
|
+
animation-timing-function: var(--motion-ease-standard);
|
|
16199
16461
|
}
|
|
16200
16462
|
.rt-ScrollAreaScrollbar:where([data-orientation='vertical']){
|
|
16201
16463
|
flex-direction: column;
|
|
@@ -16217,7 +16479,7 @@
|
|
|
16217
16479
|
position: relative;
|
|
16218
16480
|
background-color: var(--gray-a8);
|
|
16219
16481
|
border-radius: inherit;
|
|
16220
|
-
transition: background-color
|
|
16482
|
+
transition: background-color var(--motion-duration-micro) var(--motion-ease-standard);
|
|
16221
16483
|
}
|
|
16222
16484
|
.rt-ScrollAreaThumb::before{
|
|
16223
16485
|
content: '';
|
|
@@ -16413,7 +16675,7 @@
|
|
|
16413
16675
|
margin-right: calc(-1 * var(--border-width-standard) * 0.5);
|
|
16414
16676
|
width: var(--border-width-standard);
|
|
16415
16677
|
background-color: var(--gray-a4);
|
|
16416
|
-
transition: opacity calc(0.8 * var(--segmented-control-transition-duration)) var(--ease-
|
|
16678
|
+
transition: opacity calc(0.8 * var(--segmented-control-transition-duration)) var(--motion-ease-standard);
|
|
16417
16679
|
}
|
|
16418
16680
|
:where(.rt-SegmentedControlItem:first-child) .rt-SegmentedControlItemSeparator,
|
|
16419
16681
|
:where(.rt-SegmentedControlItem:where([data-state='on'], :focus-visible)) .rt-SegmentedControlItemSeparator,
|
|
@@ -16432,7 +16694,7 @@
|
|
|
16432
16694
|
left: 0;
|
|
16433
16695
|
height: 100%;
|
|
16434
16696
|
pointer-events: none;
|
|
16435
|
-
transition: transform var(--segmented-control-transition-duration) var(--
|
|
16697
|
+
transition: transform var(--segmented-control-transition-duration) var(--motion-spring-snappy);
|
|
16436
16698
|
}
|
|
16437
16699
|
.rt-SegmentedControlIndicator::before{
|
|
16438
16700
|
inset: var(--border-width-standard);
|
|
@@ -18547,7 +18809,7 @@
|
|
|
18547
18809
|
justify-content: space-between;
|
|
18548
18810
|
}
|
|
18549
18811
|
.rt-SidebarMenuSubTrigger :where(.rt-SidebarMenuSubTriggerIcon){
|
|
18550
|
-
transition: transform
|
|
18812
|
+
transition: transform var(--motion-duration-micro) var(--motion-ease-standard);
|
|
18551
18813
|
}
|
|
18552
18814
|
.rt-SidebarMenuSubTrigger:where([data-state="open"]) :where(.rt-SidebarMenuSubTriggerIcon){
|
|
18553
18815
|
transform: rotate(90deg);
|
|
@@ -18559,10 +18821,10 @@
|
|
|
18559
18821
|
overflow: visible;
|
|
18560
18822
|
}
|
|
18561
18823
|
.rt-SidebarMenuSubContent:where([data-state="open"]){
|
|
18562
|
-
animation: rt-sidebar-slide-down
|
|
18824
|
+
animation: rt-sidebar-slide-down var(--motion-duration-small) var(--motion-ease-standard);
|
|
18563
18825
|
}
|
|
18564
18826
|
.rt-SidebarMenuSubContent:where([data-state="closed"]){
|
|
18565
|
-
animation: rt-sidebar-slide-up
|
|
18827
|
+
animation: rt-sidebar-slide-up var(--motion-duration-small) var(--motion-ease-standard);
|
|
18566
18828
|
}
|
|
18567
18829
|
@keyframes rt-sidebar-slide-down {
|
|
18568
18830
|
from{
|
|
@@ -18639,6 +18901,43 @@
|
|
|
18639
18901
|
margin-top: calc(var(--space-1) / 2);
|
|
18640
18902
|
margin-bottom: calc(var(--space-1) / 2);
|
|
18641
18903
|
}
|
|
18904
|
+
.rt-ShellSidebarRail :where(.rt-SidebarContent),
|
|
18905
|
+
:where(.rt-ShellSidebar[data-state='rail'] .rt-SidebarContent){
|
|
18906
|
+
padding: var(--space-2);
|
|
18907
|
+
}
|
|
18908
|
+
.rt-ShellSidebarRail :where(.rt-SidebarMenuButton),
|
|
18909
|
+
:where(.rt-ShellSidebar[data-state='rail'] .rt-SidebarMenuButton){
|
|
18910
|
+
justify-content: center;
|
|
18911
|
+
align-items: center;
|
|
18912
|
+
flex-direction: column;
|
|
18913
|
+
gap: var(--space-1);
|
|
18914
|
+
padding: var(--space-2) var(--space-1);
|
|
18915
|
+
}
|
|
18916
|
+
.rt-ShellSidebarRail :where(.rt-SidebarMenuBadge),
|
|
18917
|
+
.rt-ShellSidebarRail :where(.rt-SidebarMenuShortcut),
|
|
18918
|
+
:where(.rt-ShellSidebar[data-state='rail'] .rt-SidebarMenuBadge),
|
|
18919
|
+
:where(.rt-ShellSidebar[data-state='rail'] .rt-SidebarMenuShortcut){
|
|
18920
|
+
display: none;
|
|
18921
|
+
}
|
|
18922
|
+
.rt-ShellSidebarRail :where(.rt-SidebarGroupLabel),
|
|
18923
|
+
:where(.rt-ShellSidebar[data-state='rail'] .rt-SidebarGroupLabel){
|
|
18924
|
+
display: block;
|
|
18925
|
+
text-align: center;
|
|
18926
|
+
font-size: var(--font-size-0);
|
|
18927
|
+
line-height: var(--line-height-0);
|
|
18928
|
+
color: var(--gray-a9);
|
|
18929
|
+
font-weight: var(--font-weight-medium);
|
|
18930
|
+
}
|
|
18931
|
+
.rt-ShellSidebarRail :where(.rt-SidebarMenuSubTriggerIcon),
|
|
18932
|
+
:where(.rt-ShellSidebar[data-state='rail'] .rt-SidebarMenuSubTriggerIcon){
|
|
18933
|
+
display: none;
|
|
18934
|
+
}
|
|
18935
|
+
.rt-ShellSidebarRail :where(.rt-SidebarMenuSubList),
|
|
18936
|
+
:where(.rt-ShellSidebar[data-state='rail'] .rt-SidebarMenuSubList){
|
|
18937
|
+
padding-left: 0;
|
|
18938
|
+
border-left: none;
|
|
18939
|
+
margin-left: 0;
|
|
18940
|
+
}
|
|
18642
18941
|
.rt-SidebarContainer:where(.rt-variant-outline){
|
|
18643
18942
|
background-color: var(--color-panel);
|
|
18644
18943
|
-webkit-backdrop-filter: var(--backdrop-filter-panel);
|
|
@@ -18855,7 +19154,7 @@
|
|
|
18855
19154
|
-webkit-user-select: none;
|
|
18856
19155
|
user-select: none;
|
|
18857
19156
|
justify-content: flex-start;
|
|
18858
|
-
transition: background var(--duration-
|
|
19157
|
+
transition: background var(--motion-duration-small) var(--motion-ease-standard), box-shadow var(--motion-duration-small) var(--motion-ease-standard), filter var(--motion-duration-small) var(--motion-ease-standard);
|
|
18859
19158
|
}
|
|
18860
19159
|
.rt-SidebarHeader :where(.rt-SidebarMenuButton):where(:focus-visible), .rt-SidebarFooter :where(.rt-SidebarMenuButton):where(:focus-visible){
|
|
18861
19160
|
outline: 2px solid var(--focus-8);
|
|
@@ -19419,172 +19718,100 @@
|
|
|
19419
19718
|
.rt-SidebarHeader:where(.rt-menu-variant-soft) :where(.rt-SidebarMenuButton[data-active]) :where(.rt-Text[data-accent-color='gray'], [data-accent-color='gray']:not(.rt-Badge)), .rt-SidebarContent:where(.rt-menu-variant-soft) :where(.rt-SidebarMenuButton[data-active]) :where(.rt-Text[data-accent-color='gray'], [data-accent-color='gray']:not(.rt-Badge)), .rt-SidebarFooter:where(.rt-menu-variant-soft) :where(.rt-SidebarMenuButton[data-active]) :where(.rt-Text[data-accent-color='gray'], [data-accent-color='gray']:not(.rt-Badge)){
|
|
19420
19719
|
color: var(--gray-11) !important;
|
|
19421
19720
|
}
|
|
19422
|
-
.rt-
|
|
19423
|
-
|
|
19424
|
-
|
|
19425
|
-
flex-
|
|
19426
|
-
|
|
19427
|
-
|
|
19428
|
-
|
|
19429
|
-
|
|
19430
|
-
|
|
19431
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-state="collapsed"]):where(.rt-r-size-1){
|
|
19432
|
-
width: var(--sidebar-icon-width-1);
|
|
19433
|
-
min-width: var(--sidebar-icon-width-1);
|
|
19434
|
-
--sidebar-group-label-width: calc(var(--sidebar-icon-width-1) - (var(--space-2) * 2));
|
|
19435
|
-
--sidebar-button-label-width: calc(var(--sidebar-group-label-width) - (var(--space-1) * 2));
|
|
19721
|
+
.rt-ShellRoot{
|
|
19722
|
+
inline-size: 100%;
|
|
19723
|
+
display: flex;
|
|
19724
|
+
flex-direction: column;
|
|
19725
|
+
block-size: 100vh;
|
|
19726
|
+
--shell-sidebar-rail-width: var(--space-9, 64px);
|
|
19727
|
+
--shell-sidebar-panel-width: 288px;
|
|
19728
|
+
--shell-sidebar-combined-width: calc(var(--shell-sidebar-rail-width) + var(--shell-sidebar-panel-width));
|
|
19729
|
+
--shell-overlay-width: auto;
|
|
19436
19730
|
}
|
|
19437
|
-
|
|
19438
|
-
|
|
19439
|
-
|
|
19440
|
-
|
|
19441
|
-
--sidebar-button-label-width: calc(var(--sidebar-group-label-width) - (var(--space-1) * 2));
|
|
19731
|
+
@supports (height: 100dvh) {
|
|
19732
|
+
.rt-ShellRoot{
|
|
19733
|
+
block-size: 100dvh;
|
|
19734
|
+
}
|
|
19442
19735
|
}
|
|
19443
|
-
.rt-
|
|
19444
|
-
|
|
19445
|
-
|
|
19446
|
-
|
|
19447
|
-
|
|
19736
|
+
.rt-ShellHeader{
|
|
19737
|
+
position: sticky;
|
|
19738
|
+
top: 0;
|
|
19739
|
+
inset-inline: 0;
|
|
19740
|
+
z-index: var(--shell-z-header, 10);
|
|
19741
|
+
block-size: var(--shell-header-height, 64px);
|
|
19742
|
+
display: flex;
|
|
19743
|
+
align-items: center;
|
|
19744
|
+
background-color: var(--color-panel);
|
|
19448
19745
|
}
|
|
19449
|
-
.rt-
|
|
19450
|
-
|
|
19451
|
-
|
|
19452
|
-
|
|
19746
|
+
.rt-ShellBody{
|
|
19747
|
+
display: flex;
|
|
19748
|
+
flex-direction: row;
|
|
19749
|
+
align-items: stretch;
|
|
19750
|
+
inline-size: 100%;
|
|
19751
|
+
flex: 1 1 auto;
|
|
19752
|
+
block-size: auto;
|
|
19753
|
+
min-block-size: 0;
|
|
19754
|
+
min-inline-size: 0;
|
|
19755
|
+
overflow: hidden;
|
|
19453
19756
|
}
|
|
19454
|
-
.rt-
|
|
19455
|
-
|
|
19456
|
-
|
|
19457
|
-
|
|
19757
|
+
.rt-ShellSidebar{
|
|
19758
|
+
display: flex;
|
|
19759
|
+
flex-direction: row;
|
|
19760
|
+
align-items: stretch;
|
|
19761
|
+
block-size: 100%;
|
|
19762
|
+
min-block-size: 0;
|
|
19458
19763
|
}
|
|
19459
|
-
.rt-
|
|
19460
|
-
|
|
19764
|
+
.rt-ShellSidebarRail{
|
|
19765
|
+
display: flex;
|
|
19461
19766
|
flex-direction: column;
|
|
19462
|
-
|
|
19463
|
-
gap: var(--space-
|
|
19464
|
-
|
|
19465
|
-
|
|
19466
|
-
|
|
19467
|
-
display: block;
|
|
19468
|
-
font-size: var(--font-size-0);
|
|
19469
|
-
line-height: var(--line-height-0);
|
|
19470
|
-
color: var(--gray-a10);
|
|
19471
|
-
text-align: center;
|
|
19472
|
-
font-weight: var(--font-weight-medium);
|
|
19473
|
-
max-width: 100%;
|
|
19767
|
+
align-items: center;
|
|
19768
|
+
gap: var(--space-2);
|
|
19769
|
+
padding-block: var(--space-2);
|
|
19770
|
+
block-size: 100%;
|
|
19771
|
+
min-block-size: 0;
|
|
19474
19772
|
overflow: hidden;
|
|
19475
|
-
|
|
19476
|
-
|
|
19773
|
+
opacity: 0;
|
|
19774
|
+
transition: inline-size var(--motion-duration-small) var(--motion-ease-standard), opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
19477
19775
|
}
|
|
19478
|
-
.rt-
|
|
19479
|
-
max-width: var(--sidebar-group-label-width);
|
|
19776
|
+
.rt-ShellSidebarPanel{
|
|
19480
19777
|
display: block;
|
|
19481
|
-
|
|
19482
|
-
|
|
19483
|
-
|
|
19484
|
-
|
|
19485
|
-
font-size: var(--font-size-0);
|
|
19486
|
-
line-height: var(--line-height-0);
|
|
19487
|
-
color: var(--gray-a9);
|
|
19488
|
-
font-weight: var(--font-weight-medium);
|
|
19489
|
-
padding: var(--space-1) var(--space-1);
|
|
19490
|
-
margin: var(--space-2) 0 var(--space-1) 0;
|
|
19778
|
+
opacity: 0;
|
|
19779
|
+
transition: inline-size var(--motion-duration-small) var(--motion-ease-standard), opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
19780
|
+
block-size: 100%;
|
|
19781
|
+
min-block-size: 0;
|
|
19491
19782
|
overflow: hidden;
|
|
19492
|
-
text-overflow: ellipsis;
|
|
19493
|
-
white-space: nowrap;
|
|
19494
19783
|
}
|
|
19495
|
-
.rt-
|
|
19496
|
-
|
|
19497
|
-
|
|
19784
|
+
.rt-ShellSidebarSingle{
|
|
19785
|
+
opacity: 0;
|
|
19786
|
+
transition: inline-size var(--motion-duration-small) var(--motion-ease-standard), opacity var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
19787
|
+
block-size: 100%;
|
|
19498
19788
|
overflow: hidden;
|
|
19499
|
-
text-overflow: ellipsis;
|
|
19500
|
-
white-space: nowrap;
|
|
19501
|
-
color: var(--gray-a12);
|
|
19502
|
-
font-weight: var(--font-weight-medium);
|
|
19503
|
-
}
|
|
19504
|
-
.rt-SidebarRoot.rt-menu-variant-solid:where([data-collapsible="icon"][data-state="collapsed"]) :where(.rt-SidebarMenuButton[data-highlighted] span),
|
|
19505
|
-
.rt-SidebarRoot.rt-menu-variant-solid:where([data-collapsible="icon"][data-state="collapsed"]) :where(.rt-SidebarMenuButton[data-active] span){
|
|
19506
|
-
color: var(--accent-contrast) !important;
|
|
19507
19789
|
}
|
|
19508
|
-
:where(.rt-
|
|
19509
|
-
|
|
19510
|
-
|
|
19511
|
-
|
|
19512
|
-
|
|
19513
|
-
display: none;
|
|
19514
|
-
}
|
|
19515
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-state="collapsed"]) :where(.rt-SidebarMenuSubTriggerIcon){
|
|
19516
|
-
display: none;
|
|
19517
|
-
}
|
|
19518
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-state="collapsed"]) :where(.rt-SidebarMenuSubList){
|
|
19519
|
-
padding-left: 0;
|
|
19520
|
-
border-left: none;
|
|
19521
|
-
margin-left: 0;
|
|
19522
|
-
}
|
|
19523
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-state="collapsed"]) :where(.rt-SidebarMenu){
|
|
19524
|
-
padding: var(--space-2);
|
|
19525
|
-
}
|
|
19526
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-state="collapsed"]):where(.rt-r-size-1) :where(.rt-SidebarMenuButton svg){
|
|
19527
|
-
width: var(--content-icon-size-2) !important;
|
|
19528
|
-
height: var(--content-icon-size-2) !important;
|
|
19529
|
-
color: currentColor !important;
|
|
19530
|
-
}
|
|
19531
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-state="collapsed"]):where(.rt-r-size-2) :where(.rt-SidebarMenuButton svg){
|
|
19532
|
-
width: var(--content-icon-size-3) !important;
|
|
19533
|
-
height: var(--content-icon-size-3) !important;
|
|
19534
|
-
color: currentColor !important;
|
|
19535
|
-
}
|
|
19536
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-type="floating"]){
|
|
19537
|
-
transition: none;
|
|
19538
|
-
overflow: visible;
|
|
19539
|
-
flex-shrink: 0;
|
|
19790
|
+
:where(.rt-ShellSidebarRail):not([data-visible]),
|
|
19791
|
+
:where(.rt-ShellSidebarPanel):not([data-visible]),
|
|
19792
|
+
:where(.rt-ShellSidebarSingle):not([data-visible]){
|
|
19793
|
+
opacity: 0;
|
|
19794
|
+
transition: opacity var(--motion-duration-small) var(--motion-ease-standard), inline-size var(--motion-duration-small) var(--motion-ease-standard) var(--motion-duration-small);
|
|
19540
19795
|
}
|
|
19541
|
-
|
|
19796
|
+
[data-visible]{
|
|
19542
19797
|
opacity: 1;
|
|
19543
|
-
pointer-events: auto;
|
|
19544
|
-
margin: var(--space-2);
|
|
19545
|
-
}
|
|
19546
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-type="floating"][data-state="collapsed"]):where(.rt-r-size-1){
|
|
19547
|
-
width: var(--sidebar-icon-width-1);
|
|
19548
|
-
min-width: var(--sidebar-icon-width-1);
|
|
19549
|
-
}
|
|
19550
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-type="floating"][data-state="collapsed"]):where(.rt-r-size-2){
|
|
19551
|
-
width: var(--sidebar-icon-width-2);
|
|
19552
|
-
min-width: var(--sidebar-icon-width-2);
|
|
19553
|
-
}
|
|
19554
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-type="floating"][data-state="expanded"]){
|
|
19555
|
-
width: var(--sidebar-width);
|
|
19556
|
-
min-width: var(--sidebar-width);
|
|
19557
|
-
opacity: 1;
|
|
19558
|
-
pointer-events: auto;
|
|
19559
|
-
margin: var(--space-2);
|
|
19560
|
-
}
|
|
19561
|
-
@media (max-width: 768px) {
|
|
19562
|
-
.rt-SidebarRoot:where([data-collapsible="icon"]){
|
|
19563
|
-
display: none;
|
|
19564
|
-
}
|
|
19565
|
-
.rt-SidebarRoot:where([data-collapsible="icon"][data-state="expanded"]){
|
|
19566
|
-
display: flex;
|
|
19567
|
-
position: fixed;
|
|
19568
|
-
top: 0;
|
|
19569
|
-
left: 0;
|
|
19570
|
-
height: 100vh;
|
|
19571
|
-
width: var(--sidebar-width);
|
|
19572
|
-
z-index: 50;
|
|
19573
|
-
box-shadow: var(--shadow-6);
|
|
19574
|
-
}
|
|
19575
19798
|
}
|
|
19576
19799
|
@media (prefers-reduced-motion: reduce) {
|
|
19577
|
-
.rt-
|
|
19800
|
+
.rt-ShellSidebarRail,
|
|
19801
|
+
.rt-ShellSidebarPanel,
|
|
19802
|
+
.rt-ShellSidebarSingle{
|
|
19578
19803
|
transition: none;
|
|
19579
19804
|
}
|
|
19580
19805
|
}
|
|
19581
|
-
|
|
19582
|
-
:
|
|
19583
|
-
|
|
19584
|
-
|
|
19585
|
-
|
|
19586
|
-
|
|
19587
|
-
|
|
19806
|
+
.rt-ShellContent{
|
|
19807
|
+
flex: 1 1 auto;
|
|
19808
|
+
block-size: 100%;
|
|
19809
|
+
min-block-size: 0;
|
|
19810
|
+
min-inline-size: 0;
|
|
19811
|
+
overflow: auto;
|
|
19812
|
+
}
|
|
19813
|
+
:where(.rt-SheetContent) :where(.rt-ShellSidebarPanel){
|
|
19814
|
+
transition: none !important;
|
|
19588
19815
|
}
|
|
19589
19816
|
.rt-SliderRoot{
|
|
19590
19817
|
--slider-thumb-width: var(--space-3);
|
|
@@ -20990,6 +21217,7 @@
|
|
|
20990
21217
|
padding: var(--text-area-padding-y) var(--text-area-padding-x);
|
|
20991
21218
|
border-radius: inherit;
|
|
20992
21219
|
resize: none;
|
|
21220
|
+
min-width: 0;
|
|
20993
21221
|
display: block;
|
|
20994
21222
|
width: 100%;
|
|
20995
21223
|
flex-grow: 1;
|
|
@@ -22531,8 +22759,8 @@
|
|
|
22531
22759
|
background-color: var(--gray-12);
|
|
22532
22760
|
border-radius: var(--radius-1);
|
|
22533
22761
|
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
22534
|
-
animation-duration: var(--duration-
|
|
22535
|
-
animation-timing-function: var(--
|
|
22762
|
+
animation-duration: var(--motion-duration-small);
|
|
22763
|
+
animation-timing-function: var(--motion-spring-snappy);
|
|
22536
22764
|
}
|
|
22537
22765
|
@media (prefers-reduced-motion: no-preference) {
|
|
22538
22766
|
.rt-TooltipContent:where([data-state='delayed-open']):where([data-side='top']){
|
|
@@ -22569,6 +22797,280 @@
|
|
|
22569
22797
|
.rt-UserCard:where(.rt-r-size-4) :where(.rt-Flex){
|
|
22570
22798
|
gap: var(--space-5);
|
|
22571
22799
|
}
|
|
22800
|
+
.rt-ChatbarField{
|
|
22801
|
+
position: relative;
|
|
22802
|
+
width: 100%;
|
|
22803
|
+
min-width: 0;
|
|
22804
|
+
}
|
|
22805
|
+
.rt-ChatbarRoot{
|
|
22806
|
+
--chatbar-attachment-thumb: var(--space-8);
|
|
22807
|
+
transition: outline var(--motion-duration-small) var(--motion-spring-snappy);
|
|
22808
|
+
}
|
|
22809
|
+
.rt-ChatbarInput{
|
|
22810
|
+
display: block;
|
|
22811
|
+
width: 100%;
|
|
22812
|
+
min-width: 0;
|
|
22813
|
+
resize: none;
|
|
22814
|
+
border: 0;
|
|
22815
|
+
outline: 0;
|
|
22816
|
+
background: transparent;
|
|
22817
|
+
padding: 0;
|
|
22818
|
+
margin: 0;
|
|
22819
|
+
color: inherit;
|
|
22820
|
+
font: inherit;
|
|
22821
|
+
line-height: inherit;
|
|
22822
|
+
text-align: start;
|
|
22823
|
+
transition: height 150ms ease-out;
|
|
22824
|
+
}
|
|
22825
|
+
.rt-ChatbarCard :where(.rt-ChatbarGrid){
|
|
22826
|
+
display: flex;
|
|
22827
|
+
flex-direction: column;
|
|
22828
|
+
gap: var(--space-4);
|
|
22829
|
+
width: 100%;
|
|
22830
|
+
}
|
|
22831
|
+
.rt-ChatbarRoot:where([data-state="closed"]) :where(.rt-ChatbarGrid){
|
|
22832
|
+
flex-direction: row;
|
|
22833
|
+
align-items: center;
|
|
22834
|
+
flex-wrap: wrap;
|
|
22835
|
+
}
|
|
22836
|
+
.rt-ChatbarRoot:where([data-state="closed"]) :where(.rt-ChatbarAttachmentsRow){
|
|
22837
|
+
flex-basis: 100%;
|
|
22838
|
+
order: -1;
|
|
22839
|
+
}
|
|
22840
|
+
.rt-ChatbarTextarea{
|
|
22841
|
+
flex: 1;
|
|
22842
|
+
min-width: 0;
|
|
22843
|
+
}
|
|
22844
|
+
.rt-ChatbarSend{
|
|
22845
|
+
transition: opacity 150ms ease-in-out;
|
|
22846
|
+
}
|
|
22847
|
+
.rt-ChatbarRoot:where([data-state="closed"]) :where(.rt-ChatbarRow){
|
|
22848
|
+
display: none;
|
|
22849
|
+
}
|
|
22850
|
+
.rt-ChatbarRoot:where([data-state="open"]) :where(.rt-ChatbarRow){
|
|
22851
|
+
display: block;
|
|
22852
|
+
width: 100%;
|
|
22853
|
+
}
|
|
22854
|
+
.rt-ChatbarAttachmentsRow{
|
|
22855
|
+
width: 100%;
|
|
22856
|
+
}
|
|
22857
|
+
.rt-ChatbarScrollArea{
|
|
22858
|
+
border-radius: var(--chatbar-attachments-radius);
|
|
22859
|
+
}
|
|
22860
|
+
.rt-ChatbarScrollArea :where(.rt-ScrollAreaScrollbar){
|
|
22861
|
+
display: none;
|
|
22862
|
+
}
|
|
22863
|
+
.rt-ChatbarAttachmentPreview{
|
|
22864
|
+
height: var(--chatbar-attachment-thumb);
|
|
22865
|
+
width: var(--chatbar-attachment-thumb);
|
|
22866
|
+
min-width: var(--chatbar-attachment-thumb);
|
|
22867
|
+
flex-shrink: 0;
|
|
22868
|
+
border-radius: var(--radius-1);
|
|
22869
|
+
overflow: hidden;
|
|
22870
|
+
display: inline-flex;
|
|
22871
|
+
align-items: center;
|
|
22872
|
+
justify-content: center;
|
|
22873
|
+
background: var(--gray-a3);
|
|
22874
|
+
}
|
|
22875
|
+
.rt-ChatbarAttachmentImage{
|
|
22876
|
+
height: 100%;
|
|
22877
|
+
width: auto;
|
|
22878
|
+
object-fit: contain;
|
|
22879
|
+
max-width: none;
|
|
22880
|
+
}
|
|
22881
|
+
.rt-ChatbarAttachment{
|
|
22882
|
+
position: relative;
|
|
22883
|
+
}
|
|
22884
|
+
.rt-ChatbarAttachmentRemove{
|
|
22885
|
+
position: absolute;
|
|
22886
|
+
top: var(--chatbar-remove-offset);
|
|
22887
|
+
right: var(--chatbar-remove-offset);
|
|
22888
|
+
}
|
|
22889
|
+
.rt-ChatbarCard{
|
|
22890
|
+
width: 100%;
|
|
22891
|
+
transition: all var(--motion-duration-small) var(--motion-spring-snappy);
|
|
22892
|
+
}
|
|
22893
|
+
.rt-ChatbarDropOverlay{
|
|
22894
|
+
position: absolute;
|
|
22895
|
+
top: 0;
|
|
22896
|
+
left: 0;
|
|
22897
|
+
right: 0;
|
|
22898
|
+
bottom: 0;
|
|
22899
|
+
background: var(--gray-a3);
|
|
22900
|
+
border-radius: inherit;
|
|
22901
|
+
display: flex;
|
|
22902
|
+
align-items: center;
|
|
22903
|
+
justify-content: center;
|
|
22904
|
+
z-index: 10;
|
|
22905
|
+
animation: rt-fade-in var(--motion-duration-small) var(--motion-spring-snappy);
|
|
22906
|
+
}
|
|
22907
|
+
.rt-ChatbarDropContent{
|
|
22908
|
+
display: flex;
|
|
22909
|
+
flex-direction: column;
|
|
22910
|
+
align-items: center;
|
|
22911
|
+
gap: var(--space-2);
|
|
22912
|
+
color: var(--accent-11);
|
|
22913
|
+
}
|
|
22914
|
+
.rt-ChatbarDropIcon{
|
|
22915
|
+
width: var(--space-6);
|
|
22916
|
+
height: var(--space-6);
|
|
22917
|
+
}
|
|
22918
|
+
.rt-ChatbarInlineStart,
|
|
22919
|
+
.rt-ChatbarInlineEnd{
|
|
22920
|
+
flex-shrink: 0;
|
|
22921
|
+
display: inline-flex;
|
|
22922
|
+
align-items: center;
|
|
22923
|
+
gap: var(--space-2);
|
|
22924
|
+
}
|
|
22925
|
+
.rt-ChatbarRowStart{
|
|
22926
|
+
display: inline-flex;
|
|
22927
|
+
align-items: center;
|
|
22928
|
+
gap: var(--space-2);
|
|
22929
|
+
flex-shrink: 0;
|
|
22930
|
+
}
|
|
22931
|
+
.rt-ChatbarRowEnd{
|
|
22932
|
+
display: inline-flex;
|
|
22933
|
+
align-items: center;
|
|
22934
|
+
gap: var(--space-2);
|
|
22935
|
+
flex-shrink: 0;
|
|
22936
|
+
margin-left: auto;
|
|
22937
|
+
}
|
|
22938
|
+
.rt-ChatbarRoot:where(.rt-r-size-1){
|
|
22939
|
+
font-size: var(--font-size-1);
|
|
22940
|
+
line-height: var(--line-height-1);
|
|
22941
|
+
--chatbar-attachment-thumb: var(--space-8);
|
|
22942
|
+
--chatbar-remove-offset: var(--space-1);
|
|
22943
|
+
--chatbar-attachments-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-1)));
|
|
22944
|
+
}
|
|
22945
|
+
.rt-ChatbarRoot:where(.rt-r-size-2){
|
|
22946
|
+
font-size: var(--font-size-2);
|
|
22947
|
+
line-height: var(--line-height-2);
|
|
22948
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
22949
|
+
--chatbar-remove-offset: var(--space-2);
|
|
22950
|
+
--chatbar-attachments-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-2)));
|
|
22951
|
+
}
|
|
22952
|
+
.rt-ChatbarRoot:where(.rt-r-size-3){
|
|
22953
|
+
font-size: var(--font-size-3);
|
|
22954
|
+
line-height: var(--line-height-3);
|
|
22955
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
22956
|
+
--chatbar-remove-offset: var(--space-3);
|
|
22957
|
+
--chatbar-attachments-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-3)));
|
|
22958
|
+
}
|
|
22959
|
+
@media (min-width: 520px){
|
|
22960
|
+
.rt-ChatbarRoot:where(.xs\:rt-r-size-1){
|
|
22961
|
+
font-size: var(--font-size-1);
|
|
22962
|
+
line-height: var(--line-height-1);
|
|
22963
|
+
--chatbar-attachment-thumb: var(--space-8);
|
|
22964
|
+
--chatbar-remove-offset: var(--space-1);
|
|
22965
|
+
--chatbar-attachments-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-1)));
|
|
22966
|
+
}
|
|
22967
|
+
.rt-ChatbarRoot:where(.xs\:rt-r-size-2){
|
|
22968
|
+
font-size: var(--font-size-2);
|
|
22969
|
+
line-height: var(--line-height-2);
|
|
22970
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
22971
|
+
--chatbar-remove-offset: var(--space-2);
|
|
22972
|
+
--chatbar-attachments-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-2)));
|
|
22973
|
+
}
|
|
22974
|
+
.rt-ChatbarRoot:where(.xs\:rt-r-size-3){
|
|
22975
|
+
font-size: var(--font-size-3);
|
|
22976
|
+
line-height: var(--line-height-3);
|
|
22977
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
22978
|
+
--chatbar-remove-offset: var(--space-3);
|
|
22979
|
+
--chatbar-attachments-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-3)));
|
|
22980
|
+
}
|
|
22981
|
+
}
|
|
22982
|
+
@media (min-width: 768px){
|
|
22983
|
+
.rt-ChatbarRoot:where(.sm\:rt-r-size-1){
|
|
22984
|
+
font-size: var(--font-size-1);
|
|
22985
|
+
line-height: var(--line-height-1);
|
|
22986
|
+
--chatbar-attachment-thumb: var(--space-8);
|
|
22987
|
+
--chatbar-remove-offset: var(--space-1);
|
|
22988
|
+
--chatbar-attachments-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-1)));
|
|
22989
|
+
}
|
|
22990
|
+
.rt-ChatbarRoot:where(.sm\:rt-r-size-2){
|
|
22991
|
+
font-size: var(--font-size-2);
|
|
22992
|
+
line-height: var(--line-height-2);
|
|
22993
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
22994
|
+
--chatbar-remove-offset: var(--space-2);
|
|
22995
|
+
--chatbar-attachments-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-2)));
|
|
22996
|
+
}
|
|
22997
|
+
.rt-ChatbarRoot:where(.sm\:rt-r-size-3){
|
|
22998
|
+
font-size: var(--font-size-3);
|
|
22999
|
+
line-height: var(--line-height-3);
|
|
23000
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
23001
|
+
--chatbar-remove-offset: var(--space-3);
|
|
23002
|
+
--chatbar-attachments-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-3)));
|
|
23003
|
+
}
|
|
23004
|
+
}
|
|
23005
|
+
@media (min-width: 1024px){
|
|
23006
|
+
.rt-ChatbarRoot:where(.md\:rt-r-size-1){
|
|
23007
|
+
font-size: var(--font-size-1);
|
|
23008
|
+
line-height: var(--line-height-1);
|
|
23009
|
+
--chatbar-attachment-thumb: var(--space-8);
|
|
23010
|
+
--chatbar-remove-offset: var(--space-1);
|
|
23011
|
+
--chatbar-attachments-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-1)));
|
|
23012
|
+
}
|
|
23013
|
+
.rt-ChatbarRoot:where(.md\:rt-r-size-2){
|
|
23014
|
+
font-size: var(--font-size-2);
|
|
23015
|
+
line-height: var(--line-height-2);
|
|
23016
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
23017
|
+
--chatbar-remove-offset: var(--space-2);
|
|
23018
|
+
--chatbar-attachments-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-2)));
|
|
23019
|
+
}
|
|
23020
|
+
.rt-ChatbarRoot:where(.md\:rt-r-size-3){
|
|
23021
|
+
font-size: var(--font-size-3);
|
|
23022
|
+
line-height: var(--line-height-3);
|
|
23023
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
23024
|
+
--chatbar-remove-offset: var(--space-3);
|
|
23025
|
+
--chatbar-attachments-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-3)));
|
|
23026
|
+
}
|
|
23027
|
+
}
|
|
23028
|
+
@media (min-width: 1280px){
|
|
23029
|
+
.rt-ChatbarRoot:where(.lg\:rt-r-size-1){
|
|
23030
|
+
font-size: var(--font-size-1);
|
|
23031
|
+
line-height: var(--line-height-1);
|
|
23032
|
+
--chatbar-attachment-thumb: var(--space-8);
|
|
23033
|
+
--chatbar-remove-offset: var(--space-1);
|
|
23034
|
+
--chatbar-attachments-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-1)));
|
|
23035
|
+
}
|
|
23036
|
+
.rt-ChatbarRoot:where(.lg\:rt-r-size-2){
|
|
23037
|
+
font-size: var(--font-size-2);
|
|
23038
|
+
line-height: var(--line-height-2);
|
|
23039
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
23040
|
+
--chatbar-remove-offset: var(--space-2);
|
|
23041
|
+
--chatbar-attachments-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-2)));
|
|
23042
|
+
}
|
|
23043
|
+
.rt-ChatbarRoot:where(.lg\:rt-r-size-3){
|
|
23044
|
+
font-size: var(--font-size-3);
|
|
23045
|
+
line-height: var(--line-height-3);
|
|
23046
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
23047
|
+
--chatbar-remove-offset: var(--space-3);
|
|
23048
|
+
--chatbar-attachments-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-3)));
|
|
23049
|
+
}
|
|
23050
|
+
}
|
|
23051
|
+
@media (min-width: 1640px){
|
|
23052
|
+
.rt-ChatbarRoot:where(.xl\:rt-r-size-1){
|
|
23053
|
+
font-size: var(--font-size-1);
|
|
23054
|
+
line-height: var(--line-height-1);
|
|
23055
|
+
--chatbar-attachment-thumb: var(--space-8);
|
|
23056
|
+
--chatbar-remove-offset: var(--space-1);
|
|
23057
|
+
--chatbar-attachments-radius: min(var(--radius-5), calc(var(--radius-1) + var(--space-1)));
|
|
23058
|
+
}
|
|
23059
|
+
.rt-ChatbarRoot:where(.xl\:rt-r-size-2){
|
|
23060
|
+
font-size: var(--font-size-2);
|
|
23061
|
+
line-height: var(--line-height-2);
|
|
23062
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
23063
|
+
--chatbar-remove-offset: var(--space-2);
|
|
23064
|
+
--chatbar-attachments-radius: min(var(--radius-6), calc(var(--radius-2) + var(--space-2)));
|
|
23065
|
+
}
|
|
23066
|
+
.rt-ChatbarRoot:where(.xl\:rt-r-size-3){
|
|
23067
|
+
font-size: var(--font-size-3);
|
|
23068
|
+
line-height: var(--line-height-3);
|
|
23069
|
+
--chatbar-attachment-thumb: var(--space-9);
|
|
23070
|
+
--chatbar-remove-offset: var(--space-3);
|
|
23071
|
+
--chatbar-attachments-radius: min(var(--radius-7), calc(var(--radius-3) + var(--space-3)));
|
|
23072
|
+
}
|
|
23073
|
+
}
|
|
22572
23074
|
.radix-themes:where([data-is-root-theme='true']){
|
|
22573
23075
|
position: relative;
|
|
22574
23076
|
z-index: 0;
|