@starlein/paperclip-plugin-company-wizard 0.2.4 → 0.3.15
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/README.md +60 -3
- package/dist/manifest.js +4 -5
- package/dist/manifest.js.map +2 -2
- package/dist/ui/index.css +563 -578
- package/dist/ui/index.css.map +2 -2
- package/dist/ui/index.js +1143 -559
- package/dist/ui/index.js.map +4 -4
- package/dist/worker.js +679 -253
- package/dist/worker.js.map +4 -4
- package/package.json +12 -7
- package/templates/ai-wizard/config-format.md +12 -4
- package/templates/ai-wizard/interview-system.md +3 -2
- package/templates/ai-wizard/messages.json +1 -1
- package/templates/ai-wizard/single-shot-system.md +4 -0
- package/templates/bootstrap-instructions.md +12 -2
- package/templates/modules/auto-assign/agents/ceo/heartbeat-section.md +1 -1
- package/templates/modules/auto-assign/agents/ceo/skills/auto-assign.fallback.md +1 -1
- package/templates/modules/auto-assign/agents/product-owner/heartbeat-section.md +1 -1
- package/templates/modules/auto-assign/module.meta.json +1 -1
- package/templates/modules/auto-assign/skills/auto-assign.md +1 -1
- package/templates/modules/backlog/module.meta.json +4 -3
- package/templates/modules/build-api/module.meta.json +1 -0
- package/templates/modules/ci-cd/module.meta.json +2 -1
- package/templates/modules/game-design/module.meta.json +18 -0
- package/templates/modules/game-design/skills/audio-design.fallback.md +16 -0
- package/templates/modules/game-design/skills/audio-design.md +28 -0
- package/templates/modules/game-design/skills/level-design.fallback.md +17 -0
- package/templates/modules/game-design/skills/level-design.md +29 -0
- package/templates/modules/github-repo/README.md +1 -0
- package/templates/modules/github-repo/module.meta.json +4 -1
- package/templates/modules/pr-review/README.md +5 -5
- package/templates/modules/pr-review/agents/code-reviewer/skills/code-review.md +7 -6
- package/templates/modules/pr-review/agents/devops/skills/infra-review.md +6 -6
- package/templates/modules/pr-review/agents/engineer/skills/pr-workflow.md +11 -6
- package/templates/modules/pr-review/agents/product-owner/skills/product-review.md +7 -6
- package/templates/modules/pr-review/agents/qa/skills/qa-review.md +6 -6
- package/templates/modules/pr-review/agents/ui-designer/skills/design-review.md +6 -6
- package/templates/modules/pr-review/agents/ux-researcher/skills/ux-review.md +6 -6
- package/templates/modules/pr-review/docs/pr-conventions.md +16 -15
- package/templates/modules/pr-review/module.meta.json +8 -3
- package/templates/modules/stall-detection/module.meta.json +1 -1
- package/templates/modules/website-relaunch/module.meta.json +2 -1
- package/templates/presets/build-game/preset.meta.json +2 -1
- package/templates/presets/content/preset.meta.json +3 -1
- package/templates/presets/full/preset.meta.json +1 -0
- package/templates/presets/gtm/preset.meta.json +3 -1
- package/templates/presets/launch-pack/preset.meta.json +1 -0
- package/templates/presets/quality/preset.meta.json +2 -1
- package/templates/presets/repo-maintenance/preset.meta.json +2 -1
- package/templates/presets/secure/preset.meta.json +1 -0
- package/templates/roles/security-engineer/role.meta.json +1 -1
- package/templates/roles/cfo/AGENTS.md +0 -31
- package/templates/roles/cfo/HEARTBEAT.md +0 -37
- package/templates/roles/cfo/SOUL.md +0 -17
- package/templates/roles/cfo/TOOLS.md +0 -3
- package/templates/roles/cfo/role.meta.json +0 -17
package/dist/ui/index.css
CHANGED
|
@@ -1,19 +1,64 @@
|
|
|
1
1
|
/* src/ui/index.css */
|
|
2
|
-
@layer properties
|
|
3
|
-
@
|
|
2
|
+
@layer properties {
|
|
3
|
+
@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {
|
|
4
|
+
*,
|
|
5
|
+
:before,
|
|
6
|
+
:after,
|
|
7
|
+
::backdrop {
|
|
8
|
+
--tw-rotate-x:initial;
|
|
9
|
+
--tw-rotate-y:initial;
|
|
10
|
+
--tw-rotate-z:initial;
|
|
11
|
+
--tw-skew-x:initial;
|
|
12
|
+
--tw-skew-y:initial;
|
|
13
|
+
--tw-space-y-reverse:0;
|
|
14
|
+
--tw-divide-y-reverse:0;
|
|
15
|
+
--tw-border-style:solid;
|
|
16
|
+
--tw-leading:initial;
|
|
17
|
+
--tw-font-weight:initial;
|
|
18
|
+
--tw-tracking:initial;
|
|
19
|
+
--tw-shadow:0 0 #0000;
|
|
20
|
+
--tw-shadow-color:initial;
|
|
21
|
+
--tw-shadow-alpha:100%;
|
|
22
|
+
--tw-inset-shadow:0 0 #0000;
|
|
23
|
+
--tw-inset-shadow-color:initial;
|
|
24
|
+
--tw-inset-shadow-alpha:100%;
|
|
25
|
+
--tw-ring-color:initial;
|
|
26
|
+
--tw-ring-shadow:0 0 #0000;
|
|
27
|
+
--tw-inset-ring-color:initial;
|
|
28
|
+
--tw-inset-ring-shadow:0 0 #0000;
|
|
29
|
+
--tw-ring-inset:initial;
|
|
30
|
+
--tw-ring-offset-width:0px;
|
|
31
|
+
--tw-ring-offset-color:#fff;
|
|
32
|
+
--tw-ring-offset-shadow:0 0 #0000;
|
|
33
|
+
--tw-outline-style:solid;
|
|
34
|
+
--tw-blur:initial;
|
|
35
|
+
--tw-brightness:initial;
|
|
36
|
+
--tw-contrast:initial;
|
|
37
|
+
--tw-grayscale:initial;
|
|
38
|
+
--tw-hue-rotate:initial;
|
|
39
|
+
--tw-invert:initial;
|
|
40
|
+
--tw-opacity:initial;
|
|
41
|
+
--tw-saturate:initial;
|
|
42
|
+
--tw-sepia:initial;
|
|
43
|
+
--tw-drop-shadow:initial;
|
|
44
|
+
--tw-drop-shadow-color:initial;
|
|
45
|
+
--tw-drop-shadow-alpha:100%;
|
|
46
|
+
--tw-drop-shadow-size:initial;
|
|
47
|
+
--tw-duration:initial;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
4
51
|
@layer theme {
|
|
5
52
|
:root,
|
|
6
53
|
:host {
|
|
7
|
-
--font-sans:
|
|
8
|
-
ui-sans-serif,
|
|
54
|
+
--font-sans:ui-sans-serif,
|
|
9
55
|
system-ui,
|
|
10
56
|
sans-serif,
|
|
11
57
|
"Apple Color Emoji",
|
|
12
58
|
"Segoe UI Emoji",
|
|
13
59
|
"Segoe UI Symbol",
|
|
14
60
|
"Noto Color Emoji";
|
|
15
|
-
--font-mono:
|
|
16
|
-
ui-monospace,
|
|
61
|
+
--font-mono:ui-monospace,
|
|
17
62
|
SFMono-Regular,
|
|
18
63
|
Menlo,
|
|
19
64
|
Monaco,
|
|
@@ -21,66 +66,71 @@
|
|
|
21
66
|
"Liberation Mono",
|
|
22
67
|
"Courier New",
|
|
23
68
|
monospace;
|
|
24
|
-
--color-amber-200:
|
|
25
|
-
--color-amber-300:
|
|
26
|
-
--color-amber-400:
|
|
27
|
-
--color-amber-500:
|
|
28
|
-
--color-amber-700:
|
|
29
|
-
--color-amber-800:
|
|
30
|
-
--color-yellow-600:
|
|
31
|
-
--color-green-600:
|
|
32
|
-
--color-blue-400:
|
|
33
|
-
--color-blue-500:
|
|
34
|
-
--color-blue-600:
|
|
35
|
-
--color-white
|
|
36
|
-
--spacing
|
|
37
|
-
--container-xs:
|
|
38
|
-
--container-2xl:
|
|
39
|
-
--text-xs
|
|
40
|
-
--text-xs--line-height:
|
|
41
|
-
--text-sm
|
|
42
|
-
--text-sm--line-height:
|
|
43
|
-
--text-base:
|
|
44
|
-
--text-base--line-height:
|
|
45
|
-
--text-xl:
|
|
46
|
-
--text-xl--line-height:
|
|
47
|
-
--text-2xl:
|
|
48
|
-
--text-2xl--line-height:
|
|
49
|
-
--font-weight-normal:
|
|
50
|
-
--font-weight-medium:
|
|
51
|
-
--font-weight-semibold:
|
|
52
|
-
--tracking-tight
|
|
53
|
-
--tracking-wider
|
|
54
|
-
--leading-relaxed:
|
|
55
|
-
--animate-spin:
|
|
56
|
-
--animate-ping:
|
|
57
|
-
--animate-pulse:
|
|
58
|
-
--default-transition-duration
|
|
59
|
-
--default-transition-timing-function:
|
|
60
|
-
--default-font-family:
|
|
61
|
-
--default-mono-font-family:
|
|
62
|
-
--color-primary:
|
|
69
|
+
--color-amber-200:oklch(92.4% .12 95.746);
|
|
70
|
+
--color-amber-300:oklch(87.9% .169 91.605);
|
|
71
|
+
--color-amber-400:oklch(82.8% .189 84.429);
|
|
72
|
+
--color-amber-500:oklch(76.9% .188 70.08);
|
|
73
|
+
--color-amber-700:oklch(55.5% .163 48.998);
|
|
74
|
+
--color-amber-800:oklch(47.3% .137 46.201);
|
|
75
|
+
--color-yellow-600:oklch(68.1% .162 75.834);
|
|
76
|
+
--color-green-600:oklch(62.7% .194 149.214);
|
|
77
|
+
--color-blue-400:oklch(70.7% .165 254.624);
|
|
78
|
+
--color-blue-500:oklch(62.3% .214 259.815);
|
|
79
|
+
--color-blue-600:oklch(54.6% .245 262.881);
|
|
80
|
+
--color-white:#fff;
|
|
81
|
+
--spacing:.25rem;
|
|
82
|
+
--container-xs:20rem;
|
|
83
|
+
--container-2xl:42rem;
|
|
84
|
+
--text-xs:.75rem;
|
|
85
|
+
--text-xs--line-height:calc(1 / .75);
|
|
86
|
+
--text-sm:.875rem;
|
|
87
|
+
--text-sm--line-height:calc(1.25 / .875);
|
|
88
|
+
--text-base:1rem;
|
|
89
|
+
--text-base--line-height:calc(1.5 / 1);
|
|
90
|
+
--text-xl:1.25rem;
|
|
91
|
+
--text-xl--line-height:calc(1.75 / 1.25);
|
|
92
|
+
--text-2xl:1.5rem;
|
|
93
|
+
--text-2xl--line-height:calc(2 / 1.5);
|
|
94
|
+
--font-weight-normal:400;
|
|
95
|
+
--font-weight-medium:500;
|
|
96
|
+
--font-weight-semibold:600;
|
|
97
|
+
--tracking-tight:-.025em;
|
|
98
|
+
--tracking-wider:.05em;
|
|
99
|
+
--leading-relaxed:1.625;
|
|
100
|
+
--animate-spin:spin 1s linear infinite;
|
|
101
|
+
--animate-ping:ping 1s cubic-bezier(0, 0, .2, 1) infinite;
|
|
102
|
+
--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
|
|
103
|
+
--default-transition-duration:.15s;
|
|
104
|
+
--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);
|
|
105
|
+
--default-font-family:var(--font-sans);
|
|
106
|
+
--default-mono-font-family:var(--font-mono);
|
|
107
|
+
--color-primary:var(--primary);
|
|
63
108
|
}
|
|
64
109
|
}
|
|
65
110
|
@layer base {
|
|
66
111
|
*,
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
::backdrop
|
|
70
|
-
::file-selector-button {
|
|
112
|
+
:after,
|
|
113
|
+
:before,
|
|
114
|
+
::backdrop {
|
|
71
115
|
box-sizing: border-box;
|
|
116
|
+
border: 0 solid;
|
|
72
117
|
margin: 0;
|
|
73
118
|
padding: 0;
|
|
119
|
+
}
|
|
120
|
+
::file-selector-button {
|
|
121
|
+
box-sizing: border-box;
|
|
74
122
|
border: 0 solid;
|
|
123
|
+
margin: 0;
|
|
124
|
+
padding: 0;
|
|
75
125
|
}
|
|
76
126
|
html,
|
|
77
127
|
:host {
|
|
78
|
-
line-height: 1.5;
|
|
79
128
|
-webkit-text-size-adjust: 100%;
|
|
80
129
|
tab-size: 4;
|
|
81
|
-
|
|
82
|
-
font-
|
|
83
|
-
font-
|
|
130
|
+
line-height: 1.5;
|
|
131
|
+
font-family: var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
132
|
+
font-feature-settings: var(--default-font-feature-settings,normal);
|
|
133
|
+
font-variation-settings: var(--default-font-variation-settings,normal);
|
|
84
134
|
-webkit-tap-highlight-color: transparent;
|
|
85
135
|
}
|
|
86
136
|
hr {
|
|
@@ -104,6 +154,8 @@
|
|
|
104
154
|
a {
|
|
105
155
|
color: inherit;
|
|
106
156
|
-webkit-text-decoration: inherit;
|
|
157
|
+
-webkit-text-decoration: inherit;
|
|
158
|
+
-webkit-text-decoration: inherit;
|
|
107
159
|
text-decoration: inherit;
|
|
108
160
|
}
|
|
109
161
|
b,
|
|
@@ -114,9 +166,9 @@
|
|
|
114
166
|
kbd,
|
|
115
167
|
samp,
|
|
116
168
|
pre {
|
|
117
|
-
font-family: var(--default-mono-font-family,
|
|
118
|
-
font-feature-settings: var(--default-mono-font-feature-settings,
|
|
119
|
-
font-variation-settings: var(--default-mono-font-variation-settings,
|
|
169
|
+
font-family: var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
170
|
+
font-feature-settings: var(--default-mono-font-feature-settings,normal);
|
|
171
|
+
font-variation-settings: var(--default-mono-font-variation-settings,normal);
|
|
120
172
|
font-size: 1em;
|
|
121
173
|
}
|
|
122
174
|
small {
|
|
@@ -124,16 +176,16 @@
|
|
|
124
176
|
}
|
|
125
177
|
sub,
|
|
126
178
|
sup {
|
|
179
|
+
vertical-align: baseline;
|
|
127
180
|
font-size: 75%;
|
|
128
181
|
line-height: 0;
|
|
129
182
|
position: relative;
|
|
130
|
-
vertical-align: baseline;
|
|
131
183
|
}
|
|
132
184
|
sub {
|
|
133
|
-
bottom:
|
|
185
|
+
bottom: -.25em;
|
|
134
186
|
}
|
|
135
187
|
sup {
|
|
136
|
-
top:
|
|
188
|
+
top: -.5em;
|
|
137
189
|
}
|
|
138
190
|
table {
|
|
139
191
|
text-indent: 0;
|
|
@@ -162,8 +214,8 @@
|
|
|
162
214
|
iframe,
|
|
163
215
|
embed,
|
|
164
216
|
object {
|
|
165
|
-
display: block;
|
|
166
217
|
vertical-align: middle;
|
|
218
|
+
display: block;
|
|
167
219
|
}
|
|
168
220
|
img,
|
|
169
221
|
video {
|
|
@@ -174,16 +226,25 @@
|
|
|
174
226
|
input,
|
|
175
227
|
select,
|
|
176
228
|
optgroup,
|
|
177
|
-
textarea
|
|
178
|
-
::file-selector-button {
|
|
229
|
+
textarea {
|
|
179
230
|
font: inherit;
|
|
180
231
|
font-feature-settings: inherit;
|
|
181
232
|
font-variation-settings: inherit;
|
|
182
233
|
letter-spacing: inherit;
|
|
183
234
|
color: inherit;
|
|
235
|
+
opacity: 1;
|
|
236
|
+
background-color: #0000;
|
|
184
237
|
border-radius: 0;
|
|
185
|
-
|
|
238
|
+
}
|
|
239
|
+
::file-selector-button {
|
|
240
|
+
font: inherit;
|
|
241
|
+
font-feature-settings: inherit;
|
|
242
|
+
font-variation-settings: inherit;
|
|
243
|
+
letter-spacing: inherit;
|
|
244
|
+
color: inherit;
|
|
186
245
|
opacity: 1;
|
|
246
|
+
background-color: #0000;
|
|
247
|
+
border-radius: 0;
|
|
187
248
|
}
|
|
188
249
|
:where(select:is([multiple], [size])) optgroup {
|
|
189
250
|
font-weight: bolder;
|
|
@@ -197,10 +258,12 @@
|
|
|
197
258
|
::placeholder {
|
|
198
259
|
opacity: 1;
|
|
199
260
|
}
|
|
200
|
-
@supports (not (-webkit-appearance
|
|
261
|
+
@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px) {
|
|
201
262
|
::placeholder {
|
|
202
|
-
color:
|
|
203
|
-
|
|
263
|
+
color: currentColor;
|
|
264
|
+
}
|
|
265
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
266
|
+
::placeholder {
|
|
204
267
|
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
205
268
|
}
|
|
206
269
|
}
|
|
@@ -221,14 +284,30 @@
|
|
|
221
284
|
::-webkit-datetime-edit-fields-wrapper {
|
|
222
285
|
padding: 0;
|
|
223
286
|
}
|
|
224
|
-
::-webkit-datetime-edit
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
::-webkit-datetime-edit-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
::-webkit-datetime-edit-
|
|
231
|
-
|
|
287
|
+
::-webkit-datetime-edit {
|
|
288
|
+
padding-block: 0;
|
|
289
|
+
}
|
|
290
|
+
::-webkit-datetime-edit-year-field {
|
|
291
|
+
padding-block: 0;
|
|
292
|
+
}
|
|
293
|
+
::-webkit-datetime-edit-month-field {
|
|
294
|
+
padding-block: 0;
|
|
295
|
+
}
|
|
296
|
+
::-webkit-datetime-edit-day-field {
|
|
297
|
+
padding-block: 0;
|
|
298
|
+
}
|
|
299
|
+
::-webkit-datetime-edit-hour-field {
|
|
300
|
+
padding-block: 0;
|
|
301
|
+
}
|
|
302
|
+
::-webkit-datetime-edit-minute-field {
|
|
303
|
+
padding-block: 0;
|
|
304
|
+
}
|
|
305
|
+
::-webkit-datetime-edit-second-field {
|
|
306
|
+
padding-block: 0;
|
|
307
|
+
}
|
|
308
|
+
::-webkit-datetime-edit-millisecond-field {
|
|
309
|
+
padding-block: 0;
|
|
310
|
+
}
|
|
232
311
|
::-webkit-datetime-edit-meridiem-field {
|
|
233
312
|
padding-block: 0;
|
|
234
313
|
}
|
|
@@ -239,18 +318,26 @@
|
|
|
239
318
|
box-shadow: none;
|
|
240
319
|
}
|
|
241
320
|
button,
|
|
242
|
-
input:where([type=button], [type=reset], [type=submit])
|
|
321
|
+
input:where([type=button], [type=reset], [type=submit]) {
|
|
322
|
+
appearance: button;
|
|
323
|
+
}
|
|
243
324
|
::file-selector-button {
|
|
244
325
|
appearance: button;
|
|
245
326
|
}
|
|
246
|
-
::-webkit-inner-spin-button
|
|
327
|
+
::-webkit-inner-spin-button {
|
|
328
|
+
height: auto;
|
|
329
|
+
}
|
|
247
330
|
::-webkit-outer-spin-button {
|
|
248
331
|
height: auto;
|
|
249
332
|
}
|
|
250
333
|
[hidden]:where(:not([hidden=until-found])) {
|
|
251
334
|
display: none !important;
|
|
252
335
|
}
|
|
336
|
+
* {
|
|
337
|
+
border-color: var(--border);
|
|
338
|
+
}
|
|
253
339
|
}
|
|
340
|
+
@layer components;
|
|
254
341
|
@layer utilities {
|
|
255
342
|
.invisible {
|
|
256
343
|
visibility: hidden;
|
|
@@ -296,30 +383,43 @@
|
|
|
296
383
|
}
|
|
297
384
|
.container {
|
|
298
385
|
width: 100%;
|
|
299
|
-
|
|
386
|
+
}
|
|
387
|
+
@media (min-width: 40rem) {
|
|
388
|
+
.container {
|
|
300
389
|
max-width: 40rem;
|
|
301
390
|
}
|
|
302
|
-
|
|
391
|
+
}
|
|
392
|
+
@media (min-width: 48rem) {
|
|
393
|
+
.container {
|
|
303
394
|
max-width: 48rem;
|
|
304
395
|
}
|
|
305
|
-
|
|
396
|
+
}
|
|
397
|
+
@media (min-width: 64rem) {
|
|
398
|
+
.container {
|
|
306
399
|
max-width: 64rem;
|
|
307
400
|
}
|
|
308
|
-
|
|
401
|
+
}
|
|
402
|
+
@media (min-width: 80rem) {
|
|
403
|
+
.container {
|
|
309
404
|
max-width: 80rem;
|
|
310
405
|
}
|
|
311
|
-
|
|
406
|
+
}
|
|
407
|
+
@media (min-width: 96rem) {
|
|
408
|
+
.container {
|
|
312
409
|
max-width: 96rem;
|
|
313
410
|
}
|
|
314
411
|
}
|
|
412
|
+
.-mx-1 {
|
|
413
|
+
margin-inline: calc(var(--spacing) * -1);
|
|
414
|
+
}
|
|
315
415
|
.mx-4 {
|
|
316
416
|
margin-inline: calc(var(--spacing) * 4);
|
|
317
417
|
}
|
|
318
418
|
.my-0\.5 {
|
|
319
|
-
margin-block: calc(var(--spacing) *
|
|
419
|
+
margin-block: calc(var(--spacing) * .5);
|
|
320
420
|
}
|
|
321
421
|
.mt-0\.5 {
|
|
322
|
-
margin-top: calc(var(--spacing) *
|
|
422
|
+
margin-top: calc(var(--spacing) * .5);
|
|
323
423
|
}
|
|
324
424
|
.mt-1 {
|
|
325
425
|
margin-top: calc(var(--spacing) * 1);
|
|
@@ -579,68 +679,50 @@
|
|
|
579
679
|
.gap-4 {
|
|
580
680
|
gap: calc(var(--spacing) * 4);
|
|
581
681
|
}
|
|
582
|
-
.space-y-0\.5 {
|
|
583
|
-
:
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
:
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
:
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
}
|
|
617
|
-
.space-y-
|
|
618
|
-
:
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
:
|
|
626
|
-
--tw-space-y-reverse: 0;
|
|
627
|
-
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
628
|
-
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
629
|
-
}
|
|
630
|
-
}
|
|
631
|
-
.space-y-6 {
|
|
632
|
-
:where(& > :not(:last-child)) {
|
|
633
|
-
--tw-space-y-reverse: 0;
|
|
634
|
-
margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
|
|
635
|
-
margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
636
|
-
}
|
|
637
|
-
}
|
|
638
|
-
.space-y-8 {
|
|
639
|
-
:where(& > :not(:last-child)) {
|
|
640
|
-
--tw-space-y-reverse: 0;
|
|
641
|
-
margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
|
|
642
|
-
margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
643
|
-
}
|
|
682
|
+
:where(.space-y-0\.5 > :not(:last-child)) {
|
|
683
|
+
--tw-space-y-reverse:0;
|
|
684
|
+
margin-block-start: calc(calc(var(--spacing) * .5) * var(--tw-space-y-reverse));
|
|
685
|
+
margin-block-end: calc(calc(var(--spacing) * .5) * calc(1 - var(--tw-space-y-reverse)));
|
|
686
|
+
}
|
|
687
|
+
:where(.space-y-1 > :not(:last-child)) {
|
|
688
|
+
--tw-space-y-reverse:0;
|
|
689
|
+
margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
|
|
690
|
+
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
691
|
+
}
|
|
692
|
+
:where(.space-y-1\.5 > :not(:last-child)) {
|
|
693
|
+
--tw-space-y-reverse:0;
|
|
694
|
+
margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
|
|
695
|
+
margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
696
|
+
}
|
|
697
|
+
:where(.space-y-2 > :not(:last-child)) {
|
|
698
|
+
--tw-space-y-reverse:0;
|
|
699
|
+
margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
|
|
700
|
+
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
701
|
+
}
|
|
702
|
+
:where(.space-y-2\.5 > :not(:last-child)) {
|
|
703
|
+
--tw-space-y-reverse:0;
|
|
704
|
+
margin-block-start: calc(calc(var(--spacing) * 2.5) * var(--tw-space-y-reverse));
|
|
705
|
+
margin-block-end: calc(calc(var(--spacing) * 2.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
706
|
+
}
|
|
707
|
+
:where(.space-y-3 > :not(:last-child)) {
|
|
708
|
+
--tw-space-y-reverse:0;
|
|
709
|
+
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
710
|
+
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
711
|
+
}
|
|
712
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
713
|
+
--tw-space-y-reverse:0;
|
|
714
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
715
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
716
|
+
}
|
|
717
|
+
:where(.space-y-6 > :not(:last-child)) {
|
|
718
|
+
--tw-space-y-reverse:0;
|
|
719
|
+
margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
|
|
720
|
+
margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
721
|
+
}
|
|
722
|
+
:where(.space-y-8 > :not(:last-child)) {
|
|
723
|
+
--tw-space-y-reverse:0;
|
|
724
|
+
margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
|
|
725
|
+
margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
|
|
644
726
|
}
|
|
645
727
|
.gap-x-3 {
|
|
646
728
|
column-gap: calc(var(--spacing) * 3);
|
|
@@ -649,24 +731,22 @@
|
|
|
649
731
|
column-gap: calc(var(--spacing) * 4);
|
|
650
732
|
}
|
|
651
733
|
.gap-y-0\.5 {
|
|
652
|
-
row-gap: calc(var(--spacing) *
|
|
734
|
+
row-gap: calc(var(--spacing) * .5);
|
|
653
735
|
}
|
|
654
736
|
.gap-y-1 {
|
|
655
737
|
row-gap: calc(var(--spacing) * 1);
|
|
656
738
|
}
|
|
657
|
-
.divide-y {
|
|
658
|
-
:
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
664
|
-
}
|
|
739
|
+
:where(.divide-y > :not(:last-child)) {
|
|
740
|
+
--tw-divide-y-reverse:0;
|
|
741
|
+
border-bottom-style: var(--tw-border-style);
|
|
742
|
+
border-top-style: var(--tw-border-style);
|
|
743
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
|
744
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
665
745
|
}
|
|
666
746
|
.truncate {
|
|
667
|
-
overflow: hidden;
|
|
668
747
|
text-overflow: ellipsis;
|
|
669
748
|
white-space: nowrap;
|
|
749
|
+
overflow: hidden;
|
|
670
750
|
}
|
|
671
751
|
.overflow-x-auto {
|
|
672
752
|
overflow-x: auto;
|
|
@@ -675,10 +755,10 @@
|
|
|
675
755
|
overflow-y: auto;
|
|
676
756
|
}
|
|
677
757
|
.rounded {
|
|
678
|
-
border-radius:
|
|
758
|
+
border-radius: .25rem;
|
|
679
759
|
}
|
|
680
760
|
.rounded-full {
|
|
681
|
-
border-radius:
|
|
761
|
+
border-radius: 3.40282e38px;
|
|
682
762
|
}
|
|
683
763
|
.rounded-lg {
|
|
684
764
|
border-radius: var(--radius);
|
|
@@ -702,24 +782,30 @@
|
|
|
702
782
|
border-top-width: 1px;
|
|
703
783
|
}
|
|
704
784
|
.border-dashed {
|
|
705
|
-
--tw-border-style:
|
|
785
|
+
--tw-border-style:dashed;
|
|
706
786
|
border-style: dashed;
|
|
707
787
|
}
|
|
708
788
|
.border-amber-500\/30 {
|
|
709
|
-
border-color:
|
|
710
|
-
|
|
789
|
+
border-color: #f99c004d;
|
|
790
|
+
}
|
|
791
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
792
|
+
.border-amber-500\/30 {
|
|
711
793
|
border-color: color-mix(in oklab, var(--color-amber-500) 30%, transparent);
|
|
712
794
|
}
|
|
713
795
|
}
|
|
714
796
|
.border-amber-500\/40 {
|
|
715
|
-
border-color:
|
|
716
|
-
|
|
797
|
+
border-color: #f99c0066;
|
|
798
|
+
}
|
|
799
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
800
|
+
.border-amber-500\/40 {
|
|
717
801
|
border-color: color-mix(in oklab, var(--color-amber-500) 40%, transparent);
|
|
718
802
|
}
|
|
719
803
|
}
|
|
720
804
|
.border-blue-400\/60 {
|
|
721
|
-
border-color:
|
|
722
|
-
|
|
805
|
+
border-color: #54a2ff99;
|
|
806
|
+
}
|
|
807
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
808
|
+
.border-blue-400\/60 {
|
|
723
809
|
border-color: color-mix(in oklab, var(--color-blue-400) 60%, transparent);
|
|
724
810
|
}
|
|
725
811
|
}
|
|
@@ -728,34 +814,42 @@
|
|
|
728
814
|
}
|
|
729
815
|
.border-destructive\/20 {
|
|
730
816
|
border-color: var(--destructive);
|
|
731
|
-
|
|
817
|
+
}
|
|
818
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
819
|
+
.border-destructive\/20 {
|
|
732
820
|
border-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
733
821
|
}
|
|
734
822
|
}
|
|
735
823
|
.border-destructive\/30 {
|
|
736
824
|
border-color: var(--destructive);
|
|
737
|
-
|
|
825
|
+
}
|
|
826
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
827
|
+
.border-destructive\/30 {
|
|
738
828
|
border-color: color-mix(in oklab, var(--destructive) 30%, transparent);
|
|
739
829
|
}
|
|
740
830
|
}
|
|
741
|
-
.border-foreground
|
|
742
|
-
border-color: var(--foreground);
|
|
743
|
-
}
|
|
831
|
+
.border-foreground,
|
|
744
832
|
.border-foreground\/10 {
|
|
745
833
|
border-color: var(--foreground);
|
|
746
|
-
|
|
834
|
+
}
|
|
835
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
836
|
+
.border-foreground\/10 {
|
|
747
837
|
border-color: color-mix(in oklab, var(--foreground) 10%, transparent);
|
|
748
838
|
}
|
|
749
839
|
}
|
|
750
840
|
.border-foreground\/20 {
|
|
751
841
|
border-color: var(--foreground);
|
|
752
|
-
|
|
842
|
+
}
|
|
843
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
844
|
+
.border-foreground\/20 {
|
|
753
845
|
border-color: color-mix(in oklab, var(--foreground) 20%, transparent);
|
|
754
846
|
}
|
|
755
847
|
}
|
|
756
848
|
.border-foreground\/30 {
|
|
757
849
|
border-color: var(--foreground);
|
|
758
|
-
|
|
850
|
+
}
|
|
851
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
852
|
+
.border-foreground\/30 {
|
|
759
853
|
border-color: color-mix(in oklab, var(--foreground) 30%, transparent);
|
|
760
854
|
}
|
|
761
855
|
}
|
|
@@ -763,26 +857,30 @@
|
|
|
763
857
|
border-color: var(--input);
|
|
764
858
|
}
|
|
765
859
|
.border-transparent {
|
|
766
|
-
border-color:
|
|
767
|
-
}
|
|
768
|
-
.bg-accent {
|
|
769
|
-
background-color: var(--accent);
|
|
860
|
+
border-color: #0000;
|
|
770
861
|
}
|
|
862
|
+
.bg-accent,
|
|
771
863
|
.bg-accent\/20 {
|
|
772
864
|
background-color: var(--accent);
|
|
773
|
-
|
|
865
|
+
}
|
|
866
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
867
|
+
.bg-accent\/20 {
|
|
774
868
|
background-color: color-mix(in oklab, var(--accent) 20%, transparent);
|
|
775
869
|
}
|
|
776
870
|
}
|
|
777
871
|
.bg-accent\/50 {
|
|
778
872
|
background-color: var(--accent);
|
|
779
|
-
|
|
873
|
+
}
|
|
874
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
875
|
+
.bg-accent\/50 {
|
|
780
876
|
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
781
877
|
}
|
|
782
878
|
}
|
|
783
879
|
.bg-amber-500\/10 {
|
|
784
|
-
background-color:
|
|
785
|
-
|
|
880
|
+
background-color: #f99c001a;
|
|
881
|
+
}
|
|
882
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
883
|
+
.bg-amber-500\/10 {
|
|
786
884
|
background-color: color-mix(in oklab, var(--color-amber-500) 10%, transparent);
|
|
787
885
|
}
|
|
788
886
|
}
|
|
@@ -796,35 +894,39 @@
|
|
|
796
894
|
background-color: var(--card);
|
|
797
895
|
}
|
|
798
896
|
.bg-current {
|
|
799
|
-
background-color:
|
|
800
|
-
}
|
|
801
|
-
.bg-destructive {
|
|
802
|
-
background-color: var(--destructive);
|
|
897
|
+
background-color: currentColor;
|
|
803
898
|
}
|
|
899
|
+
.bg-destructive,
|
|
804
900
|
.bg-destructive\/5 {
|
|
805
901
|
background-color: var(--destructive);
|
|
806
|
-
|
|
902
|
+
}
|
|
903
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
904
|
+
.bg-destructive\/5 {
|
|
807
905
|
background-color: color-mix(in oklab, var(--destructive) 5%, transparent);
|
|
808
906
|
}
|
|
809
907
|
}
|
|
810
908
|
.bg-destructive\/10 {
|
|
811
909
|
background-color: var(--destructive);
|
|
812
|
-
|
|
910
|
+
}
|
|
911
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
912
|
+
.bg-destructive\/10 {
|
|
813
913
|
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
814
914
|
}
|
|
815
915
|
}
|
|
816
|
-
.bg-foreground
|
|
817
|
-
background-color: var(--foreground);
|
|
818
|
-
}
|
|
916
|
+
.bg-foreground,
|
|
819
917
|
.bg-foreground\/5 {
|
|
820
918
|
background-color: var(--foreground);
|
|
821
|
-
|
|
919
|
+
}
|
|
920
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
921
|
+
.bg-foreground\/5 {
|
|
822
922
|
background-color: color-mix(in oklab, var(--foreground) 5%, transparent);
|
|
823
923
|
}
|
|
824
924
|
}
|
|
825
925
|
.bg-foreground\/10 {
|
|
826
926
|
background-color: var(--foreground);
|
|
827
|
-
|
|
927
|
+
}
|
|
928
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
929
|
+
.bg-foreground\/10 {
|
|
828
930
|
background-color: color-mix(in oklab, var(--foreground) 10%, transparent);
|
|
829
931
|
}
|
|
830
932
|
}
|
|
@@ -833,13 +935,17 @@
|
|
|
833
935
|
}
|
|
834
936
|
.bg-muted-foreground\/30 {
|
|
835
937
|
background-color: var(--muted-foreground);
|
|
836
|
-
|
|
938
|
+
}
|
|
939
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
940
|
+
.bg-muted-foreground\/30 {
|
|
837
941
|
background-color: color-mix(in oklab, var(--muted-foreground) 30%, transparent);
|
|
838
942
|
}
|
|
839
943
|
}
|
|
840
944
|
.bg-muted\/50 {
|
|
841
945
|
background-color: var(--muted);
|
|
842
|
-
|
|
946
|
+
}
|
|
947
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
948
|
+
.bg-muted\/50 {
|
|
843
949
|
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
844
950
|
}
|
|
845
951
|
}
|
|
@@ -853,13 +959,13 @@
|
|
|
853
959
|
background-color: var(--secondary);
|
|
854
960
|
}
|
|
855
961
|
.bg-transparent {
|
|
856
|
-
background-color:
|
|
962
|
+
background-color: #0000;
|
|
857
963
|
}
|
|
858
964
|
.p-0 {
|
|
859
965
|
padding: calc(var(--spacing) * 0);
|
|
860
966
|
}
|
|
861
967
|
.p-0\.5 {
|
|
862
|
-
padding: calc(var(--spacing) *
|
|
968
|
+
padding: calc(var(--spacing) * .5);
|
|
863
969
|
}
|
|
864
970
|
.p-2 {
|
|
865
971
|
padding: calc(var(--spacing) * 2);
|
|
@@ -874,7 +980,10 @@
|
|
|
874
980
|
padding: calc(var(--spacing) * 6);
|
|
875
981
|
}
|
|
876
982
|
.px-0\.5 {
|
|
877
|
-
padding-inline: calc(var(--spacing) *
|
|
983
|
+
padding-inline: calc(var(--spacing) * .5);
|
|
984
|
+
}
|
|
985
|
+
.px-1 {
|
|
986
|
+
padding-inline: calc(var(--spacing) * 1);
|
|
878
987
|
}
|
|
879
988
|
.px-1\.5 {
|
|
880
989
|
padding-inline: calc(var(--spacing) * 1.5);
|
|
@@ -898,7 +1007,7 @@
|
|
|
898
1007
|
padding-inline: calc(var(--spacing) * 8);
|
|
899
1008
|
}
|
|
900
1009
|
.py-0\.5 {
|
|
901
|
-
padding-block: calc(var(--spacing) *
|
|
1010
|
+
padding-block: calc(var(--spacing) * .5);
|
|
902
1011
|
}
|
|
903
1012
|
.py-1 {
|
|
904
1013
|
padding-block: calc(var(--spacing) * 1);
|
|
@@ -956,23 +1065,23 @@
|
|
|
956
1065
|
}
|
|
957
1066
|
.text-2xl {
|
|
958
1067
|
font-size: var(--text-2xl);
|
|
959
|
-
line-height: var(--tw-leading,
|
|
1068
|
+
line-height: var(--tw-leading,var(--text-2xl--line-height));
|
|
960
1069
|
}
|
|
961
1070
|
.text-base {
|
|
962
1071
|
font-size: var(--text-base);
|
|
963
|
-
line-height: var(--tw-leading,
|
|
1072
|
+
line-height: var(--tw-leading,var(--text-base--line-height));
|
|
964
1073
|
}
|
|
965
1074
|
.text-sm {
|
|
966
1075
|
font-size: var(--text-sm);
|
|
967
|
-
line-height: var(--tw-leading,
|
|
1076
|
+
line-height: var(--tw-leading,var(--text-sm--line-height));
|
|
968
1077
|
}
|
|
969
1078
|
.text-xl {
|
|
970
1079
|
font-size: var(--text-xl);
|
|
971
|
-
line-height: var(--tw-leading,
|
|
1080
|
+
line-height: var(--tw-leading,var(--text-xl--line-height));
|
|
972
1081
|
}
|
|
973
1082
|
.text-xs {
|
|
974
1083
|
font-size: var(--text-xs);
|
|
975
|
-
line-height: var(--tw-leading,
|
|
1084
|
+
line-height: var(--tw-leading,var(--text-xs--line-height));
|
|
976
1085
|
}
|
|
977
1086
|
.text-\[10px\] {
|
|
978
1087
|
font-size: 10px;
|
|
@@ -981,36 +1090,34 @@
|
|
|
981
1090
|
font-size: 11px;
|
|
982
1091
|
}
|
|
983
1092
|
.leading-none {
|
|
984
|
-
--tw-leading:
|
|
1093
|
+
--tw-leading:1;
|
|
985
1094
|
line-height: 1;
|
|
986
1095
|
}
|
|
987
1096
|
.leading-relaxed {
|
|
988
|
-
--tw-leading:
|
|
1097
|
+
--tw-leading:var(--leading-relaxed);
|
|
989
1098
|
line-height: var(--leading-relaxed);
|
|
990
1099
|
}
|
|
991
1100
|
.font-medium {
|
|
992
|
-
--tw-font-weight:
|
|
1101
|
+
--tw-font-weight:var(--font-weight-medium);
|
|
993
1102
|
font-weight: var(--font-weight-medium);
|
|
994
1103
|
}
|
|
995
1104
|
.font-normal {
|
|
996
|
-
--tw-font-weight:
|
|
1105
|
+
--tw-font-weight:var(--font-weight-normal);
|
|
997
1106
|
font-weight: var(--font-weight-normal);
|
|
998
1107
|
}
|
|
999
1108
|
.font-semibold {
|
|
1000
|
-
--tw-font-weight:
|
|
1109
|
+
--tw-font-weight:var(--font-weight-semibold);
|
|
1001
1110
|
font-weight: var(--font-weight-semibold);
|
|
1002
1111
|
}
|
|
1003
1112
|
.tracking-tight {
|
|
1004
|
-
--tw-tracking:
|
|
1113
|
+
--tw-tracking:var(--tracking-tight);
|
|
1005
1114
|
letter-spacing: var(--tracking-tight);
|
|
1006
1115
|
}
|
|
1007
1116
|
.tracking-wider {
|
|
1008
|
-
--tw-tracking:
|
|
1117
|
+
--tw-tracking:var(--tracking-wider);
|
|
1009
1118
|
letter-spacing: var(--tracking-wider);
|
|
1010
1119
|
}
|
|
1011
|
-
.break-words
|
|
1012
|
-
overflow-wrap: break-word;
|
|
1013
|
-
}
|
|
1120
|
+
.break-words,
|
|
1014
1121
|
.wrap-break-word {
|
|
1015
1122
|
overflow-wrap: break-word;
|
|
1016
1123
|
}
|
|
@@ -1041,48 +1148,56 @@
|
|
|
1041
1148
|
.text-destructive {
|
|
1042
1149
|
color: var(--destructive);
|
|
1043
1150
|
}
|
|
1044
|
-
.text-foreground
|
|
1045
|
-
color: var(--foreground);
|
|
1046
|
-
}
|
|
1151
|
+
.text-foreground,
|
|
1047
1152
|
.text-foreground\/30 {
|
|
1048
1153
|
color: var(--foreground);
|
|
1049
|
-
|
|
1154
|
+
}
|
|
1155
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1156
|
+
.text-foreground\/30 {
|
|
1050
1157
|
color: color-mix(in oklab, var(--foreground) 30%, transparent);
|
|
1051
1158
|
}
|
|
1052
1159
|
}
|
|
1053
1160
|
.text-foreground\/40 {
|
|
1054
1161
|
color: var(--foreground);
|
|
1055
|
-
|
|
1162
|
+
}
|
|
1163
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1164
|
+
.text-foreground\/40 {
|
|
1056
1165
|
color: color-mix(in oklab, var(--foreground) 40%, transparent);
|
|
1057
1166
|
}
|
|
1058
1167
|
}
|
|
1059
1168
|
.text-foreground\/80 {
|
|
1060
1169
|
color: var(--foreground);
|
|
1061
|
-
|
|
1170
|
+
}
|
|
1171
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1172
|
+
.text-foreground\/80 {
|
|
1062
1173
|
color: color-mix(in oklab, var(--foreground) 80%, transparent);
|
|
1063
1174
|
}
|
|
1064
1175
|
}
|
|
1065
1176
|
.text-green-600 {
|
|
1066
1177
|
color: var(--color-green-600);
|
|
1067
1178
|
}
|
|
1068
|
-
.text-muted-foreground
|
|
1069
|
-
color: var(--muted-foreground);
|
|
1070
|
-
}
|
|
1179
|
+
.text-muted-foreground,
|
|
1071
1180
|
.text-muted-foreground\/40 {
|
|
1072
1181
|
color: var(--muted-foreground);
|
|
1073
|
-
|
|
1182
|
+
}
|
|
1183
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1184
|
+
.text-muted-foreground\/40 {
|
|
1074
1185
|
color: color-mix(in oklab, var(--muted-foreground) 40%, transparent);
|
|
1075
1186
|
}
|
|
1076
1187
|
}
|
|
1077
1188
|
.text-muted-foreground\/60 {
|
|
1078
1189
|
color: var(--muted-foreground);
|
|
1079
|
-
|
|
1190
|
+
}
|
|
1191
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1192
|
+
.text-muted-foreground\/60 {
|
|
1080
1193
|
color: color-mix(in oklab, var(--muted-foreground) 60%, transparent);
|
|
1081
1194
|
}
|
|
1082
1195
|
}
|
|
1083
1196
|
.text-muted-foreground\/70 {
|
|
1084
1197
|
color: var(--muted-foreground);
|
|
1085
|
-
|
|
1198
|
+
}
|
|
1199
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1200
|
+
.text-muted-foreground\/70 {
|
|
1086
1201
|
color: color-mix(in oklab, var(--muted-foreground) 70%, transparent);
|
|
1087
1202
|
}
|
|
1088
1203
|
}
|
|
@@ -1113,26 +1228,35 @@
|
|
|
1113
1228
|
.italic {
|
|
1114
1229
|
font-style: italic;
|
|
1115
1230
|
}
|
|
1231
|
+
.underline {
|
|
1232
|
+
text-decoration-line: underline;
|
|
1233
|
+
}
|
|
1234
|
+
.decoration-dotted {
|
|
1235
|
+
text-decoration-style: dotted;
|
|
1236
|
+
}
|
|
1237
|
+
.underline-offset-2 {
|
|
1238
|
+
text-underline-offset: 2px;
|
|
1239
|
+
}
|
|
1116
1240
|
.underline-offset-4 {
|
|
1117
1241
|
text-underline-offset: 4px;
|
|
1118
1242
|
}
|
|
1119
1243
|
.opacity-0 {
|
|
1120
|
-
opacity: 0
|
|
1244
|
+
opacity: 0;
|
|
1121
1245
|
}
|
|
1122
1246
|
.opacity-40 {
|
|
1123
|
-
opacity:
|
|
1247
|
+
opacity: .4;
|
|
1124
1248
|
}
|
|
1125
1249
|
.opacity-50 {
|
|
1126
|
-
opacity:
|
|
1250
|
+
opacity: .5;
|
|
1127
1251
|
}
|
|
1128
1252
|
.opacity-70 {
|
|
1129
|
-
opacity:
|
|
1253
|
+
opacity: .7;
|
|
1130
1254
|
}
|
|
1131
1255
|
.opacity-80 {
|
|
1132
|
-
opacity:
|
|
1256
|
+
opacity: .8;
|
|
1133
1257
|
}
|
|
1134
1258
|
.shadow {
|
|
1135
|
-
--tw-shadow:
|
|
1259
|
+
--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);
|
|
1136
1260
|
box-shadow:
|
|
1137
1261
|
var(--tw-inset-shadow),
|
|
1138
1262
|
var(--tw-inset-ring-shadow),
|
|
@@ -1141,7 +1265,7 @@
|
|
|
1141
1265
|
var(--tw-shadow);
|
|
1142
1266
|
}
|
|
1143
1267
|
.shadow-md {
|
|
1144
|
-
--tw-shadow:
|
|
1268
|
+
--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a), 0 2px 4px -2px var(--tw-shadow-color,#0000001a);
|
|
1145
1269
|
box-shadow:
|
|
1146
1270
|
var(--tw-inset-shadow),
|
|
1147
1271
|
var(--tw-inset-ring-shadow),
|
|
@@ -1150,7 +1274,7 @@
|
|
|
1150
1274
|
var(--tw-shadow);
|
|
1151
1275
|
}
|
|
1152
1276
|
.shadow-sm {
|
|
1153
|
-
--tw-shadow:
|
|
1277
|
+
--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);
|
|
1154
1278
|
box-shadow:
|
|
1155
1279
|
var(--tw-inset-shadow),
|
|
1156
1280
|
var(--tw-inset-ring-shadow),
|
|
@@ -1190,13 +1314,13 @@
|
|
|
1190
1314
|
content-visibility,
|
|
1191
1315
|
overlay,
|
|
1192
1316
|
pointer-events;
|
|
1193
|
-
transition-timing-function: var(--tw-ease,
|
|
1194
|
-
transition-duration: var(--tw-duration,
|
|
1317
|
+
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
1318
|
+
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
1195
1319
|
}
|
|
1196
1320
|
.transition-all {
|
|
1197
1321
|
transition-property: all;
|
|
1198
|
-
transition-timing-function: var(--tw-ease,
|
|
1199
|
-
transition-duration: var(--tw-duration,
|
|
1322
|
+
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
1323
|
+
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
1200
1324
|
}
|
|
1201
1325
|
.transition-colors {
|
|
1202
1326
|
transition-property:
|
|
@@ -1210,195 +1334,137 @@
|
|
|
1210
1334
|
--tw-gradient-from,
|
|
1211
1335
|
--tw-gradient-via,
|
|
1212
1336
|
--tw-gradient-to;
|
|
1213
|
-
transition-timing-function: var(--tw-ease,
|
|
1214
|
-
transition-duration: var(--tw-duration,
|
|
1337
|
+
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
1338
|
+
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
1215
1339
|
}
|
|
1216
1340
|
.transition-opacity {
|
|
1217
1341
|
transition-property: opacity;
|
|
1218
|
-
transition-timing-function: var(--tw-ease,
|
|
1219
|
-
transition-duration: var(--tw-duration,
|
|
1342
|
+
transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
|
|
1343
|
+
transition-duration: var(--tw-duration,var(--default-transition-duration));
|
|
1220
1344
|
}
|
|
1221
1345
|
.duration-150 {
|
|
1222
|
-
--tw-duration
|
|
1223
|
-
transition-duration:
|
|
1346
|
+
--tw-duration:.15s;
|
|
1347
|
+
transition-duration: .15s;
|
|
1224
1348
|
}
|
|
1225
1349
|
.duration-200 {
|
|
1226
|
-
--tw-duration
|
|
1227
|
-
transition-duration:
|
|
1350
|
+
--tw-duration:.2s;
|
|
1351
|
+
transition-duration: .2s;
|
|
1228
1352
|
}
|
|
1229
1353
|
.duration-300 {
|
|
1230
|
-
--tw-duration
|
|
1231
|
-
transition-duration:
|
|
1354
|
+
--tw-duration:.3s;
|
|
1355
|
+
transition-duration: .3s;
|
|
1232
1356
|
}
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
opacity: 100%;
|
|
1237
|
-
}
|
|
1357
|
+
@media (hover: hover) {
|
|
1358
|
+
.group-hover\:opacity-100:is(:where(.group):hover *) {
|
|
1359
|
+
opacity: 1;
|
|
1238
1360
|
}
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
&::file-selector-button {
|
|
1242
|
-
border-style: var(--tw-border-style);
|
|
1243
|
-
border-width: 0px;
|
|
1361
|
+
.group-hover\/repo\:text-foreground:is(:where(.group\/repo):hover *) {
|
|
1362
|
+
color: var(--foreground);
|
|
1244
1363
|
}
|
|
1245
1364
|
}
|
|
1246
|
-
.file\:
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
}
|
|
1365
|
+
.file\:border-0::file-selector-button {
|
|
1366
|
+
border-style: var(--tw-border-style);
|
|
1367
|
+
border-width: 0;
|
|
1250
1368
|
}
|
|
1251
|
-
.file\:
|
|
1252
|
-
|
|
1253
|
-
font-size: var(--text-sm);
|
|
1254
|
-
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
1255
|
-
}
|
|
1369
|
+
.file\:bg-transparent::file-selector-button {
|
|
1370
|
+
background-color: #0000;
|
|
1256
1371
|
}
|
|
1257
|
-
.file\:
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
font-weight: var(--font-weight-medium);
|
|
1261
|
-
}
|
|
1372
|
+
.file\:text-sm::file-selector-button {
|
|
1373
|
+
font-size: var(--text-sm);
|
|
1374
|
+
line-height: var(--tw-leading,var(--text-sm--line-height));
|
|
1262
1375
|
}
|
|
1263
|
-
.
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
}
|
|
1376
|
+
.file\:font-medium::file-selector-button {
|
|
1377
|
+
--tw-font-weight:var(--font-weight-medium);
|
|
1378
|
+
font-weight: var(--font-weight-medium);
|
|
1267
1379
|
}
|
|
1268
|
-
.
|
|
1269
|
-
|
|
1270
|
-
@media (hover: hover) {
|
|
1271
|
-
border-color: var(--foreground);
|
|
1272
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1273
|
-
border-color: color-mix(in oklab, var(--foreground) 10%, transparent);
|
|
1274
|
-
}
|
|
1275
|
-
}
|
|
1276
|
-
}
|
|
1380
|
+
.placeholder\:text-muted-foreground::placeholder {
|
|
1381
|
+
color: var(--muted-foreground);
|
|
1277
1382
|
}
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
border-color: var(--foreground);
|
|
1282
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1283
|
-
border-color: color-mix(in oklab, var(--foreground) 15%, transparent);
|
|
1284
|
-
}
|
|
1285
|
-
}
|
|
1383
|
+
@media (hover: hover) {
|
|
1384
|
+
.hover\:border-foreground\/10:hover {
|
|
1385
|
+
border-color: var(--foreground);
|
|
1286
1386
|
}
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
@media (hover: hover) {
|
|
1291
|
-
border-color: var(--foreground);
|
|
1292
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1293
|
-
border-color: color-mix(in oklab, var(--foreground) 20%, transparent);
|
|
1294
|
-
}
|
|
1387
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1388
|
+
.hover\:border-foreground\/10:hover {
|
|
1389
|
+
border-color: color-mix(in oklab, var(--foreground) 10%, transparent);
|
|
1295
1390
|
}
|
|
1296
1391
|
}
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
&:hover {
|
|
1300
|
-
@media (hover: hover) {
|
|
1301
|
-
border-color: var(--foreground);
|
|
1302
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1303
|
-
border-color: color-mix(in oklab, var(--foreground) 50%, transparent);
|
|
1304
|
-
}
|
|
1305
|
-
}
|
|
1392
|
+
.hover\:border-foreground\/15:hover {
|
|
1393
|
+
border-color: var(--foreground);
|
|
1306
1394
|
}
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
@media (hover: hover) {
|
|
1311
|
-
background-color: var(--accent);
|
|
1395
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1396
|
+
.hover\:border-foreground\/15:hover {
|
|
1397
|
+
border-color: color-mix(in oklab, var(--foreground) 15%, transparent);
|
|
1312
1398
|
}
|
|
1313
1399
|
}
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
&:hover {
|
|
1317
|
-
@media (hover: hover) {
|
|
1318
|
-
background-color: var(--accent);
|
|
1319
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1320
|
-
background-color: color-mix(in oklab, var(--accent) 30%, transparent);
|
|
1321
|
-
}
|
|
1322
|
-
}
|
|
1400
|
+
.hover\:border-foreground\/20:hover {
|
|
1401
|
+
border-color: var(--foreground);
|
|
1323
1402
|
}
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
@media (hover: hover) {
|
|
1328
|
-
background-color: var(--accent);
|
|
1329
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1330
|
-
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
1331
|
-
}
|
|
1403
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1404
|
+
.hover\:border-foreground\/20:hover {
|
|
1405
|
+
border-color: color-mix(in oklab, var(--foreground) 20%, transparent);
|
|
1332
1406
|
}
|
|
1333
1407
|
}
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
&:hover {
|
|
1337
|
-
@media (hover: hover) {
|
|
1338
|
-
background-color: var(--destructive);
|
|
1339
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1340
|
-
background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
|
|
1341
|
-
}
|
|
1342
|
-
}
|
|
1408
|
+
.hover\:border-foreground\/50:hover {
|
|
1409
|
+
border-color: var(--foreground);
|
|
1343
1410
|
}
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
@media (hover: hover) {
|
|
1348
|
-
background-color: var(--primary);
|
|
1349
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1350
|
-
background-color: color-mix(in oklab, var(--primary) 90%, transparent);
|
|
1351
|
-
}
|
|
1411
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1412
|
+
.hover\:border-foreground\/50:hover {
|
|
1413
|
+
border-color: color-mix(in oklab, var(--foreground) 50%, transparent);
|
|
1352
1414
|
}
|
|
1353
1415
|
}
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
}
|
|
1416
|
+
.hover\:bg-accent:hover,
|
|
1417
|
+
.hover\:bg-accent\/30:hover {
|
|
1418
|
+
background-color: var(--accent);
|
|
1419
|
+
}
|
|
1420
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1421
|
+
.hover\:bg-accent\/30:hover {
|
|
1422
|
+
background-color: color-mix(in oklab, var(--accent) 30%, transparent);
|
|
1362
1423
|
}
|
|
1363
1424
|
}
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1425
|
+
.hover\:bg-accent\/50:hover {
|
|
1426
|
+
background-color: var(--accent);
|
|
1427
|
+
}
|
|
1428
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1429
|
+
.hover\:bg-accent\/50:hover {
|
|
1430
|
+
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
1369
1431
|
}
|
|
1370
1432
|
}
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1433
|
+
.hover\:bg-destructive\/90:hover {
|
|
1434
|
+
background-color: var(--destructive);
|
|
1435
|
+
}
|
|
1436
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1437
|
+
.hover\:bg-destructive\/90:hover {
|
|
1438
|
+
background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
|
|
1376
1439
|
}
|
|
1377
1440
|
}
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1441
|
+
.hover\:bg-primary\/90:hover {
|
|
1442
|
+
background-color: var(--primary);
|
|
1443
|
+
}
|
|
1444
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1445
|
+
.hover\:bg-primary\/90:hover {
|
|
1446
|
+
background-color: color-mix(in oklab, var(--primary) 90%, transparent);
|
|
1383
1447
|
}
|
|
1384
1448
|
}
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
var(--tw-inset-shadow),
|
|
1392
|
-
var(--tw-inset-ring-shadow),
|
|
1393
|
-
var(--tw-ring-offset-shadow),
|
|
1394
|
-
var(--tw-ring-shadow),
|
|
1395
|
-
var(--tw-shadow);
|
|
1449
|
+
.hover\:bg-secondary\/80:hover {
|
|
1450
|
+
background-color: var(--secondary);
|
|
1451
|
+
}
|
|
1452
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1453
|
+
.hover\:bg-secondary\/80:hover {
|
|
1454
|
+
background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
|
|
1396
1455
|
}
|
|
1397
1456
|
}
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1457
|
+
.hover\:text-accent-foreground:hover {
|
|
1458
|
+
color: var(--accent-foreground);
|
|
1459
|
+
}
|
|
1460
|
+
.hover\:text-foreground:hover {
|
|
1461
|
+
color: var(--foreground);
|
|
1462
|
+
}
|
|
1463
|
+
.hover\:underline:hover {
|
|
1464
|
+
text-decoration-line: underline;
|
|
1465
|
+
}
|
|
1466
|
+
.hover\:shadow-md:hover {
|
|
1467
|
+
--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a), 0 2px 4px -2px var(--tw-shadow-color,#0000001a);
|
|
1402
1468
|
box-shadow:
|
|
1403
1469
|
var(--tw-inset-shadow),
|
|
1404
1470
|
var(--tw-inset-ring-shadow),
|
|
@@ -1407,240 +1473,159 @@
|
|
|
1407
1473
|
var(--tw-shadow);
|
|
1408
1474
|
}
|
|
1409
1475
|
}
|
|
1410
|
-
.focus\:ring-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1476
|
+
.focus\:ring-2:focus {
|
|
1477
|
+
--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
|
|
1478
|
+
box-shadow:
|
|
1479
|
+
var(--tw-inset-shadow),
|
|
1480
|
+
var(--tw-inset-ring-shadow),
|
|
1481
|
+
var(--tw-ring-offset-shadow),
|
|
1482
|
+
var(--tw-ring-shadow),
|
|
1483
|
+
var(--tw-shadow);
|
|
1414
1484
|
}
|
|
1415
|
-
.focus\:ring-
|
|
1416
|
-
|
|
1417
|
-
--tw-ring-offset-width: 2px;
|
|
1418
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1419
|
-
}
|
|
1485
|
+
.focus\:ring-ring:focus {
|
|
1486
|
+
--tw-ring-color:var(--ring);
|
|
1420
1487
|
}
|
|
1421
|
-
.focus\:
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
outline-style: none;
|
|
1425
|
-
}
|
|
1488
|
+
.focus\:ring-offset-2:focus {
|
|
1489
|
+
--tw-ring-offset-width:2px;
|
|
1490
|
+
--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1426
1491
|
}
|
|
1427
|
-
.focus
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
box-shadow:
|
|
1431
|
-
var(--tw-inset-shadow),
|
|
1432
|
-
var(--tw-inset-ring-shadow),
|
|
1433
|
-
var(--tw-ring-offset-shadow),
|
|
1434
|
-
var(--tw-ring-shadow),
|
|
1435
|
-
var(--tw-shadow);
|
|
1436
|
-
}
|
|
1492
|
+
.focus\:outline-none:focus {
|
|
1493
|
+
--tw-outline-style:none;
|
|
1494
|
+
outline-style: none;
|
|
1437
1495
|
}
|
|
1438
|
-
.focus-visible\:ring-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1496
|
+
.focus-visible\:ring-1:focus-visible {
|
|
1497
|
+
--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
|
|
1498
|
+
box-shadow:
|
|
1499
|
+
var(--tw-inset-shadow),
|
|
1500
|
+
var(--tw-inset-ring-shadow),
|
|
1501
|
+
var(--tw-ring-offset-shadow),
|
|
1502
|
+
var(--tw-ring-shadow),
|
|
1503
|
+
var(--tw-shadow);
|
|
1442
1504
|
}
|
|
1443
|
-
.focus-visible\:
|
|
1444
|
-
|
|
1445
|
-
--tw-outline-style: none;
|
|
1446
|
-
outline-style: none;
|
|
1447
|
-
}
|
|
1505
|
+
.focus-visible\:ring-ring:focus-visible {
|
|
1506
|
+
--tw-ring-color:var(--ring);
|
|
1448
1507
|
}
|
|
1449
|
-
.
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
}
|
|
1508
|
+
.focus-visible\:outline-none:focus-visible {
|
|
1509
|
+
--tw-outline-style:none;
|
|
1510
|
+
outline-style: none;
|
|
1453
1511
|
}
|
|
1454
|
-
.
|
|
1455
|
-
|
|
1456
|
-
pointer-events: none;
|
|
1457
|
-
}
|
|
1512
|
+
.active\:scale-\[0\.98\]:active {
|
|
1513
|
+
scale: .98;
|
|
1458
1514
|
}
|
|
1459
|
-
.disabled\:
|
|
1460
|
-
|
|
1461
|
-
cursor: not-allowed;
|
|
1462
|
-
}
|
|
1515
|
+
.disabled\:pointer-events-none:disabled {
|
|
1516
|
+
pointer-events: none;
|
|
1463
1517
|
}
|
|
1464
|
-
.disabled\:
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1518
|
+
.disabled\:cursor-not-allowed:disabled {
|
|
1519
|
+
cursor: not-allowed;
|
|
1520
|
+
}
|
|
1521
|
+
.disabled\:opacity-50:disabled {
|
|
1522
|
+
opacity: .5;
|
|
1468
1523
|
}
|
|
1469
|
-
|
|
1470
|
-
|
|
1524
|
+
@media (min-width: 40rem) {
|
|
1525
|
+
.sm\:inline {
|
|
1471
1526
|
display: inline;
|
|
1472
1527
|
}
|
|
1473
|
-
|
|
1474
|
-
.sm\:grid-cols-2 {
|
|
1475
|
-
@media (width >= 40rem) {
|
|
1528
|
+
.sm\:grid-cols-2 {
|
|
1476
1529
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1477
1530
|
}
|
|
1478
1531
|
}
|
|
1479
|
-
.dark\:border-blue-500\/50 {
|
|
1480
|
-
|
|
1481
|
-
border-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 50%, transparent);
|
|
1482
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1483
|
-
border-color: color-mix(in oklab, var(--color-blue-500) 50%, transparent);
|
|
1484
|
-
}
|
|
1485
|
-
}
|
|
1532
|
+
.dark\:border-blue-500\/50:is(.dark *) {
|
|
1533
|
+
border-color: #3080ff80;
|
|
1486
1534
|
}
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1491
|
-
background-color: color-mix(in oklab, var(--color-amber-500) 5%, transparent);
|
|
1492
|
-
}
|
|
1535
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1536
|
+
.dark\:border-blue-500\/50:is(.dark *) {
|
|
1537
|
+
border-color: color-mix(in oklab, var(--color-blue-500) 50%, transparent);
|
|
1493
1538
|
}
|
|
1494
1539
|
}
|
|
1495
|
-
.dark\:
|
|
1496
|
-
|
|
1497
|
-
color: var(--color-amber-200);
|
|
1498
|
-
}
|
|
1540
|
+
.dark\:bg-amber-500\/5:is(.dark *) {
|
|
1541
|
+
background-color: #f99c000d;
|
|
1499
1542
|
}
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
color: var(--color-amber-
|
|
1543
|
+
@supports (color:color-mix(in lab, red, red)) {
|
|
1544
|
+
.dark\:bg-amber-500\/5:is(.dark *) {
|
|
1545
|
+
background-color: color-mix(in oklab, var(--color-amber-500) 5%, transparent);
|
|
1503
1546
|
}
|
|
1504
1547
|
}
|
|
1505
|
-
.dark\:text-amber-
|
|
1506
|
-
|
|
1507
|
-
color: var(--color-amber-400);
|
|
1508
|
-
}
|
|
1548
|
+
.dark\:text-amber-200:is(.dark *) {
|
|
1549
|
+
color: var(--color-amber-200);
|
|
1509
1550
|
}
|
|
1510
|
-
.dark\:text-
|
|
1511
|
-
|
|
1512
|
-
color: var(--color-blue-400);
|
|
1513
|
-
}
|
|
1551
|
+
.dark\:text-amber-300:is(.dark *) {
|
|
1552
|
+
color: var(--color-amber-300);
|
|
1514
1553
|
}
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
pointer-events: none;
|
|
1518
|
-
}
|
|
1554
|
+
.dark\:text-amber-400:is(.dark *) {
|
|
1555
|
+
color: var(--color-amber-400);
|
|
1519
1556
|
}
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
width: calc(var(--spacing) * 4);
|
|
1523
|
-
height: calc(var(--spacing) * 4);
|
|
1524
|
-
}
|
|
1557
|
+
.dark\:text-blue-400:is(.dark *) {
|
|
1558
|
+
color: var(--color-blue-400);
|
|
1525
1559
|
}
|
|
1526
|
-
.\[\&_svg\]\:
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1560
|
+
.\[\&_svg\]\:pointer-events-none svg {
|
|
1561
|
+
pointer-events: none;
|
|
1562
|
+
}
|
|
1563
|
+
.\[\&_svg\]\:size-4 svg {
|
|
1564
|
+
width: calc(var(--spacing) * 4);
|
|
1565
|
+
height: calc(var(--spacing) * 4);
|
|
1566
|
+
}
|
|
1567
|
+
.\[\&_svg\]\:shrink-0 svg {
|
|
1568
|
+
flex-shrink: 0;
|
|
1530
1569
|
}
|
|
1531
1570
|
}
|
|
1532
1571
|
:host,
|
|
1533
1572
|
.clipper-plugin-root {
|
|
1534
|
-
--radius
|
|
1573
|
+
--radius:.625rem;
|
|
1535
1574
|
}
|
|
1536
|
-
@
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
}
|
|
1541
|
-
@property --tw-
|
|
1542
|
-
@property --tw-
|
|
1543
|
-
@property --tw-
|
|
1544
|
-
@property --tw-
|
|
1545
|
-
@property --tw-
|
|
1546
|
-
@property --tw-
|
|
1547
|
-
@property --tw-
|
|
1548
|
-
@property --tw-
|
|
1549
|
-
@property --tw-
|
|
1550
|
-
@property --tw-
|
|
1551
|
-
@property --tw-
|
|
1552
|
-
@property --tw-shadow { syntax:
|
|
1553
|
-
@property --tw-
|
|
1554
|
-
@property --tw-shadow
|
|
1555
|
-
@property --tw-inset-
|
|
1556
|
-
@property --tw-inset-shadow
|
|
1557
|
-
@property --tw-inset
|
|
1558
|
-
@property --tw-ring-
|
|
1559
|
-
@property --tw-ring-
|
|
1560
|
-
@property --tw-
|
|
1561
|
-
@property --tw-
|
|
1562
|
-
@property --tw-
|
|
1563
|
-
@property --tw-
|
|
1564
|
-
@property --tw-
|
|
1565
|
-
@property --tw-
|
|
1566
|
-
@property --tw-
|
|
1567
|
-
@property --tw-
|
|
1568
|
-
@property --tw-
|
|
1569
|
-
@property --tw-
|
|
1570
|
-
@property --tw-
|
|
1571
|
-
@property --tw-
|
|
1572
|
-
@property --tw-
|
|
1573
|
-
@property --tw-
|
|
1574
|
-
@property --tw-
|
|
1575
|
-
@property --tw-
|
|
1576
|
-
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
|
|
1577
|
-
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
|
|
1578
|
-
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
1579
|
-
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
|
|
1580
|
-
@property --tw-duration { syntax: "*"; inherits: false; }
|
|
1575
|
+
@property --tw-rotate-x { syntax:"*";inherits:false }
|
|
1576
|
+
@property --tw-rotate-y { syntax:"*";inherits:false }
|
|
1577
|
+
@property --tw-rotate-z { syntax:"*";inherits:false }
|
|
1578
|
+
@property --tw-skew-x { syntax:"*";inherits:false }
|
|
1579
|
+
@property --tw-skew-y { syntax:"*";inherits:false }
|
|
1580
|
+
@property --tw-space-y-reverse { syntax:"*";inherits:false;initial-value:0 }
|
|
1581
|
+
@property --tw-divide-y-reverse { syntax:"*";inherits:false;initial-value:0 }
|
|
1582
|
+
@property --tw-border-style { syntax:"*";inherits:false;initial-value:solid }
|
|
1583
|
+
@property --tw-leading { syntax:"*";inherits:false }
|
|
1584
|
+
@property --tw-font-weight { syntax:"*";inherits:false }
|
|
1585
|
+
@property --tw-tracking { syntax:"*";inherits:false }
|
|
1586
|
+
@property --tw-shadow { syntax:"*";inherits:false;initial-value:0 0 #0000 }
|
|
1587
|
+
@property --tw-shadow-color { syntax:"*";inherits:false }
|
|
1588
|
+
@property --tw-shadow-alpha { syntax:"<percentage>";inherits:false;initial-value:100% }
|
|
1589
|
+
@property --tw-inset-shadow { syntax:"*";inherits:false;initial-value:0 0 #0000 }
|
|
1590
|
+
@property --tw-inset-shadow-color { syntax:"*";inherits:false }
|
|
1591
|
+
@property --tw-inset-shadow-alpha { syntax:"<percentage>";inherits:false;initial-value:100% }
|
|
1592
|
+
@property --tw-ring-color { syntax:"*";inherits:false }
|
|
1593
|
+
@property --tw-ring-shadow { syntax:"*";inherits:false;initial-value:0 0 #0000 }
|
|
1594
|
+
@property --tw-inset-ring-color { syntax:"*";inherits:false }
|
|
1595
|
+
@property --tw-inset-ring-shadow { syntax:"*";inherits:false;initial-value:0 0 #0000 }
|
|
1596
|
+
@property --tw-ring-inset { syntax:"*";inherits:false }
|
|
1597
|
+
@property --tw-ring-offset-width { syntax:"<length>";inherits:false;initial-value:0 }
|
|
1598
|
+
@property --tw-ring-offset-color { syntax:"*";inherits:false;initial-value:#fff }
|
|
1599
|
+
@property --tw-ring-offset-shadow { syntax:"*";inherits:false;initial-value:0 0 #0000 }
|
|
1600
|
+
@property --tw-outline-style { syntax:"*";inherits:false;initial-value:solid }
|
|
1601
|
+
@property --tw-blur { syntax:"*";inherits:false }
|
|
1602
|
+
@property --tw-brightness { syntax:"*";inherits:false }
|
|
1603
|
+
@property --tw-contrast { syntax:"*";inherits:false }
|
|
1604
|
+
@property --tw-grayscale { syntax:"*";inherits:false }
|
|
1605
|
+
@property --tw-hue-rotate { syntax:"*";inherits:false }
|
|
1606
|
+
@property --tw-invert { syntax:"*";inherits:false }
|
|
1607
|
+
@property --tw-opacity { syntax:"*";inherits:false }
|
|
1608
|
+
@property --tw-saturate { syntax:"*";inherits:false }
|
|
1609
|
+
@property --tw-sepia { syntax:"*";inherits:false }
|
|
1610
|
+
@property --tw-drop-shadow { syntax:"*";inherits:false }
|
|
1611
|
+
@property --tw-drop-shadow-color { syntax:"*";inherits:false }
|
|
1612
|
+
@property --tw-drop-shadow-alpha { syntax:"<percentage>";inherits:false;initial-value:100% }
|
|
1613
|
+
@property --tw-drop-shadow-size { syntax:"*";inherits:false }
|
|
1614
|
+
@property --tw-duration { syntax:"*";inherits:false }
|
|
1581
1615
|
@keyframes spin {
|
|
1582
1616
|
to {
|
|
1583
1617
|
transform: rotate(360deg);
|
|
1584
1618
|
}
|
|
1585
1619
|
}
|
|
1586
1620
|
@keyframes ping {
|
|
1587
|
-
75%,
|
|
1588
|
-
transform: scale(2);
|
|
1621
|
+
75%, to {
|
|
1589
1622
|
opacity: 0;
|
|
1623
|
+
transform: scale(2);
|
|
1590
1624
|
}
|
|
1591
1625
|
}
|
|
1592
1626
|
@keyframes pulse {
|
|
1593
1627
|
50% {
|
|
1594
|
-
opacity:
|
|
1595
|
-
}
|
|
1596
|
-
}
|
|
1597
|
-
@layer properties {
|
|
1598
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1599
|
-
*,
|
|
1600
|
-
::before,
|
|
1601
|
-
::after,
|
|
1602
|
-
::backdrop {
|
|
1603
|
-
--tw-rotate-x: initial;
|
|
1604
|
-
--tw-rotate-y: initial;
|
|
1605
|
-
--tw-rotate-z: initial;
|
|
1606
|
-
--tw-skew-x: initial;
|
|
1607
|
-
--tw-skew-y: initial;
|
|
1608
|
-
--tw-space-y-reverse: 0;
|
|
1609
|
-
--tw-divide-y-reverse: 0;
|
|
1610
|
-
--tw-border-style: solid;
|
|
1611
|
-
--tw-leading: initial;
|
|
1612
|
-
--tw-font-weight: initial;
|
|
1613
|
-
--tw-tracking: initial;
|
|
1614
|
-
--tw-shadow: 0 0 #0000;
|
|
1615
|
-
--tw-shadow-color: initial;
|
|
1616
|
-
--tw-shadow-alpha: 100%;
|
|
1617
|
-
--tw-inset-shadow: 0 0 #0000;
|
|
1618
|
-
--tw-inset-shadow-color: initial;
|
|
1619
|
-
--tw-inset-shadow-alpha: 100%;
|
|
1620
|
-
--tw-ring-color: initial;
|
|
1621
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
1622
|
-
--tw-inset-ring-color: initial;
|
|
1623
|
-
--tw-inset-ring-shadow: 0 0 #0000;
|
|
1624
|
-
--tw-ring-inset: initial;
|
|
1625
|
-
--tw-ring-offset-width: 0px;
|
|
1626
|
-
--tw-ring-offset-color: #fff;
|
|
1627
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1628
|
-
--tw-outline-style: solid;
|
|
1629
|
-
--tw-blur: initial;
|
|
1630
|
-
--tw-brightness: initial;
|
|
1631
|
-
--tw-contrast: initial;
|
|
1632
|
-
--tw-grayscale: initial;
|
|
1633
|
-
--tw-hue-rotate: initial;
|
|
1634
|
-
--tw-invert: initial;
|
|
1635
|
-
--tw-opacity: initial;
|
|
1636
|
-
--tw-saturate: initial;
|
|
1637
|
-
--tw-sepia: initial;
|
|
1638
|
-
--tw-drop-shadow: initial;
|
|
1639
|
-
--tw-drop-shadow-color: initial;
|
|
1640
|
-
--tw-drop-shadow-alpha: 100%;
|
|
1641
|
-
--tw-drop-shadow-size: initial;
|
|
1642
|
-
--tw-duration: initial;
|
|
1643
|
-
}
|
|
1628
|
+
opacity: .5;
|
|
1644
1629
|
}
|
|
1645
1630
|
}
|
|
1646
1631
|
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
|