@alpaca-editor/core 1.0.3955 → 1.0.3959
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/build.css +1 -1
- package/dist/components/ui/badge.d.ts +9 -0
- package/dist/components/ui/badge.js +23 -0
- package/dist/components/ui/badge.js.map +1 -0
- package/dist/components/ui/button.js +3 -3
- package/dist/components/ui/button.js.map +1 -1
- package/dist/components/ui/command.d.ts +18 -0
- package/dist/components/ui/command.js +35 -0
- package/dist/components/ui/command.js.map +1 -0
- package/dist/components/ui/dialog.d.ts +15 -0
- package/dist/components/ui/dialog.js +37 -0
- package/dist/components/ui/dialog.js.map +1 -0
- package/dist/components/ui/dropdown-menu.d.ts +25 -0
- package/dist/components/ui/dropdown-menu.js +52 -0
- package/dist/components/ui/dropdown-menu.js.map +1 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/input.js +7 -0
- package/dist/components/ui/input.js.map +1 -0
- package/dist/components/ui/menubar.d.ts +26 -0
- package/dist/components/ui/menubar.js +55 -0
- package/dist/components/ui/menubar.js.map +1 -0
- package/dist/components/ui/popover.d.ts +9 -0
- package/dist/components/ui/popover.js +63 -0
- package/dist/components/ui/popover.js.map +1 -0
- package/dist/components/ui/switch.d.ts +4 -0
- package/dist/components/ui/switch.js +9 -0
- package/dist/components/ui/switch.js.map +1 -0
- package/dist/components/ui/tooltip.d.ts +7 -0
- package/dist/components/ui/tooltip.js +18 -0
- package/dist/components/ui/tooltip.js.map +1 -0
- package/dist/config/config.js +79 -63
- package/dist/config/config.js.map +1 -1
- package/dist/config/types.d.ts +3 -3
- package/dist/editor/ContentTree.js +1 -1
- package/dist/editor/ContentTree.js.map +1 -1
- package/dist/editor/Editor.js +6 -2
- package/dist/editor/Editor.js.map +1 -1
- package/dist/editor/FieldList.js +1 -1
- package/dist/editor/FieldList.js.map +1 -1
- package/dist/editor/FieldListField.js +1 -1
- package/dist/editor/FieldListField.js.map +1 -1
- package/dist/editor/ImageEditor.js +16 -6
- package/dist/editor/ImageEditor.js.map +1 -1
- package/dist/editor/MainLayout.js +4 -4
- package/dist/editor/MainLayout.js.map +1 -1
- package/dist/editor/MobileLayout.js +3 -3
- package/dist/editor/MobileLayout.js.map +1 -1
- package/dist/editor/PictureEditor.js +29 -15
- package/dist/editor/PictureEditor.js.map +1 -1
- package/dist/editor/Titlebar.js +6 -11
- package/dist/editor/Titlebar.js.map +1 -1
- package/dist/editor/ai/GhostWriter.js +1 -1
- package/dist/editor/ai/GhostWriter.js.map +1 -1
- package/dist/editor/client/EditorClient.d.ts +4 -2
- package/dist/editor/client/EditorClient.js +32 -11
- package/dist/editor/client/EditorClient.js.map +1 -1
- package/dist/editor/client/editContext.d.ts +4 -1
- package/dist/editor/client/editContext.js.map +1 -1
- package/dist/editor/client/operations.js +2 -2
- package/dist/editor/client/pageModelBuilder.js +3 -6
- package/dist/editor/client/pageModelBuilder.js.map +1 -1
- package/dist/editor/commands/itemCommands.d.ts +2 -0
- package/dist/editor/commands/itemCommands.js +180 -0
- package/dist/editor/commands/itemCommands.js.map +1 -1
- package/dist/editor/field-types/MultiLineText.js +1 -1
- package/dist/editor/field-types/MultiLineText.js.map +1 -1
- package/dist/editor/field-types/SingleLineText.js +1 -1
- package/dist/editor/field-types/SingleLineText.js.map +1 -1
- package/dist/editor/menubar/ActiveUsers.js +98 -4
- package/dist/editor/menubar/ActiveUsers.js.map +1 -1
- package/dist/editor/menubar/{ActionsMenu.d.ts → ItemActionsMenu.d.ts} +1 -1
- package/dist/editor/menubar/ItemActionsMenu.js +23 -0
- package/dist/editor/menubar/ItemActionsMenu.js.map +1 -0
- package/dist/editor/menubar/ItemLanguageVersion.js +2 -2
- package/dist/editor/menubar/ItemLanguageVersion.js.map +1 -1
- package/dist/editor/menubar/LanguageSelector.d.ts +1 -2
- package/dist/editor/menubar/LanguageSelector.js +23 -23
- package/dist/editor/menubar/LanguageSelector.js.map +1 -1
- package/dist/editor/menubar/PageSelector.js +7 -8
- package/dist/editor/menubar/PageSelector.js.map +1 -1
- package/dist/editor/menubar/PageViewerControls.js +22 -19
- package/dist/editor/menubar/PageViewerControls.js.map +1 -1
- package/dist/editor/menubar/PreviewSecondaryControls.js +2 -3
- package/dist/editor/menubar/PreviewSecondaryControls.js.map +1 -1
- package/dist/editor/menubar/User.js +1 -1
- package/dist/editor/menubar/User.js.map +1 -1
- package/dist/editor/menubar/VersionSelector.js +36 -31
- package/dist/editor/menubar/VersionSelector.js.map +1 -1
- package/dist/editor/menubar/WorkflowButton.d.ts +1 -0
- package/dist/editor/menubar/WorkflowButton.js +41 -0
- package/dist/editor/menubar/WorkflowButton.js.map +1 -0
- package/dist/editor/page-editor-chrome/FrameMenu.js +5 -5
- package/dist/editor/page-editor-chrome/FrameMenu.js.map +1 -1
- package/dist/editor/page-editor-chrome/SuggestionHighlightings.js +2 -2
- package/dist/editor/page-editor-chrome/SuggestionHighlightings.js.map +1 -1
- package/dist/editor/page-viewer/EditorForm.d.ts +2 -1
- package/dist/editor/page-viewer/EditorForm.js +61 -49
- package/dist/editor/page-viewer/EditorForm.js.map +1 -1
- package/dist/editor/page-viewer/PageViewer.d.ts +2 -1
- package/dist/editor/page-viewer/PageViewer.js +28 -44
- package/dist/editor/page-viewer/PageViewer.js.map +1 -1
- package/dist/editor/page-viewer/PageViewerFrame.js +1 -1
- package/dist/editor/page-viewer/PageViewerFrame.js.map +1 -1
- package/dist/editor/reviews/Comments.js +9 -9
- package/dist/editor/reviews/Comments.js.map +1 -1
- package/dist/editor/reviews/SuggestedEdit.js +3 -3
- package/dist/editor/services/contentService.d.ts +18 -0
- package/dist/editor/services/contentService.js +6 -0
- package/dist/editor/services/contentService.js.map +1 -1
- package/dist/editor/services/editService.d.ts +5 -0
- package/dist/editor/services/editService.js +4 -0
- package/dist/editor/services/editService.js.map +1 -1
- package/dist/editor/services/systemService.d.ts +2 -1
- package/dist/editor/services/systemService.js +4 -1
- package/dist/editor/services/systemService.js.map +1 -1
- package/dist/editor/sidebar/ComponentTree.js +26 -10
- package/dist/editor/sidebar/ComponentTree.js.map +1 -1
- package/dist/editor/sidebar/Divider.d.ts +6 -0
- package/dist/editor/sidebar/Divider.js +6 -0
- package/dist/editor/sidebar/Divider.js.map +1 -0
- package/dist/editor/sidebar/LeftToolbar.d.ts +1 -0
- package/dist/editor/sidebar/LeftToolbar.js +16 -0
- package/dist/editor/sidebar/LeftToolbar.js.map +1 -0
- package/dist/editor/sidebar/SEOInfo.d.ts +1 -0
- package/dist/editor/sidebar/SEOInfo.js +169 -0
- package/dist/editor/sidebar/SEOInfo.js.map +1 -0
- package/dist/editor/sidebar/Sidebar.js +1 -1
- package/dist/editor/sidebar/Sidebar.js.map +1 -1
- package/dist/editor/sidebar/SidebarView.d.ts +3 -2
- package/dist/editor/sidebar/SidebarView.js +22 -60
- package/dist/editor/sidebar/SidebarView.js.map +1 -1
- package/dist/editor/sidebar/ViewSelector.js +66 -20
- package/dist/editor/sidebar/ViewSelector.js.map +1 -1
- package/dist/editor/ui/Icons.d.ts +4 -0
- package/dist/editor/ui/Icons.js +15 -3
- package/dist/editor/ui/Icons.js.map +1 -1
- package/dist/editor/ui/Section.js +1 -1
- package/dist/editor/ui/Section.js.map +1 -1
- package/dist/editor/ui/SimpleIconButton.d.ts +1 -2
- package/dist/editor/ui/SimpleIconButton.js +8 -13
- package/dist/editor/ui/SimpleIconButton.js.map +1 -1
- package/dist/editor/ui/SimpleTabs.js +2 -2
- package/dist/editor/ui/SimpleTabs.js.map +1 -1
- package/dist/editor/ui/SimpleToolbar.js +1 -1
- package/dist/editor/ui/SimpleToolbar.js.map +1 -1
- package/dist/editor/ui/Splitter.d.ts +4 -0
- package/dist/editor/ui/Splitter.js +6 -7
- package/dist/editor/ui/Splitter.js.map +1 -1
- package/dist/editor/views/CompareView.js +16 -4
- package/dist/editor/views/CompareView.js.map +1 -1
- package/dist/editor/views/SingleEditView.d.ts +2 -1
- package/dist/editor/views/SingleEditView.js +2 -2
- package/dist/editor/views/SingleEditView.js.map +1 -1
- package/dist/page-wizard/steps/ContentStep.js +1 -1
- package/dist/page-wizard/steps/ContentStep.js.map +1 -1
- package/dist/revision.d.ts +2 -2
- package/dist/revision.js +2 -2
- package/dist/splash-screen/NewPage.js +8 -6
- package/dist/splash-screen/NewPage.js.map +1 -1
- package/dist/splash-screen/RecentPages.js +3 -8
- package/dist/splash-screen/RecentPages.js.map +1 -1
- package/dist/styles.css +1519 -543
- package/dist/tour/Tour.js +79 -10
- package/dist/tour/Tour.js.map +1 -1
- package/dist/tour/default-tour.js +55 -45
- package/dist/tour/default-tour.js.map +1 -1
- package/dist/types.d.ts +19 -1
- package/package.json +13 -5
- package/src/components/ui/badge.tsx +46 -0
- package/src/components/ui/button.tsx +3 -3
- package/src/components/ui/command.tsx +184 -0
- package/src/components/ui/dialog.tsx +143 -0
- package/src/components/ui/dropdown-menu.tsx +257 -0
- package/src/components/ui/input.tsx +21 -0
- package/src/components/ui/menubar.tsx +276 -0
- package/src/components/ui/popover.tsx +113 -0
- package/src/components/ui/switch.tsx +31 -0
- package/src/components/ui/tooltip.tsx +61 -0
- package/src/config/config.tsx +102 -65
- package/src/config/types.ts +3 -3
- package/src/editor/ContentTree.tsx +1 -1
- package/src/editor/Editor.tsx +8 -2
- package/src/editor/FieldList.tsx +2 -2
- package/src/editor/FieldListField.tsx +1 -1
- package/src/editor/ImageEditor.tsx +44 -21
- package/src/editor/MainLayout.tsx +21 -16
- package/src/editor/MobileLayout.tsx +3 -2
- package/src/editor/PictureEditor.tsx +74 -45
- package/src/editor/Titlebar.tsx +12 -24
- package/src/editor/ai/GhostWriter.tsx +1 -1
- package/src/editor/client/EditorClient.tsx +55 -13
- package/src/editor/client/editContext.ts +5 -0
- package/src/editor/client/operations.ts +2 -2
- package/src/editor/client/pageModelBuilder.ts +3 -7
- package/src/editor/commands/itemCommands.tsx +272 -0
- package/src/editor/field-types/MultiLineText.tsx +1 -1
- package/src/editor/field-types/SingleLineText.tsx +1 -1
- package/src/editor/menubar/ActiveUsers.tsx +271 -5
- package/src/editor/menubar/ItemActionsMenu.tsx +89 -0
- package/src/editor/menubar/ItemLanguageVersion.tsx +7 -5
- package/src/editor/menubar/LanguageSelector.tsx +105 -134
- package/src/editor/menubar/PageSelector.tsx +25 -27
- package/src/editor/menubar/PageViewerControls.tsx +126 -78
- package/src/editor/menubar/PreviewSecondaryControls.tsx +0 -2
- package/src/editor/menubar/User.tsx +2 -2
- package/src/editor/menubar/VersionSelector.tsx +124 -99
- package/src/editor/menubar/WorkflowButton.tsx +115 -0
- package/src/editor/page-editor-chrome/FrameMenu.tsx +5 -5
- package/src/editor/page-editor-chrome/SuggestionHighlightings.tsx +2 -2
- package/src/editor/page-viewer/EditorForm.tsx +112 -87
- package/src/editor/page-viewer/PageViewer.tsx +75 -92
- package/src/editor/page-viewer/PageViewerFrame.tsx +1 -1
- package/src/editor/reviews/Comments.tsx +19 -20
- package/src/editor/reviews/SuggestedEdit.tsx +3 -3
- package/src/editor/services/contentService.ts +28 -0
- package/src/editor/services/editService.ts +12 -0
- package/src/editor/services/systemService.ts +5 -2
- package/src/editor/sidebar/ComponentTree.tsx +34 -12
- package/src/editor/sidebar/Divider.tsx +22 -0
- package/src/editor/sidebar/LeftToolbar.tsx +36 -0
- package/src/editor/sidebar/SEOInfo.tsx +265 -0
- package/src/editor/sidebar/Sidebar.tsx +1 -0
- package/src/editor/sidebar/SidebarView.tsx +77 -111
- package/src/editor/sidebar/ViewSelector.tsx +211 -43
- package/src/editor/ui/Icons.tsx +155 -10
- package/src/editor/ui/Section.tsx +1 -1
- package/src/editor/ui/SimpleIconButton.tsx +30 -28
- package/src/editor/ui/SimpleTabs.tsx +3 -3
- package/src/editor/ui/SimpleToolbar.tsx +1 -1
- package/src/editor/ui/Splitter.tsx +14 -7
- package/src/editor/views/CompareView.tsx +23 -11
- package/src/editor/views/SingleEditView.tsx +3 -0
- package/src/page-wizard/steps/ContentStep.tsx +0 -1
- package/src/revision.ts +2 -2
- package/src/splash-screen/NewPage.tsx +18 -13
- package/src/splash-screen/RecentPages.tsx +4 -10
- package/src/tour/Tour.tsx +125 -34
- package/src/tour/default-tour.tsx +55 -45
- package/src/types.ts +21 -1
- package/styles.css +301 -1
- package/dist/editor/menubar/ActionsMenu.js +0 -49
- package/dist/editor/menubar/ActionsMenu.js.map +0 -1
- package/dist/editor/menubar/SecondaryControls.d.ts +0 -1
- package/dist/editor/menubar/SecondaryControls.js +0 -17
- package/dist/editor/menubar/SecondaryControls.js.map +0 -1
- package/src/editor/menubar/ActionsMenu.tsx +0 -94
- package/src/editor/menubar/SecondaryControls.tsx +0 -45
package/dist/styles.css
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
2
3
|
@layer theme {
|
|
3
4
|
:root, :host {
|
|
4
5
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
@@ -9,6 +10,7 @@
|
|
|
9
10
|
--color-red-400: oklch(70.4% 0.191 22.216);
|
|
10
11
|
--color-red-500: oklch(63.7% 0.237 25.331);
|
|
11
12
|
--color-red-600: oklch(57.7% 0.245 27.325);
|
|
13
|
+
--color-red-700: oklch(50.5% 0.213 27.518);
|
|
12
14
|
--color-red-800: oklch(44.4% 0.177 26.899);
|
|
13
15
|
--color-orange-100: oklch(95.4% 0.038 75.164);
|
|
14
16
|
--color-orange-400: oklch(75% 0.183 55.934);
|
|
@@ -49,6 +51,7 @@
|
|
|
49
51
|
--color-purple-200: oklch(90.2% 0.063 306.703);
|
|
50
52
|
--color-purple-400: oklch(71.4% 0.203 305.504);
|
|
51
53
|
--color-purple-500: oklch(62.7% 0.265 303.9);
|
|
54
|
+
--color-purple-600: oklch(55.8% 0.288 302.321);
|
|
52
55
|
--color-purple-800: oklch(43.8% 0.218 303.724);
|
|
53
56
|
--color-pink-400: oklch(71.8% 0.202 349.761);
|
|
54
57
|
--color-slate-100: oklch(96.8% 0.007 247.896);
|
|
@@ -93,8 +96,11 @@
|
|
|
93
96
|
--font-weight-medium: 500;
|
|
94
97
|
--font-weight-semibold: 600;
|
|
95
98
|
--font-weight-bold: 700;
|
|
99
|
+
--tracking-wider: 0.05em;
|
|
96
100
|
--tracking-widest: 0.1em;
|
|
101
|
+
--leading-tight: 1.25;
|
|
97
102
|
--leading-relaxed: 1.625;
|
|
103
|
+
--radius-xs: 0.125rem;
|
|
98
104
|
--radius-2xl: 1rem;
|
|
99
105
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
100
106
|
--animate-spin: spin 1s linear infinite;
|
|
@@ -105,16 +111,20 @@
|
|
|
105
111
|
--default-transition-duration: 150ms;
|
|
106
112
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
107
113
|
--font-inter: "Inter";
|
|
108
|
-
--color-
|
|
109
|
-
--color-
|
|
114
|
+
--color-dark: #111111;
|
|
115
|
+
--color-gray-3: #e4e2e2;
|
|
116
|
+
--color-gray-4: #f2f2f2;
|
|
117
|
+
--color-gray-5: #f5f5f5;
|
|
118
|
+
--color-component-blue: #209cfc;
|
|
110
119
|
--color-theme-secondary: #9650fb;
|
|
111
120
|
--color-theme-secondary-light: #f6eeff;
|
|
112
|
-
--color-neutral-350: #b4b4b4;
|
|
113
121
|
--text-2xs: 0.7rem;
|
|
114
122
|
--text-3xs: 0.6rem;
|
|
115
123
|
--animate-fadeIn: "fadeIn 0.5s ease-in-out";
|
|
116
124
|
--animate-fadeLeft: "fadeLeft 0.8s ease-in-out";
|
|
117
125
|
--animate-fadeRight: "fadeRight 0.8s ease-in-out";
|
|
126
|
+
--color-alpaca-blue: #209cfc;
|
|
127
|
+
--color-alpaca-blue-light: #41aafd;
|
|
118
128
|
}
|
|
119
129
|
}
|
|
120
130
|
@layer utilities {
|
|
@@ -130,6 +140,17 @@
|
|
|
130
140
|
.visible {
|
|
131
141
|
visibility: visible;
|
|
132
142
|
}
|
|
143
|
+
.sr-only {
|
|
144
|
+
position: absolute;
|
|
145
|
+
width: 1px;
|
|
146
|
+
height: 1px;
|
|
147
|
+
padding: 0;
|
|
148
|
+
margin: -1px;
|
|
149
|
+
overflow: hidden;
|
|
150
|
+
clip: rect(0, 0, 0, 0);
|
|
151
|
+
white-space: nowrap;
|
|
152
|
+
border-width: 0;
|
|
153
|
+
}
|
|
133
154
|
.absolute {
|
|
134
155
|
position: absolute;
|
|
135
156
|
}
|
|
@@ -160,6 +181,9 @@
|
|
|
160
181
|
.inset-4 {
|
|
161
182
|
inset: calc(var(--spacing) * 4);
|
|
162
183
|
}
|
|
184
|
+
.-top-1 {
|
|
185
|
+
top: calc(var(--spacing) * -1);
|
|
186
|
+
}
|
|
163
187
|
.top-0 {
|
|
164
188
|
top: calc(var(--spacing) * 0);
|
|
165
189
|
}
|
|
@@ -172,6 +196,9 @@
|
|
|
172
196
|
.top-3 {
|
|
173
197
|
top: calc(var(--spacing) * 3);
|
|
174
198
|
}
|
|
199
|
+
.top-4 {
|
|
200
|
+
top: calc(var(--spacing) * 4);
|
|
201
|
+
}
|
|
175
202
|
.top-10\.5 {
|
|
176
203
|
top: calc(var(--spacing) * 10.5);
|
|
177
204
|
}
|
|
@@ -187,6 +214,15 @@
|
|
|
187
214
|
.top-\[-1000px\] {
|
|
188
215
|
top: -1000px;
|
|
189
216
|
}
|
|
217
|
+
.top-\[50\%\] {
|
|
218
|
+
top: 50%;
|
|
219
|
+
}
|
|
220
|
+
.-right-0\.5 {
|
|
221
|
+
right: calc(var(--spacing) * -0.5);
|
|
222
|
+
}
|
|
223
|
+
.-right-1 {
|
|
224
|
+
right: calc(var(--spacing) * -1);
|
|
225
|
+
}
|
|
190
226
|
.-right-2 {
|
|
191
227
|
right: calc(var(--spacing) * -2);
|
|
192
228
|
}
|
|
@@ -199,12 +235,18 @@
|
|
|
199
235
|
.right-2 {
|
|
200
236
|
right: calc(var(--spacing) * 2);
|
|
201
237
|
}
|
|
238
|
+
.right-4 {
|
|
239
|
+
right: calc(var(--spacing) * 4);
|
|
240
|
+
}
|
|
202
241
|
.right-\[-12px\] {
|
|
203
242
|
right: -12px;
|
|
204
243
|
}
|
|
205
244
|
.right-\[-18px\] {
|
|
206
245
|
right: -18px;
|
|
207
246
|
}
|
|
247
|
+
.-bottom-0\.5 {
|
|
248
|
+
bottom: calc(var(--spacing) * -0.5);
|
|
249
|
+
}
|
|
208
250
|
.-bottom-1 {
|
|
209
251
|
bottom: calc(var(--spacing) * -1);
|
|
210
252
|
}
|
|
@@ -214,6 +256,9 @@
|
|
|
214
256
|
.bottom-1 {
|
|
215
257
|
bottom: calc(var(--spacing) * 1);
|
|
216
258
|
}
|
|
259
|
+
.bottom-2 {
|
|
260
|
+
bottom: calc(var(--spacing) * 2);
|
|
261
|
+
}
|
|
217
262
|
.bottom-8 {
|
|
218
263
|
bottom: calc(var(--spacing) * 8);
|
|
219
264
|
}
|
|
@@ -232,6 +277,9 @@
|
|
|
232
277
|
.left-\[45px\] {
|
|
233
278
|
left: 45px;
|
|
234
279
|
}
|
|
280
|
+
.left-\[50\%\] {
|
|
281
|
+
left: 50%;
|
|
282
|
+
}
|
|
235
283
|
.z-1 {
|
|
236
284
|
z-index: 1;
|
|
237
285
|
}
|
|
@@ -334,6 +382,9 @@
|
|
|
334
382
|
.mt-\[30px\] {
|
|
335
383
|
margin-top: 30px;
|
|
336
384
|
}
|
|
385
|
+
.mt-auto {
|
|
386
|
+
margin-top: auto;
|
|
387
|
+
}
|
|
337
388
|
.mr-1 {
|
|
338
389
|
margin-right: calc(var(--spacing) * 1);
|
|
339
390
|
}
|
|
@@ -370,6 +421,9 @@
|
|
|
370
421
|
.mb-\[-3px\] {
|
|
371
422
|
margin-bottom: -3px;
|
|
372
423
|
}
|
|
424
|
+
.-ml-1 {
|
|
425
|
+
margin-left: calc(var(--spacing) * -1);
|
|
426
|
+
}
|
|
373
427
|
.ml-0\.5 {
|
|
374
428
|
margin-left: calc(var(--spacing) * 0.5);
|
|
375
429
|
}
|
|
@@ -437,6 +491,10 @@
|
|
|
437
491
|
width: calc(var(--spacing) * 2);
|
|
438
492
|
height: calc(var(--spacing) * 2);
|
|
439
493
|
}
|
|
494
|
+
.size-2\.5 {
|
|
495
|
+
width: calc(var(--spacing) * 2.5);
|
|
496
|
+
height: calc(var(--spacing) * 2.5);
|
|
497
|
+
}
|
|
440
498
|
.size-3\.5 {
|
|
441
499
|
width: calc(var(--spacing) * 3.5);
|
|
442
500
|
height: calc(var(--spacing) * 3.5);
|
|
@@ -483,12 +541,12 @@
|
|
|
483
541
|
.h-8 {
|
|
484
542
|
height: calc(var(--spacing) * 8);
|
|
485
543
|
}
|
|
544
|
+
.h-9 {
|
|
545
|
+
height: calc(var(--spacing) * 9);
|
|
546
|
+
}
|
|
486
547
|
.h-10 {
|
|
487
548
|
height: calc(var(--spacing) * 10);
|
|
488
549
|
}
|
|
489
|
-
.h-11 {
|
|
490
|
-
height: calc(var(--spacing) * 11);
|
|
491
|
-
}
|
|
492
550
|
.h-12 {
|
|
493
551
|
height: calc(var(--spacing) * 12);
|
|
494
552
|
}
|
|
@@ -522,12 +580,18 @@
|
|
|
522
580
|
.h-96 {
|
|
523
581
|
height: calc(var(--spacing) * 96);
|
|
524
582
|
}
|
|
583
|
+
.h-\[1\.15rem\] {
|
|
584
|
+
height: 1.15rem;
|
|
585
|
+
}
|
|
525
586
|
.h-\[2px\] {
|
|
526
587
|
height: 2px;
|
|
527
588
|
}
|
|
528
589
|
.h-\[12px\] {
|
|
529
590
|
height: 12px;
|
|
530
591
|
}
|
|
592
|
+
.h-\[16px\] {
|
|
593
|
+
height: 16px;
|
|
594
|
+
}
|
|
531
595
|
.h-\[75vh\] {
|
|
532
596
|
height: 75vh;
|
|
533
597
|
}
|
|
@@ -537,6 +601,9 @@
|
|
|
537
601
|
.h-\[calc\(100vh-60px\)\] {
|
|
538
602
|
height: calc(100vh - 60px);
|
|
539
603
|
}
|
|
604
|
+
.h-auto {
|
|
605
|
+
height: auto;
|
|
606
|
+
}
|
|
540
607
|
.h-full {
|
|
541
608
|
height: 100%;
|
|
542
609
|
}
|
|
@@ -546,6 +613,9 @@
|
|
|
546
613
|
.max-h-\(--radix-context-menu-content-available-height\) {
|
|
547
614
|
max-height: var(--radix-context-menu-content-available-height);
|
|
548
615
|
}
|
|
616
|
+
.max-h-\(--radix-dropdown-menu-content-available-height\) {
|
|
617
|
+
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
618
|
+
}
|
|
549
619
|
.max-h-96 {
|
|
550
620
|
max-height: calc(var(--spacing) * 96);
|
|
551
621
|
}
|
|
@@ -558,9 +628,15 @@
|
|
|
558
628
|
.max-h-\[50vh\] {
|
|
559
629
|
max-height: 50vh;
|
|
560
630
|
}
|
|
631
|
+
.max-h-\[300px\] {
|
|
632
|
+
max-height: 300px;
|
|
633
|
+
}
|
|
561
634
|
.max-h-\[400px\] {
|
|
562
635
|
max-height: 400px;
|
|
563
636
|
}
|
|
637
|
+
.max-h-\[600px\] {
|
|
638
|
+
max-height: 600px;
|
|
639
|
+
}
|
|
564
640
|
.max-h-full {
|
|
565
641
|
max-height: 100%;
|
|
566
642
|
}
|
|
@@ -576,9 +652,6 @@
|
|
|
576
652
|
.min-h-10 {
|
|
577
653
|
min-height: calc(var(--spacing) * 10);
|
|
578
654
|
}
|
|
579
|
-
.min-h-11 {
|
|
580
|
-
min-height: calc(var(--spacing) * 11);
|
|
581
|
-
}
|
|
582
655
|
.min-h-\[100px\] {
|
|
583
656
|
min-height: 100px;
|
|
584
657
|
}
|
|
@@ -612,18 +685,27 @@
|
|
|
612
685
|
.w-6 {
|
|
613
686
|
width: calc(var(--spacing) * 6);
|
|
614
687
|
}
|
|
688
|
+
.w-7 {
|
|
689
|
+
width: calc(var(--spacing) * 7);
|
|
690
|
+
}
|
|
615
691
|
.w-8 {
|
|
616
692
|
width: calc(var(--spacing) * 8);
|
|
617
693
|
}
|
|
618
694
|
.w-10 {
|
|
619
695
|
width: calc(var(--spacing) * 10);
|
|
620
696
|
}
|
|
697
|
+
.w-11 {
|
|
698
|
+
width: calc(var(--spacing) * 11);
|
|
699
|
+
}
|
|
621
700
|
.w-12 {
|
|
622
701
|
width: calc(var(--spacing) * 12);
|
|
623
702
|
}
|
|
624
703
|
.w-16 {
|
|
625
704
|
width: calc(var(--spacing) * 16);
|
|
626
705
|
}
|
|
706
|
+
.w-18 {
|
|
707
|
+
width: calc(var(--spacing) * 18);
|
|
708
|
+
}
|
|
627
709
|
.w-20 {
|
|
628
710
|
width: calc(var(--spacing) * 20);
|
|
629
711
|
}
|
|
@@ -639,6 +721,15 @@
|
|
|
639
721
|
.w-56 {
|
|
640
722
|
width: calc(var(--spacing) * 56);
|
|
641
723
|
}
|
|
724
|
+
.w-64 {
|
|
725
|
+
width: calc(var(--spacing) * 64);
|
|
726
|
+
}
|
|
727
|
+
.w-72 {
|
|
728
|
+
width: calc(var(--spacing) * 72);
|
|
729
|
+
}
|
|
730
|
+
.w-80 {
|
|
731
|
+
width: calc(var(--spacing) * 80);
|
|
732
|
+
}
|
|
642
733
|
.w-96 {
|
|
643
734
|
width: calc(var(--spacing) * 96);
|
|
644
735
|
}
|
|
@@ -651,18 +742,21 @@
|
|
|
651
742
|
.w-\[16px\] {
|
|
652
743
|
width: 16px;
|
|
653
744
|
}
|
|
745
|
+
.w-\[95vw\] {
|
|
746
|
+
width: 95vw;
|
|
747
|
+
}
|
|
654
748
|
.w-\[100vw\] {
|
|
655
749
|
width: 100vw;
|
|
656
750
|
}
|
|
751
|
+
.w-auto {
|
|
752
|
+
width: auto;
|
|
753
|
+
}
|
|
657
754
|
.w-fit {
|
|
658
755
|
width: fit-content;
|
|
659
756
|
}
|
|
660
757
|
.w-full {
|
|
661
758
|
width: 100%;
|
|
662
759
|
}
|
|
663
|
-
.max-w-11 {
|
|
664
|
-
max-width: calc(var(--spacing) * 11);
|
|
665
|
-
}
|
|
666
760
|
.max-w-24 {
|
|
667
761
|
max-width: calc(var(--spacing) * 24);
|
|
668
762
|
}
|
|
@@ -672,12 +766,21 @@
|
|
|
672
766
|
.max-w-96 {
|
|
673
767
|
max-width: calc(var(--spacing) * 96);
|
|
674
768
|
}
|
|
769
|
+
.max-w-\[60px\] {
|
|
770
|
+
max-width: 60px;
|
|
771
|
+
}
|
|
675
772
|
.max-w-\[80px\] {
|
|
676
773
|
max-width: 80px;
|
|
677
774
|
}
|
|
775
|
+
.max-w-\[80vw\] {
|
|
776
|
+
max-width: 80vw;
|
|
777
|
+
}
|
|
678
778
|
.max-w-\[450px\] {
|
|
679
779
|
max-width: 450px;
|
|
680
780
|
}
|
|
781
|
+
.max-w-\[calc\(100\%-2rem\)\] {
|
|
782
|
+
max-width: calc(100% - 2rem);
|
|
783
|
+
}
|
|
681
784
|
.max-w-full {
|
|
682
785
|
max-width: 100%;
|
|
683
786
|
}
|
|
@@ -696,9 +799,6 @@
|
|
|
696
799
|
.min-w-40 {
|
|
697
800
|
min-width: calc(var(--spacing) * 40);
|
|
698
801
|
}
|
|
699
|
-
.min-w-48 {
|
|
700
|
-
min-width: calc(var(--spacing) * 48);
|
|
701
|
-
}
|
|
702
802
|
.min-w-64 {
|
|
703
803
|
min-width: calc(var(--spacing) * 64);
|
|
704
804
|
}
|
|
@@ -708,8 +808,14 @@
|
|
|
708
808
|
.min-w-\[8rem\] {
|
|
709
809
|
min-width: 8rem;
|
|
710
810
|
}
|
|
711
|
-
.min-w-\[
|
|
712
|
-
min-width:
|
|
811
|
+
.min-w-\[12rem\] {
|
|
812
|
+
min-width: 12rem;
|
|
813
|
+
}
|
|
814
|
+
.min-w-\[16px\] {
|
|
815
|
+
min-width: 16px;
|
|
816
|
+
}
|
|
817
|
+
.min-w-\[120px\] {
|
|
818
|
+
min-width: 120px;
|
|
713
819
|
}
|
|
714
820
|
.min-w-full {
|
|
715
821
|
min-width: 100%;
|
|
@@ -740,14 +846,35 @@
|
|
|
740
846
|
.origin-\(--radix-context-menu-content-transform-origin\) {
|
|
741
847
|
transform-origin: var(--radix-context-menu-content-transform-origin);
|
|
742
848
|
}
|
|
849
|
+
.origin-\(--radix-dropdown-menu-content-transform-origin\) {
|
|
850
|
+
transform-origin: var(--radix-dropdown-menu-content-transform-origin);
|
|
851
|
+
}
|
|
852
|
+
.origin-\(--radix-menubar-content-transform-origin\) {
|
|
853
|
+
transform-origin: var(--radix-menubar-content-transform-origin);
|
|
854
|
+
}
|
|
855
|
+
.origin-\(--radix-tooltip-content-transform-origin\) {
|
|
856
|
+
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
857
|
+
}
|
|
743
858
|
.-translate-x-1\/2 {
|
|
744
859
|
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
745
860
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
746
861
|
}
|
|
862
|
+
.translate-x-\[-50\%\] {
|
|
863
|
+
--tw-translate-x: -50%;
|
|
864
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
865
|
+
}
|
|
747
866
|
.-translate-y-1\/2 {
|
|
748
867
|
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
749
868
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
750
869
|
}
|
|
870
|
+
.translate-y-\[-50\%\] {
|
|
871
|
+
--tw-translate-y: -50%;
|
|
872
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
873
|
+
}
|
|
874
|
+
.translate-y-\[calc\(-50\%_-_2px\)\] {
|
|
875
|
+
--tw-translate-y: calc(-50% - 2px);
|
|
876
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
877
|
+
}
|
|
751
878
|
.-rotate-45 {
|
|
752
879
|
rotate: calc(45deg * -1);
|
|
753
880
|
}
|
|
@@ -757,6 +884,9 @@
|
|
|
757
884
|
.rotate-0 {
|
|
758
885
|
rotate: 0deg;
|
|
759
886
|
}
|
|
887
|
+
.rotate-45 {
|
|
888
|
+
rotate: 45deg;
|
|
889
|
+
}
|
|
760
890
|
.rotate-90 {
|
|
761
891
|
rotate: 90deg;
|
|
762
892
|
}
|
|
@@ -764,7 +894,7 @@
|
|
|
764
894
|
rotate: 180deg;
|
|
765
895
|
}
|
|
766
896
|
.transform {
|
|
767
|
-
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
897
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
768
898
|
}
|
|
769
899
|
.animate-bounce {
|
|
770
900
|
animation: var(--animate-bounce);
|
|
@@ -778,6 +908,9 @@
|
|
|
778
908
|
.animate-fadeRight {
|
|
779
909
|
animation: var(--animate-fadeRight);
|
|
780
910
|
}
|
|
911
|
+
.animate-in {
|
|
912
|
+
animation: enter var(--tw-duration,.15s)var(--tw-ease,ease);
|
|
913
|
+
}
|
|
781
914
|
.animate-ping {
|
|
782
915
|
animation: var(--animate-ping);
|
|
783
916
|
}
|
|
@@ -805,6 +938,9 @@
|
|
|
805
938
|
.cursor-none {
|
|
806
939
|
cursor: none;
|
|
807
940
|
}
|
|
941
|
+
.cursor-not-allowed {
|
|
942
|
+
cursor: not-allowed;
|
|
943
|
+
}
|
|
808
944
|
.cursor-ns-resize {
|
|
809
945
|
cursor: ns-resize;
|
|
810
946
|
}
|
|
@@ -820,15 +956,15 @@
|
|
|
820
956
|
.resize-none {
|
|
821
957
|
resize: none;
|
|
822
958
|
}
|
|
959
|
+
.scroll-py-1 {
|
|
960
|
+
scroll-padding-block: calc(var(--spacing) * 1);
|
|
961
|
+
}
|
|
823
962
|
.break-after-all {
|
|
824
963
|
break-after: all;
|
|
825
964
|
}
|
|
826
965
|
.grid-cols-1 {
|
|
827
966
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
828
967
|
}
|
|
829
|
-
.grid-cols-2 {
|
|
830
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
831
|
-
}
|
|
832
968
|
.grid-cols-6 {
|
|
833
969
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
834
970
|
}
|
|
@@ -841,6 +977,9 @@
|
|
|
841
977
|
.flex-col {
|
|
842
978
|
flex-direction: column;
|
|
843
979
|
}
|
|
980
|
+
.flex-col-reverse {
|
|
981
|
+
flex-direction: column-reverse;
|
|
982
|
+
}
|
|
844
983
|
.flex-row {
|
|
845
984
|
flex-direction: row;
|
|
846
985
|
}
|
|
@@ -939,6 +1078,13 @@
|
|
|
939
1078
|
.gap-x-3 {
|
|
940
1079
|
column-gap: calc(var(--spacing) * 3);
|
|
941
1080
|
}
|
|
1081
|
+
.-space-x-2 {
|
|
1082
|
+
:where(& > :not(:last-child)) {
|
|
1083
|
+
--tw-space-x-reverse: 0;
|
|
1084
|
+
margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse));
|
|
1085
|
+
margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
942
1088
|
.space-x-1 {
|
|
943
1089
|
:where(& > :not(:last-child)) {
|
|
944
1090
|
--tw-space-x-reverse: 0;
|
|
@@ -992,6 +1138,12 @@
|
|
|
992
1138
|
.rounded {
|
|
993
1139
|
border-radius: 0.25rem;
|
|
994
1140
|
}
|
|
1141
|
+
.rounded-2xl {
|
|
1142
|
+
border-radius: var(--radius-2xl);
|
|
1143
|
+
}
|
|
1144
|
+
.rounded-\[2px\] {
|
|
1145
|
+
border-radius: 2px;
|
|
1146
|
+
}
|
|
995
1147
|
.rounded-full {
|
|
996
1148
|
border-radius: calc(infinity * 1px);
|
|
997
1149
|
}
|
|
@@ -1007,9 +1159,15 @@
|
|
|
1007
1159
|
.rounded-sm {
|
|
1008
1160
|
border-radius: calc(var(--radius) - 4px);
|
|
1009
1161
|
}
|
|
1010
|
-
.rounded-
|
|
1011
|
-
border-
|
|
1012
|
-
|
|
1162
|
+
.rounded-xl {
|
|
1163
|
+
border-radius: calc(var(--radius) + 4px);
|
|
1164
|
+
}
|
|
1165
|
+
.rounded-xs {
|
|
1166
|
+
border-radius: var(--radius-xs);
|
|
1167
|
+
}
|
|
1168
|
+
.rounded-t {
|
|
1169
|
+
border-top-left-radius: 0.25rem;
|
|
1170
|
+
border-top-right-radius: 0.25rem;
|
|
1013
1171
|
}
|
|
1014
1172
|
.rounded-t-sm {
|
|
1015
1173
|
border-top-left-radius: calc(var(--radius) - 4px);
|
|
@@ -1029,8 +1187,8 @@
|
|
|
1029
1187
|
border-bottom-right-radius: calc(var(--radius) - 4px);
|
|
1030
1188
|
border-bottom-left-radius: calc(var(--radius) - 4px);
|
|
1031
1189
|
}
|
|
1032
|
-
.rounded-bl
|
|
1033
|
-
border-bottom-left-radius:
|
|
1190
|
+
.rounded-bl {
|
|
1191
|
+
border-bottom-left-radius: 0.25rem;
|
|
1034
1192
|
}
|
|
1035
1193
|
.border {
|
|
1036
1194
|
border-style: var(--tw-border-style);
|
|
@@ -1105,6 +1263,15 @@
|
|
|
1105
1263
|
.border-blue-500 {
|
|
1106
1264
|
border-color: var(--color-blue-500);
|
|
1107
1265
|
}
|
|
1266
|
+
.border-component-blue {
|
|
1267
|
+
border-color: var(--color-component-blue);
|
|
1268
|
+
}
|
|
1269
|
+
.border-gray-3 {
|
|
1270
|
+
border-color: var(--color-gray-3);
|
|
1271
|
+
}
|
|
1272
|
+
.border-gray-4 {
|
|
1273
|
+
border-color: var(--color-gray-4);
|
|
1274
|
+
}
|
|
1108
1275
|
.border-gray-100 {
|
|
1109
1276
|
border-color: var(--color-gray-100);
|
|
1110
1277
|
}
|
|
@@ -1123,6 +1290,9 @@
|
|
|
1123
1290
|
.border-green-500 {
|
|
1124
1291
|
border-color: var(--color-green-500);
|
|
1125
1292
|
}
|
|
1293
|
+
.border-input {
|
|
1294
|
+
border-color: var(--input);
|
|
1295
|
+
}
|
|
1126
1296
|
.border-neutral-200 {
|
|
1127
1297
|
border-color: var(--color-neutral-200);
|
|
1128
1298
|
}
|
|
@@ -1178,10 +1348,16 @@
|
|
|
1178
1348
|
background-color: var(--color-black);
|
|
1179
1349
|
}
|
|
1180
1350
|
.bg-black\/20 {
|
|
1181
|
-
background-color: color-mix(in
|
|
1351
|
+
background-color: color-mix(in srgb, #000 20%, transparent);
|
|
1352
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1353
|
+
background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
|
|
1354
|
+
}
|
|
1182
1355
|
}
|
|
1183
1356
|
.bg-black\/50 {
|
|
1184
|
-
background-color: color-mix(in
|
|
1357
|
+
background-color: color-mix(in srgb, #000 50%, transparent);
|
|
1358
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1359
|
+
background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
|
|
1360
|
+
}
|
|
1185
1361
|
}
|
|
1186
1362
|
.bg-blue-50 {
|
|
1187
1363
|
background-color: var(--color-blue-50);
|
|
@@ -1201,6 +1377,9 @@
|
|
|
1201
1377
|
.bg-border {
|
|
1202
1378
|
background-color: var(--border);
|
|
1203
1379
|
}
|
|
1380
|
+
.bg-component-blue {
|
|
1381
|
+
background-color: var(--color-component-blue);
|
|
1382
|
+
}
|
|
1204
1383
|
.bg-cyan-100 {
|
|
1205
1384
|
background-color: var(--color-cyan-100);
|
|
1206
1385
|
}
|
|
@@ -1208,16 +1387,31 @@
|
|
|
1208
1387
|
background-color: var(--destructive);
|
|
1209
1388
|
}
|
|
1210
1389
|
.bg-emerald-400\/30 {
|
|
1211
|
-
background-color: color-mix(in
|
|
1390
|
+
background-color: color-mix(in srgb, oklch(76.5% 0.177 163.223) 30%, transparent);
|
|
1391
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1392
|
+
background-color: color-mix(in oklab, var(--color-emerald-400) 30%, transparent);
|
|
1393
|
+
}
|
|
1212
1394
|
}
|
|
1213
1395
|
.bg-emerald-400\/70 {
|
|
1214
|
-
background-color: color-mix(in
|
|
1396
|
+
background-color: color-mix(in srgb, oklch(76.5% 0.177 163.223) 70%, transparent);
|
|
1397
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1398
|
+
background-color: color-mix(in oklab, var(--color-emerald-400) 70%, transparent);
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
.bg-gray-4 {
|
|
1402
|
+
background-color: var(--color-gray-4);
|
|
1403
|
+
}
|
|
1404
|
+
.bg-gray-5 {
|
|
1405
|
+
background-color: var(--color-gray-5);
|
|
1215
1406
|
}
|
|
1216
1407
|
.bg-gray-50 {
|
|
1217
1408
|
background-color: var(--color-gray-50);
|
|
1218
1409
|
}
|
|
1219
1410
|
.bg-gray-50\/70 {
|
|
1220
|
-
background-color: color-mix(in
|
|
1411
|
+
background-color: color-mix(in srgb, oklch(98.5% 0.002 247.839) 70%, transparent);
|
|
1412
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1413
|
+
background-color: color-mix(in oklab, var(--color-gray-50) 70%, transparent);
|
|
1414
|
+
}
|
|
1221
1415
|
}
|
|
1222
1416
|
.bg-gray-100 {
|
|
1223
1417
|
background-color: var(--color-gray-100);
|
|
@@ -1252,12 +1446,6 @@
|
|
|
1252
1446
|
.bg-neutral-100 {
|
|
1253
1447
|
background-color: var(--color-neutral-100);
|
|
1254
1448
|
}
|
|
1255
|
-
.bg-neutral-200 {
|
|
1256
|
-
background-color: var(--color-neutral-200);
|
|
1257
|
-
}
|
|
1258
|
-
.bg-neutral-350 {
|
|
1259
|
-
background-color: var(--color-neutral-350);
|
|
1260
|
-
}
|
|
1261
1449
|
.bg-orange-100 {
|
|
1262
1450
|
background-color: var(--color-orange-100);
|
|
1263
1451
|
}
|
|
@@ -1273,6 +1461,9 @@
|
|
|
1273
1461
|
.bg-popover {
|
|
1274
1462
|
background-color: var(--popover);
|
|
1275
1463
|
}
|
|
1464
|
+
.bg-primary {
|
|
1465
|
+
background-color: var(--primary);
|
|
1466
|
+
}
|
|
1276
1467
|
.bg-purple-100 {
|
|
1277
1468
|
background-color: var(--color-purple-100);
|
|
1278
1469
|
}
|
|
@@ -1310,7 +1501,10 @@
|
|
|
1310
1501
|
background-color: var(--color-slate-100);
|
|
1311
1502
|
}
|
|
1312
1503
|
.bg-slate-100\/50 {
|
|
1313
|
-
background-color: color-mix(in
|
|
1504
|
+
background-color: color-mix(in srgb, oklch(96.8% 0.007 247.896) 50%, transparent);
|
|
1505
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1506
|
+
background-color: color-mix(in oklab, var(--color-slate-100) 50%, transparent);
|
|
1507
|
+
}
|
|
1314
1508
|
}
|
|
1315
1509
|
.bg-teal-400 {
|
|
1316
1510
|
background-color: var(--color-teal-400);
|
|
@@ -1322,7 +1516,13 @@
|
|
|
1322
1516
|
background-color: var(--color-theme-secondary-light);
|
|
1323
1517
|
}
|
|
1324
1518
|
.bg-theme-secondary\/20 {
|
|
1325
|
-
background-color: color-mix(in
|
|
1519
|
+
background-color: color-mix(in srgb, #9650fb 20%, transparent);
|
|
1520
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1521
|
+
background-color: color-mix(in oklab, var(--color-theme-secondary) 20%, transparent);
|
|
1522
|
+
}
|
|
1523
|
+
}
|
|
1524
|
+
.bg-transparent {
|
|
1525
|
+
background-color: transparent;
|
|
1326
1526
|
}
|
|
1327
1527
|
.bg-white {
|
|
1328
1528
|
background-color: var(--color-white);
|
|
@@ -1340,19 +1540,19 @@
|
|
|
1340
1540
|
--tw-gradient-position: to right in oklab;
|
|
1341
1541
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1342
1542
|
}
|
|
1343
|
-
.from-
|
|
1344
|
-
--tw-gradient-from: var(--color-
|
|
1543
|
+
.from-blue-500 {
|
|
1544
|
+
--tw-gradient-from: var(--color-blue-500);
|
|
1345
1545
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1346
1546
|
}
|
|
1347
|
-
.
|
|
1348
|
-
--tw-gradient-
|
|
1349
|
-
}
|
|
1350
|
-
.to-indigo-950 {
|
|
1351
|
-
--tw-gradient-to: var(--color-indigo-950);
|
|
1547
|
+
.to-purple-500 {
|
|
1548
|
+
--tw-gradient-to: var(--color-purple-500);
|
|
1352
1549
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1353
1550
|
}
|
|
1354
1551
|
.fill-current {
|
|
1355
|
-
fill:
|
|
1552
|
+
fill: currentcolor;
|
|
1553
|
+
}
|
|
1554
|
+
.fill-primary {
|
|
1555
|
+
fill: var(--primary);
|
|
1356
1556
|
}
|
|
1357
1557
|
.object-contain {
|
|
1358
1558
|
object-fit: contain;
|
|
@@ -1426,6 +1626,9 @@
|
|
|
1426
1626
|
.px-7 {
|
|
1427
1627
|
padding-inline: calc(var(--spacing) * 7);
|
|
1428
1628
|
}
|
|
1629
|
+
.py-0\.5 {
|
|
1630
|
+
padding-block: calc(var(--spacing) * 0.5);
|
|
1631
|
+
}
|
|
1429
1632
|
.py-1 {
|
|
1430
1633
|
padding-block: calc(var(--spacing) * 1);
|
|
1431
1634
|
}
|
|
@@ -1444,11 +1647,17 @@
|
|
|
1444
1647
|
.py-5 {
|
|
1445
1648
|
padding-block: calc(var(--spacing) * 5);
|
|
1446
1649
|
}
|
|
1650
|
+
.py-6 {
|
|
1651
|
+
padding-block: calc(var(--spacing) * 6);
|
|
1652
|
+
}
|
|
1447
1653
|
.py-8 {
|
|
1448
1654
|
padding-block: calc(var(--spacing) * 8);
|
|
1449
1655
|
}
|
|
1450
|
-
.py-\[
|
|
1451
|
-
padding-block:
|
|
1656
|
+
.py-\[9px\] {
|
|
1657
|
+
padding-block: 9px;
|
|
1658
|
+
}
|
|
1659
|
+
.py-\[11px\] {
|
|
1660
|
+
padding-block: 11px;
|
|
1452
1661
|
}
|
|
1453
1662
|
.pt-0 {
|
|
1454
1663
|
padding-top: calc(var(--spacing) * 0);
|
|
@@ -1495,6 +1704,9 @@
|
|
|
1495
1704
|
.pb-6 {
|
|
1496
1705
|
padding-bottom: calc(var(--spacing) * 6);
|
|
1497
1706
|
}
|
|
1707
|
+
.pl-1 {
|
|
1708
|
+
padding-left: calc(var(--spacing) * 1);
|
|
1709
|
+
}
|
|
1498
1710
|
.pl-1\.5 {
|
|
1499
1711
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1500
1712
|
}
|
|
@@ -1563,10 +1775,18 @@
|
|
|
1563
1775
|
.text-\[12px\] {
|
|
1564
1776
|
font-size: 12px;
|
|
1565
1777
|
}
|
|
1778
|
+
.leading-none {
|
|
1779
|
+
--tw-leading: 1;
|
|
1780
|
+
line-height: 1;
|
|
1781
|
+
}
|
|
1566
1782
|
.leading-relaxed {
|
|
1567
1783
|
--tw-leading: var(--leading-relaxed);
|
|
1568
1784
|
line-height: var(--leading-relaxed);
|
|
1569
1785
|
}
|
|
1786
|
+
.leading-tight {
|
|
1787
|
+
--tw-leading: var(--leading-tight);
|
|
1788
|
+
line-height: var(--leading-tight);
|
|
1789
|
+
}
|
|
1570
1790
|
.font-bold {
|
|
1571
1791
|
--tw-font-weight: var(--font-weight-bold);
|
|
1572
1792
|
font-weight: var(--font-weight-bold);
|
|
@@ -1587,10 +1807,17 @@
|
|
|
1587
1807
|
--tw-font-weight: var(--font-weight-semibold);
|
|
1588
1808
|
font-weight: var(--font-weight-semibold);
|
|
1589
1809
|
}
|
|
1810
|
+
.tracking-wider {
|
|
1811
|
+
--tw-tracking: var(--tracking-wider);
|
|
1812
|
+
letter-spacing: var(--tracking-wider);
|
|
1813
|
+
}
|
|
1590
1814
|
.tracking-widest {
|
|
1591
1815
|
--tw-tracking: var(--tracking-widest);
|
|
1592
1816
|
letter-spacing: var(--tracking-widest);
|
|
1593
1817
|
}
|
|
1818
|
+
.text-balance {
|
|
1819
|
+
text-wrap: balance;
|
|
1820
|
+
}
|
|
1594
1821
|
.text-nowrap {
|
|
1595
1822
|
text-wrap: nowrap;
|
|
1596
1823
|
}
|
|
@@ -1624,6 +1851,9 @@
|
|
|
1624
1851
|
.text-cyan-800 {
|
|
1625
1852
|
color: var(--color-cyan-800);
|
|
1626
1853
|
}
|
|
1854
|
+
.text-dark {
|
|
1855
|
+
color: var(--color-dark);
|
|
1856
|
+
}
|
|
1627
1857
|
.text-foreground {
|
|
1628
1858
|
color: var(--foreground);
|
|
1629
1859
|
}
|
|
@@ -1712,7 +1942,10 @@
|
|
|
1712
1942
|
color: var(--color-theme-secondary);
|
|
1713
1943
|
}
|
|
1714
1944
|
.text-theme-secondary\/40 {
|
|
1715
|
-
color: color-mix(in
|
|
1945
|
+
color: color-mix(in srgb, #9650fb 40%, transparent);
|
|
1946
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1947
|
+
color: color-mix(in oklab, var(--color-theme-secondary) 40%, transparent);
|
|
1948
|
+
}
|
|
1716
1949
|
}
|
|
1717
1950
|
.text-white {
|
|
1718
1951
|
color: var(--color-white);
|
|
@@ -1793,15 +2026,25 @@
|
|
|
1793
2026
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
1794
2027
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1795
2028
|
}
|
|
2029
|
+
.ring-0 {
|
|
2030
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2031
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2032
|
+
}
|
|
1796
2033
|
.ring-2 {
|
|
1797
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
2034
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1798
2035
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1799
2036
|
}
|
|
1800
2037
|
.shadow-black {
|
|
1801
|
-
--tw-shadow-color:
|
|
2038
|
+
--tw-shadow-color: #000;
|
|
2039
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2040
|
+
--tw-shadow-color: color-mix(in oklab, var(--color-black) var(--tw-shadow-alpha), transparent);
|
|
2041
|
+
}
|
|
1802
2042
|
}
|
|
1803
2043
|
.shadow-blue-500\/50 {
|
|
1804
|
-
--tw-shadow-color: color-mix(in
|
|
2044
|
+
--tw-shadow-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 50%, transparent);
|
|
2045
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2046
|
+
--tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-blue-500) 50%, transparent) var(--tw-shadow-alpha), transparent);
|
|
2047
|
+
}
|
|
1805
2048
|
}
|
|
1806
2049
|
.ring-blue-500 {
|
|
1807
2050
|
--tw-ring-color: var(--color-blue-500);
|
|
@@ -1809,6 +2052,9 @@
|
|
|
1809
2052
|
.ring-purple-200 {
|
|
1810
2053
|
--tw-ring-color: var(--color-purple-200);
|
|
1811
2054
|
}
|
|
2055
|
+
.ring-offset-background {
|
|
2056
|
+
--tw-ring-offset-color: var(--background);
|
|
2057
|
+
}
|
|
1812
2058
|
.outline-hidden {
|
|
1813
2059
|
--tw-outline-style: none;
|
|
1814
2060
|
outline-style: none;
|
|
@@ -1826,6 +2072,7 @@
|
|
|
1826
2072
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
1827
2073
|
}
|
|
1828
2074
|
.drop-shadow {
|
|
2075
|
+
--tw-drop-shadow-size: drop-shadow(0 1px 2px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.1))) drop-shadow(0 1px 1px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.06)));
|
|
1829
2076
|
--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow( 0 1px 1px rgb(0 0 0 / 0.06));
|
|
1830
2077
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
1831
2078
|
}
|
|
@@ -1838,7 +2085,12 @@
|
|
|
1838
2085
|
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1839
2086
|
}
|
|
1840
2087
|
.transition {
|
|
1841
|
-
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter;
|
|
2088
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events;
|
|
2089
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2090
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2091
|
+
}
|
|
2092
|
+
.transition-\[color\,box-shadow\] {
|
|
2093
|
+
transition-property: color,box-shadow;
|
|
1842
2094
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1843
2095
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1844
2096
|
}
|
|
@@ -1904,6 +2156,18 @@
|
|
|
1904
2156
|
.\[animation-delay\:-0\.15s\] {
|
|
1905
2157
|
animation-delay: -0.15s;
|
|
1906
2158
|
}
|
|
2159
|
+
.fade-in {
|
|
2160
|
+
--tw-enter-opacity: 0;
|
|
2161
|
+
}
|
|
2162
|
+
.fade-in-0 {
|
|
2163
|
+
--tw-enter-opacity: 0;
|
|
2164
|
+
}
|
|
2165
|
+
.running {
|
|
2166
|
+
animation-play-state: running;
|
|
2167
|
+
}
|
|
2168
|
+
.zoom-in-95 {
|
|
2169
|
+
--tw-enter-scale: .95;
|
|
2170
|
+
}
|
|
1907
2171
|
.group-hover\:opacity-100 {
|
|
1908
2172
|
&:is(:where(.group):hover *) {
|
|
1909
2173
|
@media (hover: hover) {
|
|
@@ -1911,6 +2175,65 @@
|
|
|
1911
2175
|
}
|
|
1912
2176
|
}
|
|
1913
2177
|
}
|
|
2178
|
+
.selection\:bg-primary {
|
|
2179
|
+
& *::selection {
|
|
2180
|
+
background-color: var(--primary);
|
|
2181
|
+
}
|
|
2182
|
+
&::selection {
|
|
2183
|
+
background-color: var(--primary);
|
|
2184
|
+
}
|
|
2185
|
+
}
|
|
2186
|
+
.selection\:text-primary-foreground {
|
|
2187
|
+
& *::selection {
|
|
2188
|
+
color: var(--primary-foreground);
|
|
2189
|
+
}
|
|
2190
|
+
&::selection {
|
|
2191
|
+
color: var(--primary-foreground);
|
|
2192
|
+
}
|
|
2193
|
+
}
|
|
2194
|
+
.file\:inline-flex {
|
|
2195
|
+
&::file-selector-button {
|
|
2196
|
+
display: inline-flex;
|
|
2197
|
+
}
|
|
2198
|
+
}
|
|
2199
|
+
.file\:h-7 {
|
|
2200
|
+
&::file-selector-button {
|
|
2201
|
+
height: calc(var(--spacing) * 7);
|
|
2202
|
+
}
|
|
2203
|
+
}
|
|
2204
|
+
.file\:border-0 {
|
|
2205
|
+
&::file-selector-button {
|
|
2206
|
+
border-style: var(--tw-border-style);
|
|
2207
|
+
border-width: 0px;
|
|
2208
|
+
}
|
|
2209
|
+
}
|
|
2210
|
+
.file\:bg-transparent {
|
|
2211
|
+
&::file-selector-button {
|
|
2212
|
+
background-color: transparent;
|
|
2213
|
+
}
|
|
2214
|
+
}
|
|
2215
|
+
.file\:text-sm {
|
|
2216
|
+
&::file-selector-button {
|
|
2217
|
+
font-size: var(--text-sm);
|
|
2218
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2219
|
+
}
|
|
2220
|
+
}
|
|
2221
|
+
.file\:font-medium {
|
|
2222
|
+
&::file-selector-button {
|
|
2223
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
2224
|
+
font-weight: var(--font-weight-medium);
|
|
2225
|
+
}
|
|
2226
|
+
}
|
|
2227
|
+
.file\:text-foreground {
|
|
2228
|
+
&::file-selector-button {
|
|
2229
|
+
color: var(--foreground);
|
|
2230
|
+
}
|
|
2231
|
+
}
|
|
2232
|
+
.placeholder\:text-muted-foreground {
|
|
2233
|
+
&::placeholder {
|
|
2234
|
+
color: var(--muted-foreground);
|
|
2235
|
+
}
|
|
2236
|
+
}
|
|
1914
2237
|
.before\:me-6 {
|
|
1915
2238
|
&::before {
|
|
1916
2239
|
content: var(--tw-content);
|
|
@@ -2013,6 +2336,16 @@
|
|
|
2013
2336
|
}
|
|
2014
2337
|
}
|
|
2015
2338
|
}
|
|
2339
|
+
.hover\:bg-black\/40 {
|
|
2340
|
+
&:hover {
|
|
2341
|
+
@media (hover: hover) {
|
|
2342
|
+
background-color: color-mix(in srgb, #000 40%, transparent);
|
|
2343
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2344
|
+
background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
}
|
|
2348
|
+
}
|
|
2016
2349
|
.hover\:bg-blue-600 {
|
|
2017
2350
|
&:hover {
|
|
2018
2351
|
@media (hover: hover) {
|
|
@@ -2030,7 +2363,24 @@
|
|
|
2030
2363
|
.hover\:bg-destructive\/90 {
|
|
2031
2364
|
&:hover {
|
|
2032
2365
|
@media (hover: hover) {
|
|
2033
|
-
background-color:
|
|
2366
|
+
background-color: var(--destructive);
|
|
2367
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2368
|
+
background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
|
|
2369
|
+
}
|
|
2370
|
+
}
|
|
2371
|
+
}
|
|
2372
|
+
}
|
|
2373
|
+
.hover\:bg-gray-3 {
|
|
2374
|
+
&:hover {
|
|
2375
|
+
@media (hover: hover) {
|
|
2376
|
+
background-color: var(--color-gray-3);
|
|
2377
|
+
}
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
.hover\:bg-gray-5 {
|
|
2381
|
+
&:hover {
|
|
2382
|
+
@media (hover: hover) {
|
|
2383
|
+
background-color: var(--color-gray-5);
|
|
2034
2384
|
}
|
|
2035
2385
|
}
|
|
2036
2386
|
}
|
|
@@ -2107,14 +2457,44 @@
|
|
|
2107
2457
|
.hover\:bg-secondary\/80 {
|
|
2108
2458
|
&:hover {
|
|
2109
2459
|
@media (hover: hover) {
|
|
2110
|
-
background-color:
|
|
2460
|
+
background-color: var(--secondary);
|
|
2461
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2462
|
+
background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
|
|
2463
|
+
}
|
|
2111
2464
|
}
|
|
2112
2465
|
}
|
|
2113
2466
|
}
|
|
2114
2467
|
.hover\:bg-theme-secondary\/80 {
|
|
2115
2468
|
&:hover {
|
|
2116
2469
|
@media (hover: hover) {
|
|
2117
|
-
background-color: color-mix(in
|
|
2470
|
+
background-color: color-mix(in srgb, #9650fb 80%, transparent);
|
|
2471
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2472
|
+
background-color: color-mix(in oklab, var(--color-theme-secondary) 80%, transparent);
|
|
2473
|
+
}
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
}
|
|
2477
|
+
.hover\:bg-gradient-to-r {
|
|
2478
|
+
&:hover {
|
|
2479
|
+
@media (hover: hover) {
|
|
2480
|
+
--tw-gradient-position: to right in oklab;
|
|
2481
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
2482
|
+
}
|
|
2483
|
+
}
|
|
2484
|
+
}
|
|
2485
|
+
.hover\:from-blue-600 {
|
|
2486
|
+
&:hover {
|
|
2487
|
+
@media (hover: hover) {
|
|
2488
|
+
--tw-gradient-from: var(--color-blue-600);
|
|
2489
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
2490
|
+
}
|
|
2491
|
+
}
|
|
2492
|
+
}
|
|
2493
|
+
.hover\:to-purple-600 {
|
|
2494
|
+
&:hover {
|
|
2495
|
+
@media (hover: hover) {
|
|
2496
|
+
--tw-gradient-to: var(--color-purple-600);
|
|
2497
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
2118
2498
|
}
|
|
2119
2499
|
}
|
|
2120
2500
|
}
|
|
@@ -2188,6 +2568,13 @@
|
|
|
2188
2568
|
}
|
|
2189
2569
|
}
|
|
2190
2570
|
}
|
|
2571
|
+
.hover\:text-red-700 {
|
|
2572
|
+
&:hover {
|
|
2573
|
+
@media (hover: hover) {
|
|
2574
|
+
color: var(--color-red-700);
|
|
2575
|
+
}
|
|
2576
|
+
}
|
|
2577
|
+
}
|
|
2191
2578
|
.hover\:text-white {
|
|
2192
2579
|
&:hover {
|
|
2193
2580
|
@media (hover: hover) {
|
|
@@ -2248,13 +2635,13 @@
|
|
|
2248
2635
|
}
|
|
2249
2636
|
.focus\:ring-1 {
|
|
2250
2637
|
&:focus {
|
|
2251
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
2638
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2252
2639
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2253
2640
|
}
|
|
2254
2641
|
}
|
|
2255
2642
|
.focus\:ring-2 {
|
|
2256
2643
|
&:focus {
|
|
2257
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
2644
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2258
2645
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2259
2646
|
}
|
|
2260
2647
|
}
|
|
@@ -2268,6 +2655,11 @@
|
|
|
2268
2655
|
--tw-ring-color: var(--color-blue-500);
|
|
2269
2656
|
}
|
|
2270
2657
|
}
|
|
2658
|
+
.focus\:ring-ring {
|
|
2659
|
+
&:focus {
|
|
2660
|
+
--tw-ring-color: var(--ring);
|
|
2661
|
+
}
|
|
2662
|
+
}
|
|
2271
2663
|
.focus\:ring-theme-secondary {
|
|
2272
2664
|
&:focus {
|
|
2273
2665
|
--tw-ring-color: var(--color-theme-secondary);
|
|
@@ -2279,6 +2671,16 @@
|
|
|
2279
2671
|
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2280
2672
|
}
|
|
2281
2673
|
}
|
|
2674
|
+
.focus\:outline-hidden {
|
|
2675
|
+
&:focus {
|
|
2676
|
+
--tw-outline-style: none;
|
|
2677
|
+
outline-style: none;
|
|
2678
|
+
@media (forced-colors: active) {
|
|
2679
|
+
outline: 2px solid transparent;
|
|
2680
|
+
outline-offset: 2px;
|
|
2681
|
+
}
|
|
2682
|
+
}
|
|
2683
|
+
}
|
|
2282
2684
|
.focus\:outline-none {
|
|
2283
2685
|
&:focus {
|
|
2284
2686
|
--tw-outline-style: none;
|
|
@@ -2292,18 +2694,24 @@
|
|
|
2292
2694
|
}
|
|
2293
2695
|
.focus-visible\:ring-\[3px\] {
|
|
2294
2696
|
&:focus-visible {
|
|
2295
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,
|
|
2697
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
2296
2698
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2297
2699
|
}
|
|
2298
2700
|
}
|
|
2299
2701
|
.focus-visible\:ring-destructive\/20 {
|
|
2300
2702
|
&:focus-visible {
|
|
2301
|
-
--tw-ring-color:
|
|
2703
|
+
--tw-ring-color: var(--destructive);
|
|
2704
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2705
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
2706
|
+
}
|
|
2302
2707
|
}
|
|
2303
2708
|
}
|
|
2304
2709
|
.focus-visible\:ring-ring\/50 {
|
|
2305
2710
|
&:focus-visible {
|
|
2306
|
-
--tw-ring-color:
|
|
2711
|
+
--tw-ring-color: var(--ring);
|
|
2712
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2713
|
+
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
2714
|
+
}
|
|
2307
2715
|
}
|
|
2308
2716
|
}
|
|
2309
2717
|
.disabled\:pointer-events-none {
|
|
@@ -2353,7 +2761,10 @@
|
|
|
2353
2761
|
}
|
|
2354
2762
|
.aria-invalid\:ring-destructive\/20 {
|
|
2355
2763
|
&[aria-invalid="true"] {
|
|
2356
|
-
--tw-ring-color:
|
|
2764
|
+
--tw-ring-color: var(--destructive);
|
|
2765
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2766
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
2767
|
+
}
|
|
2357
2768
|
}
|
|
2358
2769
|
}
|
|
2359
2770
|
.data-\[disabled\]\:pointer-events-none {
|
|
@@ -2366,11 +2777,89 @@
|
|
|
2366
2777
|
opacity: 50%;
|
|
2367
2778
|
}
|
|
2368
2779
|
}
|
|
2780
|
+
.data-\[disabled\=true\]\:pointer-events-none {
|
|
2781
|
+
&[data-disabled="true"] {
|
|
2782
|
+
pointer-events: none;
|
|
2783
|
+
}
|
|
2784
|
+
}
|
|
2785
|
+
.data-\[disabled\=true\]\:opacity-50 {
|
|
2786
|
+
&[data-disabled="true"] {
|
|
2787
|
+
opacity: 50%;
|
|
2788
|
+
}
|
|
2789
|
+
}
|
|
2369
2790
|
.data-\[inset\]\:pl-8 {
|
|
2370
2791
|
&[data-inset] {
|
|
2371
2792
|
padding-left: calc(var(--spacing) * 8);
|
|
2372
2793
|
}
|
|
2373
2794
|
}
|
|
2795
|
+
.data-\[selected\=true\]\:bg-accent {
|
|
2796
|
+
&[data-selected="true"] {
|
|
2797
|
+
background-color: var(--accent);
|
|
2798
|
+
}
|
|
2799
|
+
}
|
|
2800
|
+
.data-\[selected\=true\]\:text-accent-foreground {
|
|
2801
|
+
&[data-selected="true"] {
|
|
2802
|
+
color: var(--accent-foreground);
|
|
2803
|
+
}
|
|
2804
|
+
}
|
|
2805
|
+
.data-\[side\=bottom\]\:slide-in-from-top-2 {
|
|
2806
|
+
&[data-side="bottom"] {
|
|
2807
|
+
--tw-enter-translate-y: calc(2*var(--spacing)*-1);
|
|
2808
|
+
}
|
|
2809
|
+
}
|
|
2810
|
+
.data-\[side\=left\]\:slide-in-from-right-2 {
|
|
2811
|
+
&[data-side="left"] {
|
|
2812
|
+
--tw-enter-translate-x: calc(2*var(--spacing));
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2815
|
+
.data-\[side\=right\]\:slide-in-from-left-2 {
|
|
2816
|
+
&[data-side="right"] {
|
|
2817
|
+
--tw-enter-translate-x: calc(2*var(--spacing)*-1);
|
|
2818
|
+
}
|
|
2819
|
+
}
|
|
2820
|
+
.data-\[side\=top\]\:slide-in-from-bottom-2 {
|
|
2821
|
+
&[data-side="top"] {
|
|
2822
|
+
--tw-enter-translate-y: calc(2*var(--spacing));
|
|
2823
|
+
}
|
|
2824
|
+
}
|
|
2825
|
+
.\*\*\:data-\[slot\=command-input-wrapper\]\:h-12 {
|
|
2826
|
+
:is(& *) {
|
|
2827
|
+
&[data-slot="command-input-wrapper"] {
|
|
2828
|
+
height: calc(var(--spacing) * 12);
|
|
2829
|
+
}
|
|
2830
|
+
}
|
|
2831
|
+
}
|
|
2832
|
+
.data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\] {
|
|
2833
|
+
&[data-state="checked"] {
|
|
2834
|
+
--tw-translate-x: calc(100% - 2px);
|
|
2835
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2836
|
+
}
|
|
2837
|
+
}
|
|
2838
|
+
.data-\[state\=checked\]\:bg-primary {
|
|
2839
|
+
&[data-state="checked"] {
|
|
2840
|
+
background-color: var(--primary);
|
|
2841
|
+
}
|
|
2842
|
+
}
|
|
2843
|
+
.data-\[state\=closed\]\:animate-out {
|
|
2844
|
+
&[data-state="closed"] {
|
|
2845
|
+
animation: exit var(--tw-duration,.15s)var(--tw-ease,ease);
|
|
2846
|
+
}
|
|
2847
|
+
}
|
|
2848
|
+
.data-\[state\=closed\]\:fade-out-0 {
|
|
2849
|
+
&[data-state="closed"] {
|
|
2850
|
+
--tw-exit-opacity: 0;
|
|
2851
|
+
}
|
|
2852
|
+
}
|
|
2853
|
+
.data-\[state\=closed\]\:zoom-out-95 {
|
|
2854
|
+
&[data-state="closed"] {
|
|
2855
|
+
--tw-exit-scale: .95;
|
|
2856
|
+
}
|
|
2857
|
+
}
|
|
2858
|
+
.data-\[state\=open\]\:animate-in {
|
|
2859
|
+
&[data-state="open"] {
|
|
2860
|
+
animation: enter var(--tw-duration,.15s)var(--tw-ease,ease);
|
|
2861
|
+
}
|
|
2862
|
+
}
|
|
2374
2863
|
.data-\[state\=open\]\:bg-accent {
|
|
2375
2864
|
&[data-state="open"] {
|
|
2376
2865
|
background-color: var(--accent);
|
|
@@ -2381,6 +2870,32 @@
|
|
|
2381
2870
|
color: var(--accent-foreground);
|
|
2382
2871
|
}
|
|
2383
2872
|
}
|
|
2873
|
+
.data-\[state\=open\]\:text-muted-foreground {
|
|
2874
|
+
&[data-state="open"] {
|
|
2875
|
+
color: var(--muted-foreground);
|
|
2876
|
+
}
|
|
2877
|
+
}
|
|
2878
|
+
.data-\[state\=open\]\:fade-in-0 {
|
|
2879
|
+
&[data-state="open"] {
|
|
2880
|
+
--tw-enter-opacity: 0;
|
|
2881
|
+
}
|
|
2882
|
+
}
|
|
2883
|
+
.data-\[state\=open\]\:zoom-in-95 {
|
|
2884
|
+
&[data-state="open"] {
|
|
2885
|
+
--tw-enter-scale: .95;
|
|
2886
|
+
}
|
|
2887
|
+
}
|
|
2888
|
+
.data-\[state\=unchecked\]\:translate-x-0 {
|
|
2889
|
+
&[data-state="unchecked"] {
|
|
2890
|
+
--tw-translate-x: calc(var(--spacing) * 0);
|
|
2891
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2892
|
+
}
|
|
2893
|
+
}
|
|
2894
|
+
.data-\[state\=unchecked\]\:bg-input {
|
|
2895
|
+
&[data-state="unchecked"] {
|
|
2896
|
+
background-color: var(--input);
|
|
2897
|
+
}
|
|
2898
|
+
}
|
|
2384
2899
|
.data-\[variant\=destructive\]\:text-destructive {
|
|
2385
2900
|
&[data-variant="destructive"] {
|
|
2386
2901
|
color: var(--destructive);
|
|
@@ -2389,7 +2904,10 @@
|
|
|
2389
2904
|
.data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
|
|
2390
2905
|
&[data-variant="destructive"] {
|
|
2391
2906
|
&:focus {
|
|
2392
|
-
background-color:
|
|
2907
|
+
background-color: var(--destructive);
|
|
2908
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2909
|
+
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
2910
|
+
}
|
|
2393
2911
|
}
|
|
2394
2912
|
}
|
|
2395
2913
|
}
|
|
@@ -2400,6 +2918,26 @@
|
|
|
2400
2918
|
}
|
|
2401
2919
|
}
|
|
2402
2920
|
}
|
|
2921
|
+
.sm\:max-w-lg {
|
|
2922
|
+
@media (width >= 40rem) {
|
|
2923
|
+
max-width: var(--container-lg);
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2926
|
+
.sm\:flex-row {
|
|
2927
|
+
@media (width >= 40rem) {
|
|
2928
|
+
flex-direction: row;
|
|
2929
|
+
}
|
|
2930
|
+
}
|
|
2931
|
+
.sm\:justify-end {
|
|
2932
|
+
@media (width >= 40rem) {
|
|
2933
|
+
justify-content: flex-end;
|
|
2934
|
+
}
|
|
2935
|
+
}
|
|
2936
|
+
.sm\:text-left {
|
|
2937
|
+
@media (width >= 40rem) {
|
|
2938
|
+
text-align: left;
|
|
2939
|
+
}
|
|
2940
|
+
}
|
|
2403
2941
|
.md\:relative {
|
|
2404
2942
|
@media (width >= 48rem) {
|
|
2405
2943
|
position: relative;
|
|
@@ -2460,9 +2998,9 @@
|
|
|
2460
2998
|
height: calc(var(--spacing) * 64);
|
|
2461
2999
|
}
|
|
2462
3000
|
}
|
|
2463
|
-
.md\:h-\[
|
|
3001
|
+
.md\:h-\[4px\] {
|
|
2464
3002
|
@media (width >= 48rem) {
|
|
2465
|
-
height:
|
|
3003
|
+
height: 4px;
|
|
2466
3004
|
}
|
|
2467
3005
|
}
|
|
2468
3006
|
.md\:h-auto {
|
|
@@ -2480,9 +3018,19 @@
|
|
|
2480
3018
|
min-height: 40vh;
|
|
2481
3019
|
}
|
|
2482
3020
|
}
|
|
2483
|
-
.md\:
|
|
3021
|
+
.md\:min-h-\[400px\] {
|
|
2484
3022
|
@media (width >= 48rem) {
|
|
2485
|
-
|
|
3023
|
+
min-height: 400px;
|
|
3024
|
+
}
|
|
3025
|
+
}
|
|
3026
|
+
.md\:w-1\/2 {
|
|
3027
|
+
@media (width >= 48rem) {
|
|
3028
|
+
width: calc(1/2 * 100%);
|
|
3029
|
+
}
|
|
3030
|
+
}
|
|
3031
|
+
.md\:w-8 {
|
|
3032
|
+
@media (width >= 48rem) {
|
|
3033
|
+
width: calc(var(--spacing) * 8);
|
|
2486
3034
|
}
|
|
2487
3035
|
}
|
|
2488
3036
|
.md\:w-64 {
|
|
@@ -2495,9 +3043,9 @@
|
|
|
2495
3043
|
width: calc(var(--spacing) * 96);
|
|
2496
3044
|
}
|
|
2497
3045
|
}
|
|
2498
|
-
.md\:w-\[
|
|
3046
|
+
.md\:w-\[4px\] {
|
|
2499
3047
|
@media (width >= 48rem) {
|
|
2500
|
-
width:
|
|
3048
|
+
width: 4px;
|
|
2501
3049
|
}
|
|
2502
3050
|
}
|
|
2503
3051
|
.md\:w-auto {
|
|
@@ -2617,19 +3165,28 @@
|
|
|
2617
3165
|
}
|
|
2618
3166
|
.dark\:bg-destructive\/60 {
|
|
2619
3167
|
@media (prefers-color-scheme: dark) {
|
|
2620
|
-
background-color:
|
|
3168
|
+
background-color: var(--destructive);
|
|
3169
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3170
|
+
background-color: color-mix(in oklab, var(--destructive) 60%, transparent);
|
|
3171
|
+
}
|
|
2621
3172
|
}
|
|
2622
3173
|
}
|
|
2623
3174
|
.dark\:bg-input\/30 {
|
|
2624
3175
|
@media (prefers-color-scheme: dark) {
|
|
2625
|
-
background-color:
|
|
3176
|
+
background-color: var(--input);
|
|
3177
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3178
|
+
background-color: color-mix(in oklab, var(--input) 30%, transparent);
|
|
3179
|
+
}
|
|
2626
3180
|
}
|
|
2627
3181
|
}
|
|
2628
3182
|
.dark\:hover\:bg-accent\/50 {
|
|
2629
3183
|
@media (prefers-color-scheme: dark) {
|
|
2630
3184
|
&:hover {
|
|
2631
3185
|
@media (hover: hover) {
|
|
2632
|
-
background-color:
|
|
3186
|
+
background-color: var(--accent);
|
|
3187
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3188
|
+
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
3189
|
+
}
|
|
2633
3190
|
}
|
|
2634
3191
|
}
|
|
2635
3192
|
}
|
|
@@ -2638,7 +3195,10 @@
|
|
|
2638
3195
|
@media (prefers-color-scheme: dark) {
|
|
2639
3196
|
&:hover {
|
|
2640
3197
|
@media (hover: hover) {
|
|
2641
|
-
background-color:
|
|
3198
|
+
background-color: var(--input);
|
|
3199
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3200
|
+
background-color: color-mix(in oklab, var(--input) 50%, transparent);
|
|
3201
|
+
}
|
|
2642
3202
|
}
|
|
2643
3203
|
}
|
|
2644
3204
|
}
|
|
@@ -2646,14 +3206,44 @@
|
|
|
2646
3206
|
.dark\:focus-visible\:ring-destructive\/40 {
|
|
2647
3207
|
@media (prefers-color-scheme: dark) {
|
|
2648
3208
|
&:focus-visible {
|
|
2649
|
-
--tw-ring-color:
|
|
3209
|
+
--tw-ring-color: var(--destructive);
|
|
3210
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3211
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
3212
|
+
}
|
|
2650
3213
|
}
|
|
2651
3214
|
}
|
|
2652
3215
|
}
|
|
2653
3216
|
.dark\:aria-invalid\:ring-destructive\/40 {
|
|
2654
3217
|
@media (prefers-color-scheme: dark) {
|
|
2655
3218
|
&[aria-invalid="true"] {
|
|
2656
|
-
--tw-ring-color:
|
|
3219
|
+
--tw-ring-color: var(--destructive);
|
|
3220
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3221
|
+
--tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
3222
|
+
}
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
3225
|
+
}
|
|
3226
|
+
.dark\:data-\[state\=checked\]\:bg-primary-foreground {
|
|
3227
|
+
@media (prefers-color-scheme: dark) {
|
|
3228
|
+
&[data-state="checked"] {
|
|
3229
|
+
background-color: var(--primary-foreground);
|
|
3230
|
+
}
|
|
3231
|
+
}
|
|
3232
|
+
}
|
|
3233
|
+
.dark\:data-\[state\=unchecked\]\:bg-foreground {
|
|
3234
|
+
@media (prefers-color-scheme: dark) {
|
|
3235
|
+
&[data-state="unchecked"] {
|
|
3236
|
+
background-color: var(--foreground);
|
|
3237
|
+
}
|
|
3238
|
+
}
|
|
3239
|
+
}
|
|
3240
|
+
.dark\:data-\[state\=unchecked\]\:bg-input\/80 {
|
|
3241
|
+
@media (prefers-color-scheme: dark) {
|
|
3242
|
+
&[data-state="unchecked"] {
|
|
3243
|
+
background-color: var(--input);
|
|
3244
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3245
|
+
background-color: color-mix(in oklab, var(--input) 80%, transparent);
|
|
3246
|
+
}
|
|
2657
3247
|
}
|
|
2658
3248
|
}
|
|
2659
3249
|
}
|
|
@@ -2661,11 +3251,86 @@
|
|
|
2661
3251
|
@media (prefers-color-scheme: dark) {
|
|
2662
3252
|
&[data-variant="destructive"] {
|
|
2663
3253
|
&:focus {
|
|
2664
|
-
background-color:
|
|
3254
|
+
background-color: var(--destructive);
|
|
3255
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3256
|
+
background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
3257
|
+
}
|
|
2665
3258
|
}
|
|
2666
3259
|
}
|
|
2667
3260
|
}
|
|
2668
3261
|
}
|
|
3262
|
+
.\[\&_\[cmdk-group-heading\]\]\:px-2 {
|
|
3263
|
+
& [cmdk-group-heading] {
|
|
3264
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
3265
|
+
}
|
|
3266
|
+
}
|
|
3267
|
+
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 {
|
|
3268
|
+
& [cmdk-group-heading] {
|
|
3269
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
3270
|
+
}
|
|
3271
|
+
}
|
|
3272
|
+
.\[\&_\[cmdk-group-heading\]\]\:text-xs {
|
|
3273
|
+
& [cmdk-group-heading] {
|
|
3274
|
+
font-size: var(--text-xs);
|
|
3275
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
3276
|
+
}
|
|
3277
|
+
}
|
|
3278
|
+
.\[\&_\[cmdk-group-heading\]\]\:font-medium {
|
|
3279
|
+
& [cmdk-group-heading] {
|
|
3280
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
3281
|
+
font-weight: var(--font-weight-medium);
|
|
3282
|
+
}
|
|
3283
|
+
}
|
|
3284
|
+
.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground {
|
|
3285
|
+
& [cmdk-group-heading] {
|
|
3286
|
+
color: var(--muted-foreground);
|
|
3287
|
+
}
|
|
3288
|
+
}
|
|
3289
|
+
.\[\&_\[cmdk-group\]\]\:px-2 {
|
|
3290
|
+
& [cmdk-group] {
|
|
3291
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
3292
|
+
}
|
|
3293
|
+
}
|
|
3294
|
+
.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 {
|
|
3295
|
+
& [cmdk-group]:not([hidden]) ~[cmdk-group] {
|
|
3296
|
+
padding-top: calc(var(--spacing) * 0);
|
|
3297
|
+
}
|
|
3298
|
+
}
|
|
3299
|
+
.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 {
|
|
3300
|
+
& [cmdk-input-wrapper] svg {
|
|
3301
|
+
height: calc(var(--spacing) * 5);
|
|
3302
|
+
}
|
|
3303
|
+
}
|
|
3304
|
+
.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 {
|
|
3305
|
+
& [cmdk-input-wrapper] svg {
|
|
3306
|
+
width: calc(var(--spacing) * 5);
|
|
3307
|
+
}
|
|
3308
|
+
}
|
|
3309
|
+
.\[\&_\[cmdk-input\]\]\:h-12 {
|
|
3310
|
+
& [cmdk-input] {
|
|
3311
|
+
height: calc(var(--spacing) * 12);
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
.\[\&_\[cmdk-item\]\]\:px-2 {
|
|
3315
|
+
& [cmdk-item] {
|
|
3316
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
3317
|
+
}
|
|
3318
|
+
}
|
|
3319
|
+
.\[\&_\[cmdk-item\]\]\:py-3 {
|
|
3320
|
+
& [cmdk-item] {
|
|
3321
|
+
padding-block: calc(var(--spacing) * 3);
|
|
3322
|
+
}
|
|
3323
|
+
}
|
|
3324
|
+
.\[\&_\[cmdk-item\]_svg\]\:h-5 {
|
|
3325
|
+
& [cmdk-item] svg {
|
|
3326
|
+
height: calc(var(--spacing) * 5);
|
|
3327
|
+
}
|
|
3328
|
+
}
|
|
3329
|
+
.\[\&_\[cmdk-item\]_svg\]\:w-5 {
|
|
3330
|
+
& [cmdk-item] svg {
|
|
3331
|
+
width: calc(var(--spacing) * 5);
|
|
3332
|
+
}
|
|
3333
|
+
}
|
|
2669
3334
|
.\[\&_li\]\:my-1 {
|
|
2670
3335
|
& li {
|
|
2671
3336
|
margin-block: calc(var(--spacing) * 1);
|
|
@@ -2721,491 +3386,698 @@
|
|
|
2721
3386
|
margin-top: calc(var(--spacing) * 4);
|
|
2722
3387
|
}
|
|
2723
3388
|
}
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
* {
|
|
2727
|
-
font-family: var(--font-inter), Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
2728
|
-
}
|
|
2729
|
-
html, body {
|
|
2730
|
-
font-family: var(--font-inter), Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
2731
|
-
}
|
|
2732
|
-
:root {
|
|
2733
|
-
--background: oklch(1 0 0);
|
|
2734
|
-
--foreground: oklch(0.145 0 0);
|
|
2735
|
-
--card: oklch(1 0 0);
|
|
2736
|
-
--card-foreground: oklch(0.145 0 0);
|
|
2737
|
-
--popover: oklch(1 0 0);
|
|
2738
|
-
--popover-foreground: oklch(0.145 0 0);
|
|
2739
|
-
--primary: oklch(0.205 0 0);
|
|
2740
|
-
--primary-foreground: oklch(0.985 0 0);
|
|
2741
|
-
--secondary: oklch(0.97 0 0);
|
|
2742
|
-
--secondary-foreground: oklch(0.205 0 0);
|
|
2743
|
-
--muted: oklch(0.97 0 0);
|
|
2744
|
-
--muted-foreground: oklch(0.556 0 0);
|
|
2745
|
-
--accent: oklch(0.97 0 0);
|
|
2746
|
-
--accent-foreground: oklch(0.205 0 0);
|
|
2747
|
-
--destructive: oklch(0.577 0.245 27.325);
|
|
2748
|
-
--destructive-foreground: oklch(0.577 0.245 27.325);
|
|
2749
|
-
--border: oklch(0.922 0 0);
|
|
2750
|
-
--input: oklch(0.922 0 0);
|
|
2751
|
-
--ring: oklch(0.708 0 0);
|
|
2752
|
-
--chart-1: oklch(0.646 0.222 41.116);
|
|
2753
|
-
--chart-2: oklch(0.6 0.118 184.704);
|
|
2754
|
-
--chart-3: oklch(0.398 0.07 227.392);
|
|
2755
|
-
--chart-4: oklch(0.828 0.189 84.429);
|
|
2756
|
-
--chart-5: oklch(0.769 0.188 70.08);
|
|
2757
|
-
--radius: 0.625rem;
|
|
2758
|
-
--sidebar: oklch(0.985 0 0);
|
|
2759
|
-
--sidebar-foreground: oklch(0.145 0 0);
|
|
2760
|
-
--sidebar-primary: oklch(0.205 0 0);
|
|
2761
|
-
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
2762
|
-
--sidebar-accent: oklch(0.97 0 0);
|
|
2763
|
-
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
2764
|
-
--sidebar-border: oklch(0.922 0 0);
|
|
2765
|
-
--sidebar-ring: oklch(0.708 0 0);
|
|
2766
|
-
--neutral-350: #b4b4b4;
|
|
2767
|
-
}
|
|
2768
|
-
.dark {
|
|
2769
|
-
--background: oklch(0.145 0 0);
|
|
2770
|
-
--foreground: oklch(0.985 0 0);
|
|
2771
|
-
--card: oklch(0.145 0 0);
|
|
2772
|
-
--card-foreground: oklch(0.985 0 0);
|
|
2773
|
-
--popover: oklch(0.145 0 0);
|
|
2774
|
-
--popover-foreground: oklch(0.985 0 0);
|
|
2775
|
-
--primary: oklch(0.985 0 0);
|
|
2776
|
-
--primary-foreground: oklch(0.205 0 0);
|
|
2777
|
-
--secondary: oklch(0.269 0 0);
|
|
2778
|
-
--secondary-foreground: oklch(0.985 0 0);
|
|
2779
|
-
--muted: oklch(0.269 0 0);
|
|
2780
|
-
--muted-foreground: oklch(0.708 0 0);
|
|
2781
|
-
--accent: oklch(0.269 0 0);
|
|
2782
|
-
--accent-foreground: oklch(0.985 0 0);
|
|
2783
|
-
--destructive: oklch(0.396 0.141 25.723);
|
|
2784
|
-
--destructive-foreground: oklch(0.637 0.237 25.331);
|
|
2785
|
-
--border: oklch(0.269 0 0);
|
|
2786
|
-
--input: oklch(0.269 0 0);
|
|
2787
|
-
--ring: oklch(0.439 0 0);
|
|
2788
|
-
--chart-1: oklch(0.488 0.243 264.376);
|
|
2789
|
-
--chart-2: oklch(0.696 0.17 162.48);
|
|
2790
|
-
--chart-3: oklch(0.769 0.188 70.08);
|
|
2791
|
-
--chart-4: oklch(0.627 0.265 303.9);
|
|
2792
|
-
--chart-5: oklch(0.645 0.246 16.439);
|
|
2793
|
-
--sidebar: oklch(0.205 0 0);
|
|
2794
|
-
--sidebar-foreground: oklch(0.985 0 0);
|
|
2795
|
-
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
2796
|
-
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
2797
|
-
--sidebar-accent: oklch(0.269 0 0);
|
|
2798
|
-
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
2799
|
-
--sidebar-border: oklch(0.269 0 0);
|
|
2800
|
-
--sidebar-ring: oklch(0.439 0 0);
|
|
2801
|
-
}
|
|
2802
|
-
@layer base {
|
|
2803
|
-
* {
|
|
2804
|
-
border-color: var(--border);
|
|
2805
|
-
outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
2806
|
-
}
|
|
2807
|
-
body {
|
|
2808
|
-
background-color: var(--background);
|
|
2809
|
-
color: var(--foreground);
|
|
2810
|
-
}
|
|
2811
|
-
}
|
|
2812
|
-
@layer alpaca-editor {
|
|
2813
|
-
.bg-shape-black {
|
|
2814
|
-
background-color: black;
|
|
2815
|
-
background-image: url("./images/bg-shape-black.webp");
|
|
2816
|
-
background-position: right;
|
|
2817
|
-
background-repeat: no-repeat;
|
|
2818
|
-
}
|
|
2819
|
-
.bg-wizard {
|
|
2820
|
-
background-image: url("./images/wizard-bg.png");
|
|
2821
|
-
background-position: right;
|
|
2822
|
-
background-size: cover;
|
|
2823
|
-
background-repeat: no-repeat;
|
|
2824
|
-
opacity: 0.2;
|
|
2825
|
-
}
|
|
2826
|
-
.bg-wizard-demo {
|
|
2827
|
-
background-image: url("./images/wizard.png");
|
|
2828
|
-
background-position: right;
|
|
2829
|
-
background-size: contain;
|
|
2830
|
-
background-repeat: no-repeat;
|
|
2831
|
-
}
|
|
2832
|
-
.bg-wizard-tour {
|
|
2833
|
-
background-image: url("./images/wizard-tour.png");
|
|
2834
|
-
background-position: right;
|
|
2835
|
-
background-size: contain;
|
|
2836
|
-
background-repeat: no-repeat;
|
|
2837
|
-
}
|
|
2838
|
-
.p-tree {
|
|
2839
|
-
background-color: unset;
|
|
2840
|
-
}
|
|
2841
|
-
.alpaceditor-tabs {
|
|
2842
|
-
display: flex;
|
|
2843
|
-
flex-direction: column;
|
|
2844
|
-
}
|
|
2845
|
-
.alpaca-no-border {
|
|
2846
|
-
border: none !important;
|
|
2847
|
-
}
|
|
2848
|
-
.alpaca-overflow-scroll {
|
|
2849
|
-
overflow: auto;
|
|
2850
|
-
}
|
|
2851
|
-
.alpaca-minor-label {
|
|
2852
|
-
display: block;
|
|
2853
|
-
font-size: 12px;
|
|
2854
|
-
font-weight: bold;
|
|
2855
|
-
}
|
|
2856
|
-
.p-tabview-panels {
|
|
2857
|
-
padding: 0;
|
|
2858
|
-
flex: 1;
|
|
2859
|
-
border-radius: 0;
|
|
2860
|
-
}
|
|
2861
|
-
.alpaca-editor-tabs div.p-tabview-panels {
|
|
2862
|
-
overflow: auto;
|
|
2863
|
-
height: calc(100% - 34px);
|
|
2864
|
-
}
|
|
2865
|
-
.p-splitter {
|
|
2866
|
-
border: 0;
|
|
2867
|
-
border-radius: 0;
|
|
2868
|
-
}
|
|
2869
|
-
[contentEditable="true"]:empty:before {
|
|
2870
|
-
content: attr(placeholder);
|
|
2871
|
-
opacity: 0.6;
|
|
2872
|
-
}
|
|
2873
|
-
[contenteditable] {
|
|
2874
|
-
outline: 0px solid transparent;
|
|
2875
|
-
}
|
|
2876
|
-
.p-tree {
|
|
2877
|
-
padding: 0;
|
|
2878
|
-
}
|
|
2879
|
-
.p-treenode-content {
|
|
2880
|
-
padding: 0;
|
|
2881
|
-
}
|
|
2882
|
-
.p-treenode {
|
|
2883
|
-
padding: 1px;
|
|
2884
|
-
font-size: 12px;
|
|
2885
|
-
}
|
|
2886
|
-
div.p-tree .p-treenode-droppoint {
|
|
2887
|
-
height: 3px;
|
|
2888
|
-
}
|
|
2889
|
-
.placeholder > div {
|
|
2890
|
-
opacity: 1;
|
|
2891
|
-
transition: 0.3s;
|
|
2892
|
-
}
|
|
2893
|
-
.placeholder.hidden > div {
|
|
2894
|
-
opacity: 0;
|
|
2895
|
-
}
|
|
2896
|
-
.placeholder.hidden {
|
|
2897
|
-
height: 0;
|
|
2898
|
-
width: 0;
|
|
2899
|
-
padding: 0;
|
|
2900
|
-
opacity: 0;
|
|
2901
|
-
visibility: hidden;
|
|
2902
|
-
transition: none;
|
|
2903
|
-
}
|
|
2904
|
-
.editframe.removed {
|
|
2905
|
-
transition: all 0.7s;
|
|
2906
|
-
opacity: 0;
|
|
2907
|
-
}
|
|
2908
|
-
.p-dropdown {
|
|
2909
|
-
border-color: #ddd;
|
|
2910
|
-
}
|
|
2911
|
-
.p-dropdown-trigger {
|
|
2912
|
-
color: #ddd;
|
|
2913
|
-
}
|
|
2914
|
-
.p-dropdown-label.p-inputtext {
|
|
2915
|
-
padding: 5px;
|
|
2916
|
-
font-size: 12px;
|
|
2917
|
-
}
|
|
2918
|
-
.p-dropdown-item {
|
|
2919
|
-
font-size: 12px;
|
|
2920
|
-
padding: 8px;
|
|
2921
|
-
}
|
|
2922
|
-
.p-inputtext:not(.p-dropdown-label) {
|
|
2923
|
-
padding: 5px;
|
|
2924
|
-
border: 1px solid #ddd;
|
|
2925
|
-
}
|
|
2926
|
-
input, select, textarea {
|
|
2927
|
-
border-width: 1px;
|
|
2928
|
-
}
|
|
2929
|
-
div.p-tabview .p-tabview-nav li .p-tabview-nav-link {
|
|
2930
|
-
padding: 16px 32px;
|
|
2931
|
-
}
|
|
2932
|
-
.p-highlight .p-tabview-nav-link {
|
|
2933
|
-
color: black;
|
|
2934
|
-
border-color: black;
|
|
2935
|
-
}
|
|
2936
|
-
.p-tabview-nav-link:focus {
|
|
2937
|
-
background-color: unset;
|
|
2938
|
-
}
|
|
2939
|
-
.p-menuitem-text {
|
|
2940
|
-
font-size: 12px;
|
|
2941
|
-
}
|
|
2942
|
-
.p-sidebar-header.p-sidebar-custom-header {
|
|
2943
|
-
justify-content: space-between;
|
|
2944
|
-
font-weight: bold;
|
|
2945
|
-
font-size: 18px;
|
|
2946
|
-
}
|
|
2947
|
-
.inserting-placeholder {
|
|
2948
|
-
min-width: 50px;
|
|
2949
|
-
}
|
|
2950
|
-
.editframe:has(.placeholder-dropzone) {
|
|
2951
|
-
min-height: 60px;
|
|
2952
|
-
}
|
|
2953
|
-
.p-dialog-header {
|
|
2954
|
-
background-color: #363a40;
|
|
2955
|
-
padding: 8px;
|
|
2956
|
-
color: white;
|
|
2957
|
-
}
|
|
2958
|
-
.p-dialog-header-close-icon {
|
|
2959
|
-
color: white;
|
|
2960
|
-
}
|
|
2961
|
-
.p-dialog-content {
|
|
2962
|
-
padding: 0;
|
|
2963
|
-
}
|
|
2964
|
-
.p-dialog .p-dialog-header .p-dialog-title {
|
|
2965
|
-
font-size: 1rem;
|
|
2966
|
-
}
|
|
2967
|
-
.p-dialog-content:has(.p-confirm-dialog-message) {
|
|
2968
|
-
padding-top: 18px;
|
|
2969
|
-
}
|
|
2970
|
-
.p-tree-toggler {
|
|
2971
|
-
height: 22px;
|
|
2972
|
-
width: 22px;
|
|
2973
|
-
padding: 4px;
|
|
2974
|
-
margin-right: 5px;
|
|
2975
|
-
}
|
|
2976
|
-
.p-blockui-container {
|
|
2977
|
-
overflow: hidden;
|
|
2978
|
-
}
|
|
2979
|
-
.h-fill-available {
|
|
2980
|
-
height: -moz-available;
|
|
2981
|
-
height: -webkit-fill-available;
|
|
2982
|
-
}
|
|
2983
|
-
.p-listbox-item {
|
|
2984
|
-
padding: 4px;
|
|
2985
|
-
font-size: 12px;
|
|
2986
|
-
}
|
|
2987
|
-
.p-treenode-content:has(> .selected-secondary) {
|
|
2988
|
-
background: #f5f5f5;
|
|
2989
|
-
}
|
|
2990
|
-
.p-menubar-root-list {
|
|
2991
|
-
flex-wrap: nowrap;
|
|
2992
|
-
}
|
|
2993
|
-
.p-menuitem-link {
|
|
2994
|
-
padding: 0.5rem;
|
|
2995
|
-
}
|
|
2996
|
-
.p-menuitem-text {
|
|
2997
|
-
font-size: 13px;
|
|
2998
|
-
}
|
|
2999
|
-
.p-tabview-title {
|
|
3000
|
-
font-size: 12px;
|
|
3001
|
-
}
|
|
3002
|
-
.__json-pretty__ {
|
|
3003
|
-
overflow: visible;
|
|
3004
|
-
}
|
|
3005
|
-
.mce-selected:has(.selected) .editframe:not(.selected) {
|
|
3006
|
-
display: none;
|
|
3007
|
-
}
|
|
3008
|
-
.mce-selected .editframe.selected {
|
|
3009
|
-
display: block;
|
|
3010
|
-
}
|
|
3011
|
-
.mce-selected:not(:has(.editframe.selected)) .editframe:nth-child(2) {
|
|
3012
|
-
display: block;
|
|
3013
|
-
}
|
|
3014
|
-
.mce-items {
|
|
3015
|
-
background: #f0f0f0;
|
|
3016
|
-
}
|
|
3017
|
-
.mce-items .editframe-menu {
|
|
3018
|
-
display: none;
|
|
3019
|
-
}
|
|
3020
|
-
.mce-items .editframe {
|
|
3021
|
-
cursor: pointer;
|
|
3022
|
-
width: var(--mce-thumb-width, 150);
|
|
3023
|
-
height: var(--mce-thumb-height, 150);
|
|
3024
|
-
position: relative;
|
|
3025
|
-
}
|
|
3026
|
-
.mce-items .placeholder {
|
|
3027
|
-
position: relative;
|
|
3028
|
-
width: 200px;
|
|
3029
|
-
moz-transform: scale(0.6);
|
|
3030
|
-
zoom: 0.6;
|
|
3031
|
-
}
|
|
3032
|
-
.mce-items .editframe > * {
|
|
3033
|
-
position: absolute;
|
|
3034
|
-
inset: 0;
|
|
3035
|
-
justify-content: center;
|
|
3036
|
-
moz-transform: scale(var(--mce-thumb-zoom, 0.2));
|
|
3037
|
-
zoom: var(--mce-thumb-zoom, 0.2);
|
|
3389
|
+
.\[\&\>svg\]\:pointer-events-none {
|
|
3390
|
+
&>svg {
|
|
3038
3391
|
pointer-events: none;
|
|
3039
3392
|
}
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
}
|
|
3046
|
-
.workbox .p-datatable .p-datatable-tbody > tr > td {
|
|
3047
|
-
padding: 6px 4px;
|
|
3048
|
-
}
|
|
3049
|
-
.focused-field .focus-shadow {
|
|
3050
|
-
box-shadow: 0 0 7px 0 #9650fb;
|
|
3051
|
-
transition: box-shadow 0.5s ease-in-out;
|
|
3052
|
-
}
|
|
3053
|
-
.executing-action .focus-shadow, .executing-action.focus-shadow {
|
|
3054
|
-
animation: shadow-pulse 2s infinite;
|
|
3055
|
-
box-shadow: 0 0 7px 0 #9650fb;
|
|
3056
|
-
}
|
|
3057
|
-
.saved .focus-shadow {
|
|
3058
|
-
box-shadow: 0 0 7px 0 #8ae048;
|
|
3059
|
-
transition: box-shadow 0.5s ease-in-out;
|
|
3060
|
-
}
|
|
3061
|
-
.focused-field.readonly .focus-shadow {
|
|
3062
|
-
box-shadow: 0 0 7px 0 #a0a0a0;
|
|
3063
|
-
transition: box-shadow 0.5s ease-in-out;
|
|
3064
|
-
}
|
|
3065
|
-
.saving .focus-shadow {
|
|
3066
|
-
box-shadow: 0 0 7px 0 #ffc310;
|
|
3067
|
-
transition: box-shadow 0.5s ease-in-out;
|
|
3068
|
-
}
|
|
3069
|
-
.edited-field.focus-shadow {
|
|
3070
|
-
animation: shadow-fade 15s forwards;
|
|
3071
|
-
border-radius: 10px;
|
|
3393
|
+
}
|
|
3394
|
+
.\[\&\>svg\]\:size-3 {
|
|
3395
|
+
&>svg {
|
|
3396
|
+
width: calc(var(--spacing) * 3);
|
|
3397
|
+
height: calc(var(--spacing) * 3);
|
|
3072
3398
|
}
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3399
|
+
}
|
|
3400
|
+
.\[a\&\]\:hover\:bg-accent {
|
|
3401
|
+
a& {
|
|
3402
|
+
&:hover {
|
|
3403
|
+
@media (hover: hover) {
|
|
3404
|
+
background-color: var(--accent);
|
|
3405
|
+
}
|
|
3079
3406
|
}
|
|
3080
3407
|
}
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
-moz-box-shadow: 0 0 0 0 rgba(72, 171, 224, 0);
|
|
3092
|
-
box-shadow: 0 0 0 0 rgba(72, 171, 224, 0);
|
|
3408
|
+
}
|
|
3409
|
+
.\[a\&\]\:hover\:bg-destructive\/90 {
|
|
3410
|
+
a& {
|
|
3411
|
+
&:hover {
|
|
3412
|
+
@media (hover: hover) {
|
|
3413
|
+
background-color: var(--destructive);
|
|
3414
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3415
|
+
background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
|
|
3416
|
+
}
|
|
3417
|
+
}
|
|
3093
3418
|
}
|
|
3094
3419
|
}
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
width: 2px;
|
|
3107
|
-
}
|
|
3108
|
-
.alpaca-editor-container::-webkit-scrollbar-track {
|
|
3109
|
-
background: white;
|
|
3110
|
-
}
|
|
3111
|
-
.alpaca-editor-container::-webkit-scrollbar-thumb {
|
|
3112
|
-
background-color: gray;
|
|
3113
|
-
border: none;
|
|
3114
|
-
}
|
|
3115
|
-
.p-tabview-nav > li, .p-tabview-title, .p-tabview-nav-link {
|
|
3116
|
-
min-width: auto;
|
|
3117
|
-
}
|
|
3118
|
-
.p-tabview-nav {
|
|
3119
|
-
justify-content: center;
|
|
3120
|
-
}
|
|
3121
|
-
.p-tabview .p-tabview-nav li .p-tabview-nav-link, .p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link, .p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link, .p-tabview .p-tabview-nav {
|
|
3122
|
-
background: unset;
|
|
3123
|
-
}
|
|
3124
|
-
.p-button.p-component {
|
|
3125
|
-
font-size: 14px;
|
|
3126
|
-
background: white;
|
|
3127
|
-
color: #333;
|
|
3128
|
-
border: 1px solid #ddd;
|
|
3129
|
-
border-radius: 12px;
|
|
3130
|
-
padding: 6px 12px;
|
|
3420
|
+
}
|
|
3421
|
+
.\[a\&\]\:hover\:bg-primary\/90 {
|
|
3422
|
+
a& {
|
|
3423
|
+
&:hover {
|
|
3424
|
+
@media (hover: hover) {
|
|
3425
|
+
background-color: var(--primary);
|
|
3426
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3427
|
+
background-color: color-mix(in oklab, var(--primary) 90%, transparent);
|
|
3428
|
+
}
|
|
3429
|
+
}
|
|
3430
|
+
}
|
|
3131
3431
|
}
|
|
3132
|
-
|
|
3133
|
-
|
|
3432
|
+
}
|
|
3433
|
+
.\[a\&\]\:hover\:bg-secondary\/90 {
|
|
3434
|
+
a& {
|
|
3435
|
+
&:hover {
|
|
3436
|
+
@media (hover: hover) {
|
|
3437
|
+
background-color: var(--secondary);
|
|
3438
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3439
|
+
background-color: color-mix(in oklab, var(--secondary) 90%, transparent);
|
|
3440
|
+
}
|
|
3441
|
+
}
|
|
3442
|
+
}
|
|
3134
3443
|
}
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3444
|
+
}
|
|
3445
|
+
.\[a\&\]\:hover\:text-accent-foreground {
|
|
3446
|
+
a& {
|
|
3447
|
+
&:hover {
|
|
3448
|
+
@media (hover: hover) {
|
|
3449
|
+
color: var(--accent-foreground);
|
|
3450
|
+
}
|
|
3451
|
+
}
|
|
3139
3452
|
}
|
|
3140
|
-
|
|
3141
|
-
|
|
3453
|
+
}
|
|
3454
|
+
}
|
|
3455
|
+
* {
|
|
3456
|
+
font-family: var(--font-inter), Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
3457
|
+
}
|
|
3458
|
+
html, body {
|
|
3459
|
+
font-family: var(--font-inter), Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
3460
|
+
}
|
|
3461
|
+
button {
|
|
3462
|
+
cursor: pointer;
|
|
3463
|
+
}
|
|
3464
|
+
Override default fonts to ensure Inter is used throughout * {
|
|
3465
|
+
font-family: var(--font-inter), Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
3466
|
+
}
|
|
3467
|
+
html, body {
|
|
3468
|
+
font-family: var(--font-inter), Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
3469
|
+
}
|
|
3470
|
+
:root {
|
|
3471
|
+
--background: oklch(1 0 0);
|
|
3472
|
+
--foreground: oklch(0.145 0 0);
|
|
3473
|
+
--card: oklch(1 0 0);
|
|
3474
|
+
--card-foreground: oklch(0.145 0 0);
|
|
3475
|
+
--popover: oklch(1 0 0);
|
|
3476
|
+
--popover-foreground: oklch(0.145 0 0);
|
|
3477
|
+
--primary: oklch(0.205 0 0);
|
|
3478
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
3479
|
+
--secondary: oklch(0.97 0 0);
|
|
3480
|
+
--secondary-foreground: oklch(0.205 0 0);
|
|
3481
|
+
--muted: oklch(0.97 0 0);
|
|
3482
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
3483
|
+
--accent: oklch(0.97 0 0);
|
|
3484
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
3485
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
3486
|
+
--destructive-foreground: oklch(0.577 0.245 27.325);
|
|
3487
|
+
--border: oklch(0.922 0 0);
|
|
3488
|
+
--input: oklch(0.922 0 0);
|
|
3489
|
+
--ring: oklch(0.708 0 0);
|
|
3490
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
3491
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
3492
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
3493
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
3494
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
3495
|
+
--radius: 0.625rem;
|
|
3496
|
+
--sidebar: oklch(0.985 0 0);
|
|
3497
|
+
--sidebar-foreground: oklch(0.145 0 0);
|
|
3498
|
+
--sidebar-primary: oklch(0.205 0 0);
|
|
3499
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
3500
|
+
--sidebar-accent: oklch(0.97 0 0);
|
|
3501
|
+
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
3502
|
+
--sidebar-border: oklch(0.922 0 0);
|
|
3503
|
+
--sidebar-ring: oklch(0.708 0 0);
|
|
3504
|
+
--neutral-350: #b4b4b4;
|
|
3505
|
+
}
|
|
3506
|
+
.dark {
|
|
3507
|
+
--background: oklch(0.145 0 0);
|
|
3508
|
+
--foreground: oklch(0.985 0 0);
|
|
3509
|
+
--card: oklch(0.145 0 0);
|
|
3510
|
+
--card-foreground: oklch(0.985 0 0);
|
|
3511
|
+
--popover: oklch(0.145 0 0);
|
|
3512
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
3513
|
+
--primary: oklch(0.985 0 0);
|
|
3514
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
3515
|
+
--secondary: oklch(0.269 0 0);
|
|
3516
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
3517
|
+
--muted: oklch(0.269 0 0);
|
|
3518
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
3519
|
+
--accent: oklch(0.269 0 0);
|
|
3520
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
3521
|
+
--destructive: oklch(0.396 0.141 25.723);
|
|
3522
|
+
--destructive-foreground: oklch(0.637 0.237 25.331);
|
|
3523
|
+
--border: oklch(0.269 0 0);
|
|
3524
|
+
--input: oklch(0.269 0 0);
|
|
3525
|
+
--ring: oklch(0.439 0 0);
|
|
3526
|
+
--chart-1: oklch(0.488 0.243 264.376);
|
|
3527
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
3528
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
3529
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
3530
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
3531
|
+
--sidebar: oklch(0.205 0 0);
|
|
3532
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
3533
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
3534
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
3535
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
3536
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
3537
|
+
--sidebar-border: oklch(0.269 0 0);
|
|
3538
|
+
--sidebar-ring: oklch(0.439 0 0);
|
|
3539
|
+
}
|
|
3540
|
+
@layer base {
|
|
3541
|
+
* {
|
|
3542
|
+
border-color: var(--border);
|
|
3543
|
+
outline-color: var(--ring);
|
|
3544
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3545
|
+
outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
3142
3546
|
}
|
|
3143
|
-
|
|
3144
|
-
|
|
3547
|
+
}
|
|
3548
|
+
body {
|
|
3549
|
+
background-color: var(--background);
|
|
3550
|
+
color: var(--foreground);
|
|
3551
|
+
}
|
|
3552
|
+
}
|
|
3553
|
+
@layer alpaca-editor {
|
|
3554
|
+
.bg-shape-black {
|
|
3555
|
+
background-color: black;
|
|
3556
|
+
background-image: url("./images/bg-shape-black.webp");
|
|
3557
|
+
background-position: right;
|
|
3558
|
+
background-repeat: no-repeat;
|
|
3559
|
+
}
|
|
3560
|
+
.bg-wizard {
|
|
3561
|
+
background-image: url("./images/wizard-bg.png");
|
|
3562
|
+
background-position: right;
|
|
3563
|
+
background-size: cover;
|
|
3564
|
+
background-repeat: no-repeat;
|
|
3565
|
+
opacity: 0.2;
|
|
3566
|
+
}
|
|
3567
|
+
.bg-wizard-demo {
|
|
3568
|
+
background-image: url("./images/wizard.png");
|
|
3569
|
+
background-position: right;
|
|
3570
|
+
background-size: contain;
|
|
3571
|
+
background-repeat: no-repeat;
|
|
3572
|
+
}
|
|
3573
|
+
.bg-wizard-tour {
|
|
3574
|
+
background-image: url("./images/wizard-tour.png");
|
|
3575
|
+
background-position: right;
|
|
3576
|
+
background-size: contain;
|
|
3577
|
+
background-repeat: no-repeat;
|
|
3578
|
+
}
|
|
3579
|
+
.p-tree {
|
|
3580
|
+
background-color: unset;
|
|
3581
|
+
}
|
|
3582
|
+
.alpaceditor-tabs {
|
|
3583
|
+
display: flex;
|
|
3584
|
+
flex-direction: column;
|
|
3585
|
+
}
|
|
3586
|
+
.alpaca-no-border {
|
|
3587
|
+
border: none !important;
|
|
3588
|
+
}
|
|
3589
|
+
.alpaca-overflow-scroll {
|
|
3590
|
+
overflow: auto;
|
|
3591
|
+
}
|
|
3592
|
+
.alpaca-minor-label {
|
|
3593
|
+
display: block;
|
|
3594
|
+
font-size: 12px;
|
|
3595
|
+
font-weight: bold;
|
|
3596
|
+
}
|
|
3597
|
+
.p-tabview-panels {
|
|
3598
|
+
padding: 0;
|
|
3599
|
+
flex: 1;
|
|
3600
|
+
border-radius: 0;
|
|
3601
|
+
}
|
|
3602
|
+
.alpaca-editor-tabs div.p-tabview-panels {
|
|
3603
|
+
overflow: auto;
|
|
3604
|
+
height: calc(100% - 34px);
|
|
3605
|
+
}
|
|
3606
|
+
.p-splitter {
|
|
3607
|
+
border: 0;
|
|
3608
|
+
border-radius: 0;
|
|
3609
|
+
}
|
|
3610
|
+
[contentEditable="true"]:empty:before {
|
|
3611
|
+
content: attr(placeholder);
|
|
3612
|
+
opacity: 0.6;
|
|
3613
|
+
}
|
|
3614
|
+
[contenteditable] {
|
|
3615
|
+
outline: 0px solid transparent;
|
|
3616
|
+
}
|
|
3617
|
+
.p-tree {
|
|
3618
|
+
padding: 0;
|
|
3619
|
+
}
|
|
3620
|
+
.p-treenode-content {
|
|
3621
|
+
padding: 0;
|
|
3622
|
+
}
|
|
3623
|
+
.p-treenode {
|
|
3624
|
+
padding: 1px;
|
|
3625
|
+
font-size: 12px;
|
|
3626
|
+
}
|
|
3627
|
+
div.p-tree .p-treenode-droppoint {
|
|
3628
|
+
height: 3px;
|
|
3629
|
+
}
|
|
3630
|
+
.placeholder > div {
|
|
3631
|
+
opacity: 1;
|
|
3632
|
+
transition: 0.3s;
|
|
3633
|
+
}
|
|
3634
|
+
.placeholder.hidden > div {
|
|
3635
|
+
opacity: 0;
|
|
3636
|
+
}
|
|
3637
|
+
.placeholder.hidden {
|
|
3638
|
+
height: 0;
|
|
3639
|
+
width: 0;
|
|
3640
|
+
padding: 0;
|
|
3641
|
+
opacity: 0;
|
|
3642
|
+
visibility: hidden;
|
|
3643
|
+
transition: none;
|
|
3644
|
+
}
|
|
3645
|
+
.editframe.removed {
|
|
3646
|
+
transition: all 0.7s;
|
|
3647
|
+
opacity: 0;
|
|
3648
|
+
}
|
|
3649
|
+
.p-dropdown {
|
|
3650
|
+
border-color: #ddd;
|
|
3651
|
+
}
|
|
3652
|
+
.p-dropdown-trigger {
|
|
3653
|
+
color: #ddd;
|
|
3654
|
+
}
|
|
3655
|
+
.p-dropdown-label.p-inputtext {
|
|
3656
|
+
padding: 5px;
|
|
3657
|
+
font-size: 12px;
|
|
3658
|
+
}
|
|
3659
|
+
.p-dropdown-item {
|
|
3660
|
+
font-size: 12px;
|
|
3661
|
+
padding: 8px;
|
|
3662
|
+
}
|
|
3663
|
+
.p-inputtext:not(.p-dropdown-label) {
|
|
3664
|
+
padding: 5px;
|
|
3665
|
+
border: 1px solid #ddd;
|
|
3666
|
+
}
|
|
3667
|
+
input, select, textarea {
|
|
3668
|
+
border-width: 1px;
|
|
3669
|
+
}
|
|
3670
|
+
div.p-tabview .p-tabview-nav li .p-tabview-nav-link {
|
|
3671
|
+
padding: 16px 32px;
|
|
3672
|
+
}
|
|
3673
|
+
.p-highlight .p-tabview-nav-link {
|
|
3674
|
+
color: black;
|
|
3675
|
+
border-color: black;
|
|
3676
|
+
}
|
|
3677
|
+
.p-tabview-nav-link:focus {
|
|
3678
|
+
background-color: unset;
|
|
3679
|
+
}
|
|
3680
|
+
.p-menuitem-text {
|
|
3681
|
+
font-size: 12px;
|
|
3682
|
+
}
|
|
3683
|
+
.p-sidebar-header.p-sidebar-custom-header {
|
|
3684
|
+
justify-content: space-between;
|
|
3685
|
+
font-weight: bold;
|
|
3686
|
+
font-size: 18px;
|
|
3687
|
+
}
|
|
3688
|
+
.inserting-placeholder {
|
|
3689
|
+
min-width: 50px;
|
|
3690
|
+
}
|
|
3691
|
+
.editframe:has(.placeholder-dropzone) {
|
|
3692
|
+
min-height: 60px;
|
|
3693
|
+
}
|
|
3694
|
+
.p-dialog-header {
|
|
3695
|
+
background-color: #363a40;
|
|
3696
|
+
padding: 8px;
|
|
3697
|
+
color: white;
|
|
3698
|
+
}
|
|
3699
|
+
.p-dialog-header-close-icon {
|
|
3700
|
+
color: white;
|
|
3701
|
+
}
|
|
3702
|
+
.p-dialog-content {
|
|
3703
|
+
padding: 0;
|
|
3704
|
+
}
|
|
3705
|
+
.p-dialog .p-dialog-header .p-dialog-title {
|
|
3706
|
+
font-size: 1rem;
|
|
3707
|
+
}
|
|
3708
|
+
.p-dialog-content:has(.p-confirm-dialog-message) {
|
|
3709
|
+
padding-top: 18px;
|
|
3710
|
+
}
|
|
3711
|
+
.p-tree-toggler {
|
|
3712
|
+
height: 22px;
|
|
3713
|
+
width: 22px;
|
|
3714
|
+
padding: 4px;
|
|
3715
|
+
margin-right: 5px;
|
|
3716
|
+
}
|
|
3717
|
+
.p-blockui-container {
|
|
3718
|
+
overflow: hidden;
|
|
3719
|
+
}
|
|
3720
|
+
.h-fill-available {
|
|
3721
|
+
height: -moz-available;
|
|
3722
|
+
height: -webkit-fill-available;
|
|
3723
|
+
}
|
|
3724
|
+
.p-listbox-item {
|
|
3725
|
+
padding: 4px;
|
|
3726
|
+
font-size: 12px;
|
|
3727
|
+
}
|
|
3728
|
+
.p-treenode-content:has(> .selected-secondary) {
|
|
3729
|
+
background: #f5f5f5;
|
|
3730
|
+
}
|
|
3731
|
+
.p-menubar-root-list {
|
|
3732
|
+
flex-wrap: nowrap;
|
|
3733
|
+
}
|
|
3734
|
+
.p-menuitem-link {
|
|
3735
|
+
padding: 0.5rem;
|
|
3736
|
+
}
|
|
3737
|
+
.p-menuitem-text {
|
|
3738
|
+
font-size: 13px;
|
|
3739
|
+
}
|
|
3740
|
+
.p-tabview-title {
|
|
3741
|
+
font-size: 12px;
|
|
3742
|
+
}
|
|
3743
|
+
.__json-pretty__ {
|
|
3744
|
+
overflow: visible;
|
|
3745
|
+
}
|
|
3746
|
+
.mce-selected:has(.selected) .editframe:not(.selected) {
|
|
3747
|
+
display: none;
|
|
3748
|
+
}
|
|
3749
|
+
.mce-selected .editframe.selected {
|
|
3750
|
+
display: block;
|
|
3751
|
+
}
|
|
3752
|
+
.mce-selected:not(:has(.editframe.selected)) .editframe:nth-child(2) {
|
|
3753
|
+
display: block;
|
|
3754
|
+
}
|
|
3755
|
+
.mce-items {
|
|
3756
|
+
background: #f0f0f0;
|
|
3757
|
+
}
|
|
3758
|
+
.mce-items .editframe-menu {
|
|
3759
|
+
display: none;
|
|
3760
|
+
}
|
|
3761
|
+
.mce-items .editframe {
|
|
3762
|
+
cursor: pointer;
|
|
3763
|
+
width: var(--mce-thumb-width, 150);
|
|
3764
|
+
height: var(--mce-thumb-height, 150);
|
|
3765
|
+
position: relative;
|
|
3766
|
+
}
|
|
3767
|
+
.mce-items .placeholder {
|
|
3768
|
+
position: relative;
|
|
3769
|
+
width: 200px;
|
|
3770
|
+
moz-transform: scale(0.6);
|
|
3771
|
+
zoom: 0.6;
|
|
3772
|
+
}
|
|
3773
|
+
.mce-items .editframe > * {
|
|
3774
|
+
position: absolute;
|
|
3775
|
+
inset: 0;
|
|
3776
|
+
justify-content: center;
|
|
3777
|
+
moz-transform: scale(var(--mce-thumb-zoom, 0.2));
|
|
3778
|
+
zoom: var(--mce-thumb-zoom, 0.2);
|
|
3779
|
+
pointer-events: none;
|
|
3780
|
+
}
|
|
3781
|
+
.mce:not(:has(.editframe.selected)) .mce-items {
|
|
3782
|
+
display: none;
|
|
3783
|
+
}
|
|
3784
|
+
div.mce > .mce-items:has(.inserting-placeholder), .editframe.selected > .mce .mce-items {
|
|
3785
|
+
display: flex;
|
|
3786
|
+
}
|
|
3787
|
+
.workbox .p-datatable .p-datatable-tbody > tr > td {
|
|
3788
|
+
padding: 6px 4px;
|
|
3789
|
+
}
|
|
3790
|
+
.focused-field .focus-shadow {
|
|
3791
|
+
box-shadow: 0 0 7px 0 #9650fb;
|
|
3792
|
+
transition: box-shadow 0.5s ease-in-out;
|
|
3793
|
+
}
|
|
3794
|
+
.executing-action .focus-shadow, .executing-action.focus-shadow {
|
|
3795
|
+
animation: shadow-pulse 2s infinite;
|
|
3796
|
+
box-shadow: 0 0 7px 0 #9650fb;
|
|
3797
|
+
}
|
|
3798
|
+
.saved .focus-shadow {
|
|
3799
|
+
box-shadow: 0 0 7px 0 #8ae048;
|
|
3800
|
+
transition: box-shadow 0.5s ease-in-out;
|
|
3801
|
+
}
|
|
3802
|
+
.focused-field.readonly .focus-shadow {
|
|
3803
|
+
box-shadow: 0 0 7px 0 #a0a0a0;
|
|
3804
|
+
transition: box-shadow 0.5s ease-in-out;
|
|
3805
|
+
}
|
|
3806
|
+
.saving .focus-shadow {
|
|
3807
|
+
box-shadow: 0 0 7px 0 #ffc310;
|
|
3808
|
+
transition: box-shadow 0.5s ease-in-out;
|
|
3809
|
+
}
|
|
3810
|
+
.edited-field.focus-shadow {
|
|
3811
|
+
animation: shadow-fade 15s forwards;
|
|
3812
|
+
border-radius: 10px;
|
|
3813
|
+
}
|
|
3814
|
+
@keyframes shadow-fade {
|
|
3815
|
+
0% {
|
|
3816
|
+
box-shadow: 0 0 17px 0 #ff10cf;
|
|
3145
3817
|
}
|
|
3146
|
-
|
|
3147
|
-
|
|
3818
|
+
100% {
|
|
3819
|
+
box-shadow: none;
|
|
3148
3820
|
}
|
|
3149
|
-
|
|
3150
|
-
|
|
3821
|
+
}
|
|
3822
|
+
@keyframes shadow-pulse {
|
|
3823
|
+
0% {
|
|
3824
|
+
-moz-box-shadow: 0 0 0 0 rgba(72, 171, 224, 0.4);
|
|
3825
|
+
box-shadow: 0 0 0 0 rgba(72, 171, 224, 0.4);
|
|
3151
3826
|
}
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
initial-value: 0deg;
|
|
3827
|
+
70% {
|
|
3828
|
+
-moz-box-shadow: 0 0 0 10px rgba(72, 171, 224, 0);
|
|
3829
|
+
box-shadow: 0 0 0 10px rgba(72, 171, 224, 0);
|
|
3156
3830
|
}
|
|
3157
|
-
|
|
3158
|
-
|
|
3831
|
+
100% {
|
|
3832
|
+
-moz-box-shadow: 0 0 0 0 rgba(72, 171, 224, 0);
|
|
3833
|
+
box-shadow: 0 0 0 0 rgba(72, 171, 224, 0);
|
|
3159
3834
|
}
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3835
|
+
}
|
|
3836
|
+
.p-tooltip-text {
|
|
3837
|
+
padding: 5px;
|
|
3838
|
+
font-size: 12px;
|
|
3839
|
+
}
|
|
3840
|
+
.p-overlaypanel .p-overlaypanel-content {
|
|
3841
|
+
padding: 0;
|
|
3842
|
+
}
|
|
3843
|
+
.p-datatable .p-datatable-tbody > tr > td, .p-datatable .p-datatable-thead > tr > th {
|
|
3844
|
+
padding: 7px;
|
|
3845
|
+
}
|
|
3846
|
+
.alpaca-editor-container::-webkit-scrollbar {
|
|
3847
|
+
width: 2px;
|
|
3848
|
+
}
|
|
3849
|
+
.alpaca-editor-container::-webkit-scrollbar-track {
|
|
3850
|
+
background: white;
|
|
3851
|
+
}
|
|
3852
|
+
.alpaca-editor-container::-webkit-scrollbar-thumb {
|
|
3853
|
+
background-color: gray;
|
|
3854
|
+
border: none;
|
|
3855
|
+
}
|
|
3856
|
+
.p-tabview-nav > li, .p-tabview-title, .p-tabview-nav-link {
|
|
3857
|
+
min-width: auto;
|
|
3858
|
+
}
|
|
3859
|
+
.p-tabview-nav {
|
|
3860
|
+
justify-content: center;
|
|
3861
|
+
}
|
|
3862
|
+
.p-tabview .p-tabview-nav li .p-tabview-nav-link, .p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link, .p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link, .p-tabview .p-tabview-nav {
|
|
3863
|
+
background: unset;
|
|
3864
|
+
}
|
|
3865
|
+
.p-button.p-component {
|
|
3866
|
+
font-size: 14px;
|
|
3867
|
+
background: white;
|
|
3868
|
+
color: #333;
|
|
3869
|
+
border: 1px solid #ddd;
|
|
3870
|
+
border-radius: 12px;
|
|
3871
|
+
padding: 6px 12px;
|
|
3872
|
+
}
|
|
3873
|
+
.p-button.p-component:hover {
|
|
3874
|
+
background: #f0f0f0;
|
|
3875
|
+
}
|
|
3876
|
+
.p-button.p-component.p-button-secondary {
|
|
3877
|
+
background: white;
|
|
3878
|
+
color: blue;
|
|
3879
|
+
border: none;
|
|
3880
|
+
}
|
|
3881
|
+
.p-component {
|
|
3882
|
+
font-family: unset;
|
|
3883
|
+
}
|
|
3884
|
+
.p-disabled {
|
|
3885
|
+
background-color: white !important;
|
|
3886
|
+
}
|
|
3887
|
+
.p-inputnumber-input {
|
|
3888
|
+
font-size: 12px;
|
|
3889
|
+
}
|
|
3890
|
+
.p-contextmenu {
|
|
3891
|
+
width: 9rem;
|
|
3892
|
+
}
|
|
3893
|
+
@property --a {
|
|
3894
|
+
syntax: "<angle>";
|
|
3895
|
+
inherits: false;
|
|
3896
|
+
initial-value: 0deg;
|
|
3897
|
+
}
|
|
3898
|
+
.glow-text svg {
|
|
3899
|
+
transition: scale 0.5s ease-in-out;
|
|
3900
|
+
}
|
|
3901
|
+
.glow-text:hover svg {
|
|
3902
|
+
scale: 1.15;
|
|
3903
|
+
transition: scale 0.5s ease-in-out;
|
|
3904
|
+
}
|
|
3905
|
+
.glow-text::after {
|
|
3906
|
+
--a: 180deg;
|
|
3907
|
+
content: "";
|
|
3908
|
+
position: absolute;
|
|
3909
|
+
left: 0px;
|
|
3910
|
+
top: 12px;
|
|
3911
|
+
height: 100%;
|
|
3912
|
+
width: 80px;
|
|
3913
|
+
background: linear-gradient( var(--a), aqua 12.9254386713%, blue 37.9254386713% );
|
|
3914
|
+
transform: translateY(-50%);
|
|
3915
|
+
mask: radial-gradient(circle at 22% 50%, black 0%, transparent 20%);
|
|
3916
|
+
animation: glowAnimation 10s infinite;
|
|
3917
|
+
}
|
|
3918
|
+
@keyframes glowAnimation {
|
|
3919
|
+
0% {
|
|
3920
|
+
opacity: 0.6;
|
|
3921
|
+
filter: blur(5px);
|
|
3922
|
+
--a: 0deg;
|
|
3163
3923
|
}
|
|
3164
|
-
|
|
3924
|
+
50% {
|
|
3925
|
+
opacity: 0.9;
|
|
3926
|
+
filter: blur(10px);
|
|
3165
3927
|
--a: 180deg;
|
|
3166
|
-
content: "";
|
|
3167
|
-
position: absolute;
|
|
3168
|
-
left: 0px;
|
|
3169
|
-
top: 12px;
|
|
3170
|
-
height: 100%;
|
|
3171
|
-
width: 80px;
|
|
3172
|
-
background: linear-gradient( var(--a), aqua 12.9254386713%, blue 37.9254386713% );
|
|
3173
|
-
transform: translateY(-50%);
|
|
3174
|
-
mask: radial-gradient(circle at 22% 50%, black 0%, transparent 20%);
|
|
3175
|
-
animation: glowAnimation 10s infinite;
|
|
3176
3928
|
}
|
|
3177
|
-
|
|
3178
|
-
0
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
--a: 0deg;
|
|
3182
|
-
}
|
|
3183
|
-
50% {
|
|
3184
|
-
opacity: 0.9;
|
|
3185
|
-
filter: blur(10px);
|
|
3186
|
-
--a: 180deg;
|
|
3187
|
-
}
|
|
3188
|
-
100% {
|
|
3189
|
-
opacity: 0.6;
|
|
3190
|
-
filter: blur(5px);
|
|
3191
|
-
--a: 360deg;
|
|
3192
|
-
}
|
|
3929
|
+
100% {
|
|
3930
|
+
opacity: 0.6;
|
|
3931
|
+
filter: blur(5px);
|
|
3932
|
+
--a: 360deg;
|
|
3193
3933
|
}
|
|
3194
3934
|
}
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3935
|
+
}
|
|
3936
|
+
.ql-container.ql-snow {
|
|
3937
|
+
border: none;
|
|
3938
|
+
height: 150px;
|
|
3939
|
+
overflow: auto;
|
|
3940
|
+
resize: vertical;
|
|
3941
|
+
}
|
|
3942
|
+
.p-checkbox-box {
|
|
3943
|
+
width: 15px;
|
|
3944
|
+
height: 15px;
|
|
3945
|
+
}
|
|
3946
|
+
button {
|
|
3947
|
+
cursor: pointer;
|
|
3948
|
+
}
|
|
3949
|
+
@keyframes fade-in {
|
|
3950
|
+
from {
|
|
3951
|
+
opacity: 0;
|
|
3952
|
+
}
|
|
3953
|
+
to {
|
|
3954
|
+
opacity: 1;
|
|
3200
3955
|
}
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3956
|
+
}
|
|
3957
|
+
@keyframes fade-out {
|
|
3958
|
+
from {
|
|
3959
|
+
opacity: 1;
|
|
3204
3960
|
}
|
|
3205
|
-
|
|
3206
|
-
|
|
3961
|
+
to {
|
|
3962
|
+
opacity: 0;
|
|
3963
|
+
}
|
|
3964
|
+
}
|
|
3965
|
+
@keyframes zoom-in {
|
|
3966
|
+
from {
|
|
3967
|
+
opacity: 0;
|
|
3968
|
+
transform: scale(0.95);
|
|
3969
|
+
}
|
|
3970
|
+
to {
|
|
3971
|
+
opacity: 1;
|
|
3972
|
+
transform: scale(1);
|
|
3973
|
+
}
|
|
3974
|
+
}
|
|
3975
|
+
@keyframes zoom-out {
|
|
3976
|
+
from {
|
|
3977
|
+
opacity: 1;
|
|
3978
|
+
transform: scale(1);
|
|
3979
|
+
}
|
|
3980
|
+
to {
|
|
3981
|
+
opacity: 0;
|
|
3982
|
+
transform: scale(0.95);
|
|
3207
3983
|
}
|
|
3208
3984
|
}
|
|
3985
|
+
@keyframes slide-in-from-top {
|
|
3986
|
+
from {
|
|
3987
|
+
transform: translateY(-2px);
|
|
3988
|
+
}
|
|
3989
|
+
to {
|
|
3990
|
+
transform: translateY(0);
|
|
3991
|
+
}
|
|
3992
|
+
}
|
|
3993
|
+
@keyframes slide-in-from-bottom {
|
|
3994
|
+
from {
|
|
3995
|
+
transform: translateY(2px);
|
|
3996
|
+
}
|
|
3997
|
+
to {
|
|
3998
|
+
transform: translateY(0);
|
|
3999
|
+
}
|
|
4000
|
+
}
|
|
4001
|
+
@keyframes slide-in-from-left {
|
|
4002
|
+
from {
|
|
4003
|
+
transform: translateX(-2px);
|
|
4004
|
+
}
|
|
4005
|
+
to {
|
|
4006
|
+
transform: translateX(0);
|
|
4007
|
+
}
|
|
4008
|
+
}
|
|
4009
|
+
@keyframes slide-in-from-right {
|
|
4010
|
+
from {
|
|
4011
|
+
transform: translateX(2px);
|
|
4012
|
+
}
|
|
4013
|
+
to {
|
|
4014
|
+
transform: translateX(0);
|
|
4015
|
+
}
|
|
4016
|
+
}
|
|
4017
|
+
.animate-in {
|
|
4018
|
+
animation-duration: 150ms;
|
|
4019
|
+
animation-fill-mode: both;
|
|
4020
|
+
}
|
|
4021
|
+
.animate-out {
|
|
4022
|
+
animation-duration: 150ms;
|
|
4023
|
+
animation-fill-mode: both;
|
|
4024
|
+
}
|
|
4025
|
+
.fade-in-0 {
|
|
4026
|
+
animation-name: fade-in;
|
|
4027
|
+
}
|
|
4028
|
+
.fade-out-0 {
|
|
4029
|
+
animation-name: fade-out;
|
|
4030
|
+
}
|
|
4031
|
+
.zoom-in-95 {
|
|
4032
|
+
animation-name: zoom-in;
|
|
4033
|
+
}
|
|
4034
|
+
.zoom-out-95 {
|
|
4035
|
+
animation-name: zoom-out;
|
|
4036
|
+
}
|
|
4037
|
+
.slide-in-from-top-2 {
|
|
4038
|
+
animation-name: slide-in-from-top;
|
|
4039
|
+
}
|
|
4040
|
+
.slide-in-from-bottom-2 {
|
|
4041
|
+
animation-name: slide-in-from-bottom;
|
|
4042
|
+
}
|
|
4043
|
+
.slide-in-from-left-2 {
|
|
4044
|
+
animation-name: slide-in-from-left;
|
|
4045
|
+
}
|
|
4046
|
+
.slide-in-from-right-2 {
|
|
4047
|
+
animation-name: slide-in-from-right;
|
|
4048
|
+
}
|
|
4049
|
+
[data-state="open"].animate-in {
|
|
4050
|
+
animation-duration: 150ms;
|
|
4051
|
+
animation-fill-mode: both;
|
|
4052
|
+
}
|
|
4053
|
+
[data-state="closed"].animate-out {
|
|
4054
|
+
animation-duration: 150ms;
|
|
4055
|
+
animation-fill-mode: both;
|
|
4056
|
+
}
|
|
4057
|
+
[data-state="open"].fade-in-0 {
|
|
4058
|
+
animation-name: fade-in;
|
|
4059
|
+
}
|
|
4060
|
+
[data-state="closed"].fade-out-0 {
|
|
4061
|
+
animation-name: fade-out;
|
|
4062
|
+
}
|
|
4063
|
+
[data-state="open"].zoom-in-95 {
|
|
4064
|
+
animation-name: zoom-in;
|
|
4065
|
+
}
|
|
4066
|
+
[data-state="closed"].zoom-out-95 {
|
|
4067
|
+
animation-name: zoom-out;
|
|
4068
|
+
}
|
|
4069
|
+
[data-side="top"].slide-in-from-bottom-2 {
|
|
4070
|
+
animation-name: slide-in-from-bottom;
|
|
4071
|
+
}
|
|
4072
|
+
[data-side="bottom"].slide-in-from-top-2 {
|
|
4073
|
+
animation-name: slide-in-from-top;
|
|
4074
|
+
}
|
|
4075
|
+
[data-side="left"].slide-in-from-right-2 {
|
|
4076
|
+
animation-name: slide-in-from-right;
|
|
4077
|
+
}
|
|
4078
|
+
[data-side="right"].slide-in-from-left-2 {
|
|
4079
|
+
animation-name: slide-in-from-left;
|
|
4080
|
+
}
|
|
3209
4081
|
@property --tw-border-spacing-x {
|
|
3210
4082
|
syntax: "<length>";
|
|
3211
4083
|
inherits: false;
|
|
@@ -3234,27 +4106,22 @@
|
|
|
3234
4106
|
@property --tw-rotate-x {
|
|
3235
4107
|
syntax: "*";
|
|
3236
4108
|
inherits: false;
|
|
3237
|
-
initial-value: rotateX(0);
|
|
3238
4109
|
}
|
|
3239
4110
|
@property --tw-rotate-y {
|
|
3240
4111
|
syntax: "*";
|
|
3241
4112
|
inherits: false;
|
|
3242
|
-
initial-value: rotateY(0);
|
|
3243
4113
|
}
|
|
3244
4114
|
@property --tw-rotate-z {
|
|
3245
4115
|
syntax: "*";
|
|
3246
4116
|
inherits: false;
|
|
3247
|
-
initial-value: rotateZ(0);
|
|
3248
4117
|
}
|
|
3249
4118
|
@property --tw-skew-x {
|
|
3250
4119
|
syntax: "*";
|
|
3251
4120
|
inherits: false;
|
|
3252
|
-
initial-value: skewX(0);
|
|
3253
4121
|
}
|
|
3254
4122
|
@property --tw-skew-y {
|
|
3255
4123
|
syntax: "*";
|
|
3256
4124
|
inherits: false;
|
|
3257
|
-
initial-value: skewY(0);
|
|
3258
4125
|
}
|
|
3259
4126
|
@property --tw-space-y-reverse {
|
|
3260
4127
|
syntax: "*";
|
|
@@ -3334,6 +4201,11 @@
|
|
|
3334
4201
|
syntax: "*";
|
|
3335
4202
|
inherits: false;
|
|
3336
4203
|
}
|
|
4204
|
+
@property --tw-shadow-alpha {
|
|
4205
|
+
syntax: "<percentage>";
|
|
4206
|
+
inherits: false;
|
|
4207
|
+
initial-value: 100%;
|
|
4208
|
+
}
|
|
3337
4209
|
@property --tw-inset-shadow {
|
|
3338
4210
|
syntax: "*";
|
|
3339
4211
|
inherits: false;
|
|
@@ -3343,6 +4215,11 @@
|
|
|
3343
4215
|
syntax: "*";
|
|
3344
4216
|
inherits: false;
|
|
3345
4217
|
}
|
|
4218
|
+
@property --tw-inset-shadow-alpha {
|
|
4219
|
+
syntax: "<percentage>";
|
|
4220
|
+
inherits: false;
|
|
4221
|
+
initial-value: 100%;
|
|
4222
|
+
}
|
|
3346
4223
|
@property --tw-ring-color {
|
|
3347
4224
|
syntax: "*";
|
|
3348
4225
|
inherits: false;
|
|
@@ -3425,6 +4302,19 @@
|
|
|
3425
4302
|
syntax: "*";
|
|
3426
4303
|
inherits: false;
|
|
3427
4304
|
}
|
|
4305
|
+
@property --tw-drop-shadow-color {
|
|
4306
|
+
syntax: "*";
|
|
4307
|
+
inherits: false;
|
|
4308
|
+
}
|
|
4309
|
+
@property --tw-drop-shadow-alpha {
|
|
4310
|
+
syntax: "<percentage>";
|
|
4311
|
+
inherits: false;
|
|
4312
|
+
initial-value: 100%;
|
|
4313
|
+
}
|
|
4314
|
+
@property --tw-drop-shadow-size {
|
|
4315
|
+
syntax: "*";
|
|
4316
|
+
inherits: false;
|
|
4317
|
+
}
|
|
3428
4318
|
@property --tw-backdrop-blur {
|
|
3429
4319
|
syntax: "*";
|
|
3430
4320
|
inherits: false;
|
|
@@ -3515,3 +4405,89 @@
|
|
|
3515
4405
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
3516
4406
|
}
|
|
3517
4407
|
}
|
|
4408
|
+
@keyframes enter {
|
|
4409
|
+
from {
|
|
4410
|
+
opacity: var(--tw-enter-opacity,1);
|
|
4411
|
+
transform: translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
|
|
4412
|
+
}
|
|
4413
|
+
}
|
|
4414
|
+
@keyframes exit {
|
|
4415
|
+
to {
|
|
4416
|
+
opacity: var(--tw-exit-opacity,1);
|
|
4417
|
+
transform: translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
|
|
4418
|
+
}
|
|
4419
|
+
}
|
|
4420
|
+
@layer properties {
|
|
4421
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
4422
|
+
*, ::before, ::after, ::backdrop {
|
|
4423
|
+
--tw-border-spacing-x: 0;
|
|
4424
|
+
--tw-border-spacing-y: 0;
|
|
4425
|
+
--tw-translate-x: 0;
|
|
4426
|
+
--tw-translate-y: 0;
|
|
4427
|
+
--tw-translate-z: 0;
|
|
4428
|
+
--tw-rotate-x: initial;
|
|
4429
|
+
--tw-rotate-y: initial;
|
|
4430
|
+
--tw-rotate-z: initial;
|
|
4431
|
+
--tw-skew-x: initial;
|
|
4432
|
+
--tw-skew-y: initial;
|
|
4433
|
+
--tw-space-y-reverse: 0;
|
|
4434
|
+
--tw-space-x-reverse: 0;
|
|
4435
|
+
--tw-border-style: solid;
|
|
4436
|
+
--tw-gradient-position: initial;
|
|
4437
|
+
--tw-gradient-from: #0000;
|
|
4438
|
+
--tw-gradient-via: #0000;
|
|
4439
|
+
--tw-gradient-to: #0000;
|
|
4440
|
+
--tw-gradient-stops: initial;
|
|
4441
|
+
--tw-gradient-via-stops: initial;
|
|
4442
|
+
--tw-gradient-from-position: 0%;
|
|
4443
|
+
--tw-gradient-via-position: 50%;
|
|
4444
|
+
--tw-gradient-to-position: 100%;
|
|
4445
|
+
--tw-leading: initial;
|
|
4446
|
+
--tw-font-weight: initial;
|
|
4447
|
+
--tw-tracking: initial;
|
|
4448
|
+
--tw-shadow: 0 0 #0000;
|
|
4449
|
+
--tw-shadow-color: initial;
|
|
4450
|
+
--tw-shadow-alpha: 100%;
|
|
4451
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
4452
|
+
--tw-inset-shadow-color: initial;
|
|
4453
|
+
--tw-inset-shadow-alpha: 100%;
|
|
4454
|
+
--tw-ring-color: initial;
|
|
4455
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
4456
|
+
--tw-inset-ring-color: initial;
|
|
4457
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
4458
|
+
--tw-ring-inset: initial;
|
|
4459
|
+
--tw-ring-offset-width: 0px;
|
|
4460
|
+
--tw-ring-offset-color: #fff;
|
|
4461
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
4462
|
+
--tw-outline-style: solid;
|
|
4463
|
+
--tw-blur: initial;
|
|
4464
|
+
--tw-brightness: initial;
|
|
4465
|
+
--tw-contrast: initial;
|
|
4466
|
+
--tw-grayscale: initial;
|
|
4467
|
+
--tw-hue-rotate: initial;
|
|
4468
|
+
--tw-invert: initial;
|
|
4469
|
+
--tw-opacity: initial;
|
|
4470
|
+
--tw-saturate: initial;
|
|
4471
|
+
--tw-sepia: initial;
|
|
4472
|
+
--tw-drop-shadow: initial;
|
|
4473
|
+
--tw-drop-shadow-color: initial;
|
|
4474
|
+
--tw-drop-shadow-alpha: 100%;
|
|
4475
|
+
--tw-drop-shadow-size: initial;
|
|
4476
|
+
--tw-backdrop-blur: initial;
|
|
4477
|
+
--tw-backdrop-brightness: initial;
|
|
4478
|
+
--tw-backdrop-contrast: initial;
|
|
4479
|
+
--tw-backdrop-grayscale: initial;
|
|
4480
|
+
--tw-backdrop-hue-rotate: initial;
|
|
4481
|
+
--tw-backdrop-invert: initial;
|
|
4482
|
+
--tw-backdrop-opacity: initial;
|
|
4483
|
+
--tw-backdrop-saturate: initial;
|
|
4484
|
+
--tw-backdrop-sepia: initial;
|
|
4485
|
+
--tw-duration: initial;
|
|
4486
|
+
--tw-ease: initial;
|
|
4487
|
+
--tw-content: "";
|
|
4488
|
+
--tw-scale-x: 1;
|
|
4489
|
+
--tw-scale-y: 1;
|
|
4490
|
+
--tw-scale-z: 1;
|
|
4491
|
+
}
|
|
4492
|
+
}
|
|
4493
|
+
}
|