@framed-dev/react 0.2.0 → 0.3.0
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 +62 -233
- package/dist/index.cjs +17247 -73617
- package/dist/index.cjs.map +1 -0
- package/dist/index.js +17269 -73202
- package/dist/index.js.map +1 -0
- package/package.json +19 -65
- package/dist/index.d.cts +0 -761
- package/dist/index.d.ts +0 -761
- package/dist/styles/framed.css +0 -6474
- package/styles.css +0 -525
- package/tailwind.config.js +0 -207
- package/tailwind.preset.js +0 -86
package/styles.css
DELETED
|
@@ -1,525 +0,0 @@
|
|
|
1
|
-
@tailwind base;
|
|
2
|
-
@tailwind components;
|
|
3
|
-
@tailwind utilities;
|
|
4
|
-
|
|
5
|
-
@layer base {
|
|
6
|
-
* {
|
|
7
|
-
@apply border-wenge-300;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
/* Force light color scheme to prevent system dark mode from affecting form elements */
|
|
11
|
-
:root {
|
|
12
|
-
color-scheme: light;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
body {
|
|
16
|
-
@apply bg-white text-mirage;
|
|
17
|
-
}
|
|
18
|
-
:root {
|
|
19
|
-
--background: 0 0% 100%;
|
|
20
|
-
--foreground: 0 0% 1%;
|
|
21
|
-
--card: 0 0% 100%;
|
|
22
|
-
--card-foreground: 0 0% 1%;
|
|
23
|
-
--popover: 0 0% 100%;
|
|
24
|
-
--popover-foreground: 0 0% 1%;
|
|
25
|
-
--primary: 220 73% 79%;
|
|
26
|
-
--primary-foreground: 0 0% 1%;
|
|
27
|
-
--secondary: 230 30% 65%;
|
|
28
|
-
--secondary-foreground: 0 0% 1%;
|
|
29
|
-
--muted: 230 30% 95%;
|
|
30
|
-
--muted-foreground: 230 10% 40%;
|
|
31
|
-
--accent: 220 73% 79%;
|
|
32
|
-
--accent-foreground: 0 0% 1%;
|
|
33
|
-
--destructive: 0 84.2% 60.2%;
|
|
34
|
-
--destructive-foreground: 0 0% 98%;
|
|
35
|
-
--border: 20 17% 85%;
|
|
36
|
-
--input: 20 17% 85%;
|
|
37
|
-
--ring: 220 73% 79%;
|
|
38
|
-
--chart-1: 220 73% 79%;
|
|
39
|
-
--chart-2: 230 30% 65%;
|
|
40
|
-
--chart-3: 20 17% 40%;
|
|
41
|
-
--chart-4: 20 25% 31%;
|
|
42
|
-
--chart-5: 27 87% 67%;
|
|
43
|
-
--radius: 0.5rem
|
|
44
|
-
;
|
|
45
|
-
--sidebar-background: 0 0% 98%;
|
|
46
|
-
--sidebar-foreground: 0 0% 1%;
|
|
47
|
-
--sidebar-primary: 220 73% 79%;
|
|
48
|
-
--sidebar-primary-foreground: 0 0% 1%;
|
|
49
|
-
--sidebar-accent: 220 73% 95%;
|
|
50
|
-
--sidebar-accent-foreground: 0 0% 1%;
|
|
51
|
-
--sidebar-border: 20 17% 85%;
|
|
52
|
-
--sidebar-ring: 220 73% 79%}
|
|
53
|
-
.dark {
|
|
54
|
-
--background: 0 0% 3.9%;
|
|
55
|
-
--foreground: 0 0% 98%;
|
|
56
|
-
--card: 0 0% 3.9%;
|
|
57
|
-
--card-foreground: 0 0% 98%;
|
|
58
|
-
--popover: 0 0% 3.9%;
|
|
59
|
-
--popover-foreground: 0 0% 98%;
|
|
60
|
-
--primary: 0 0% 98%;
|
|
61
|
-
--primary-foreground: 0 0% 9%;
|
|
62
|
-
--secondary: 0 0% 14.9%;
|
|
63
|
-
--secondary-foreground: 0 0% 98%;
|
|
64
|
-
--muted: 0 0% 14.9%;
|
|
65
|
-
--muted-foreground: 0 0% 63.9%;
|
|
66
|
-
--accent: 0 0% 14.9%;
|
|
67
|
-
--accent-foreground: 0 0% 98%;
|
|
68
|
-
--destructive: 0 62.8% 30.6%;
|
|
69
|
-
--destructive-foreground: 0 0% 98%;
|
|
70
|
-
--border: 0 0% 14.9%;
|
|
71
|
-
--input: 0 0% 14.9%;
|
|
72
|
-
--ring: 0 0% 83.1%;
|
|
73
|
-
--chart-1: 220 70% 50%;
|
|
74
|
-
--chart-2: 160 60% 45%;
|
|
75
|
-
--chart-3: 30 80% 55%;
|
|
76
|
-
--chart-4: 280 65% 60%;
|
|
77
|
-
--chart-5: 340 75% 55%
|
|
78
|
-
;
|
|
79
|
-
--sidebar-background: 240 5.9% 10%;
|
|
80
|
-
--sidebar-foreground: 240 4.8% 95.9%;
|
|
81
|
-
--sidebar-primary: 224.3 76.3% 48%;
|
|
82
|
-
--sidebar-primary-foreground: 0 0% 100%;
|
|
83
|
-
--sidebar-accent: 240 3.7% 15.9%;
|
|
84
|
-
--sidebar-accent-foreground: 240 4.8% 95.9%;
|
|
85
|
-
--sidebar-border: 240 3.7% 15.9%;
|
|
86
|
-
--sidebar-ring: 217.2 91.2% 59.8%}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
@layer components {
|
|
90
|
-
.btn {
|
|
91
|
-
@apply inline-flex items-center justify-center rounded-lg font-medium transition-all duration-200 disabled:opacity-50 disabled:cursor-not-allowed;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.btn-primary {
|
|
95
|
-
@apply bg-powder-blue text-black h-12 px-6 shadow-sm hover:bg-powder-blue-500 hover:scale-[1.02] hover:shadow-md;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.btn-secondary {
|
|
99
|
-
@apply bg-transparent border-2 border-powder-blue text-powder-blue h-12 px-6 hover:bg-powder-blue-50;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.btn-text {
|
|
103
|
-
@apply bg-transparent text-powder-blue px-4 py-2 hover:bg-powder-blue-50;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.input {
|
|
107
|
-
@apply h-12 px-4 border-2 border-wenge-300 rounded-lg text-base bg-white
|
|
108
|
-
focus:border-powder-blue focus:ring-4 focus:ring-powder-blue-100 focus:outline-none
|
|
109
|
-
disabled:bg-wenge-100 disabled:cursor-not-allowed disabled:opacity-60;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.input-error {
|
|
113
|
-
@apply border-accent-error focus:ring-red-100;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.textarea {
|
|
117
|
-
@apply px-4 py-3 border-2 border-wenge-300 rounded-lg text-base bg-white resize-y
|
|
118
|
-
focus:border-powder-blue focus:ring-4 focus:ring-powder-blue-100 focus:outline-none
|
|
119
|
-
disabled:bg-wenge-100 disabled:cursor-not-allowed disabled:opacity-60;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.card {
|
|
123
|
-
@apply bg-white border border-wenge-300 rounded-xl p-6 shadow-sm;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.card-hover {
|
|
127
|
-
@apply hover:shadow-lg hover:-translate-y-0.5 transition-all duration-200;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.label {
|
|
131
|
-
@apply block text-sm font-medium text-mirage mb-2;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.error-message {
|
|
135
|
-
@apply text-sm text-accent-error mt-1;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.helper-text {
|
|
139
|
-
@apply text-sm text-mirage-100 mt-1;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
/* Hide scrollbar but keep functionality */
|
|
143
|
-
.scrollbar-hide {
|
|
144
|
-
-ms-overflow-style: none; /* IE and Edge */
|
|
145
|
-
scrollbar-width: none; /* Firefox */
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.scrollbar-hide::-webkit-scrollbar {
|
|
149
|
-
display: none; /* Chrome, Safari and Opera */
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/* @Mention highlighting */
|
|
153
|
-
.mention {
|
|
154
|
-
@apply bg-blue-100 text-blue-700 px-1 py-0.5 rounded font-medium;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/* Premium Wizard Styles */
|
|
158
|
-
.wizard-card {
|
|
159
|
-
@apply relative bg-white rounded-2xl border border-gray-100 shadow-sm;
|
|
160
|
-
@apply transition-all duration-300;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.wizard-card:hover {
|
|
164
|
-
@apply shadow-lg;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.wizard-card--active {
|
|
168
|
-
@apply shadow-lg shadow-gray-100/50;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/* Premium gradient text */
|
|
172
|
-
.gradient-text {
|
|
173
|
-
@apply bg-gradient-to-r from-powder-blue-600 via-powder-blue-500 to-cool-gray-500;
|
|
174
|
-
@apply bg-clip-text text-transparent;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
/* Smooth scroll behavior */
|
|
178
|
-
.scroll-smooth {
|
|
179
|
-
scroll-behavior: smooth;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/* Glass morphism effect */
|
|
183
|
-
.glass {
|
|
184
|
-
@apply bg-white/80 backdrop-blur-lg;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
/* Subtle pulse animation for active states */
|
|
188
|
-
.pulse-soft {
|
|
189
|
-
animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
@keyframes pulse-soft {
|
|
193
|
-
0%, 100% {
|
|
194
|
-
opacity: 1;
|
|
195
|
-
}
|
|
196
|
-
50% {
|
|
197
|
-
opacity: 0.8;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
/* Floating animation */
|
|
202
|
-
.float {
|
|
203
|
-
animation: float 3s ease-in-out infinite;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
@keyframes float {
|
|
207
|
-
0%, 100% {
|
|
208
|
-
transform: translateY(0);
|
|
209
|
-
}
|
|
210
|
-
50% {
|
|
211
|
-
transform: translateY(-5px);
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
/* Shimmer loading effect */
|
|
216
|
-
.shimmer {
|
|
217
|
-
@apply relative overflow-hidden;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.shimmer::after {
|
|
221
|
-
content: '';
|
|
222
|
-
@apply absolute inset-0;
|
|
223
|
-
transform: translateX(-100%);
|
|
224
|
-
background: linear-gradient(
|
|
225
|
-
90deg,
|
|
226
|
-
transparent,
|
|
227
|
-
rgba(255, 255, 255, 0.4),
|
|
228
|
-
transparent
|
|
229
|
-
);
|
|
230
|
-
animation: shimmer 1.5s infinite;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
@keyframes shimmer {
|
|
234
|
-
100% {
|
|
235
|
-
transform: translateX(100%);
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
/* Custom focus ring */
|
|
240
|
-
.focus-ring {
|
|
241
|
-
@apply focus:outline-none focus-visible:ring-2 focus-visible:ring-powder-blue-400 focus-visible:ring-offset-2;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
/* TipTap Editor Styles */
|
|
245
|
-
.tiptap {
|
|
246
|
-
@apply outline-none;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.tiptap p {
|
|
250
|
-
@apply my-3 text-stone-700 leading-relaxed;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.tiptap h1 {
|
|
254
|
-
@apply text-2xl font-semibold text-stone-900 mt-0 mb-4;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.tiptap h2 {
|
|
258
|
-
@apply text-xl font-semibold text-stone-900 mt-6 mb-3;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.tiptap h3 {
|
|
262
|
-
@apply text-lg font-semibold text-stone-900 mt-4 mb-2;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.tiptap h4 {
|
|
266
|
-
@apply text-base font-semibold text-stone-900 mt-4 mb-2;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.tiptap ul {
|
|
270
|
-
@apply list-disc list-inside my-3 space-y-1;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.tiptap ol {
|
|
274
|
-
@apply list-decimal list-inside my-3 space-y-1;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
.tiptap li {
|
|
278
|
-
@apply text-stone-700;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.tiptap a {
|
|
282
|
-
@apply text-amber-600 hover:underline;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.tiptap strong {
|
|
286
|
-
@apply font-semibold;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.tiptap em {
|
|
290
|
-
@apply italic;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
.tiptap blockquote {
|
|
294
|
-
@apply border-l-4 border-stone-300 pl-4 my-4 italic text-stone-600;
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
.tiptap code {
|
|
298
|
-
@apply bg-stone-100 px-1.5 py-0.5 rounded text-sm font-mono;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.tiptap pre {
|
|
302
|
-
@apply bg-stone-100 p-4 rounded-lg my-4 overflow-x-auto;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.tiptap pre code {
|
|
306
|
-
@apply bg-transparent p-0;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
/* TipTap placeholder */
|
|
310
|
-
.tiptap p.is-editor-empty:first-child::before {
|
|
311
|
-
@apply text-stone-400 pointer-events-none float-left h-0;
|
|
312
|
-
content: attr(data-placeholder);
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
/* Track changes styles - inline marks */
|
|
316
|
-
.tiptap .track-delete {
|
|
317
|
-
@apply bg-red-100 text-red-700 line-through decoration-red-500/70 decoration-2 px-0.5 rounded-sm;
|
|
318
|
-
text-decoration-thickness: 2px;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.tiptap .track-insert {
|
|
322
|
-
@apply bg-emerald-100 text-emerald-800 no-underline px-0.5 rounded-sm;
|
|
323
|
-
border-bottom: 2px solid rgb(16 185 129 / 0.5);
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
/* Hover state for track changes to show accept/reject */
|
|
327
|
-
.tiptap .track-delete:hover,
|
|
328
|
-
.tiptap .track-insert:hover {
|
|
329
|
-
@apply ring-2 ring-offset-1 ring-amber-400 cursor-pointer;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
/* Selected track change */
|
|
333
|
-
.tiptap .track-delete::selection,
|
|
334
|
-
.tiptap .track-insert::selection {
|
|
335
|
-
@apply bg-amber-200;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
/* Editable paragraph hover state */
|
|
339
|
-
.tiptap-editable p:hover {
|
|
340
|
-
@apply bg-stone-50 -mx-2 px-2 rounded cursor-text transition-colors;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
/* Currently editing paragraph */
|
|
344
|
-
.tiptap-editable p:focus,
|
|
345
|
-
.tiptap-editable p.is-active {
|
|
346
|
-
@apply bg-amber-50 -mx-2 px-2 rounded outline-none ring-1 ring-amber-300;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
/* ================================
|
|
350
|
-
* Phase 5 Command Center Dark Theme
|
|
351
|
-
* ================================ */
|
|
352
|
-
|
|
353
|
-
/* Dark theme container */
|
|
354
|
-
.command-center {
|
|
355
|
-
--cc-bg: #0a0a0f;
|
|
356
|
-
--cc-bg-elevated: #0c0c12;
|
|
357
|
-
--cc-bg-card: #12121a;
|
|
358
|
-
--cc-border: rgba(255, 255, 255, 0.05);
|
|
359
|
-
--cc-border-hover: rgba(255, 255, 255, 0.1);
|
|
360
|
-
--cc-text: rgba(255, 255, 255, 0.9);
|
|
361
|
-
--cc-text-muted: rgba(255, 255, 255, 0.5);
|
|
362
|
-
--cc-text-subtle: rgba(255, 255, 255, 0.3);
|
|
363
|
-
--cc-accent: #8b5cf6;
|
|
364
|
-
--cc-accent-hover: #a78bfa;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
/* Dark scrollbar for Phase 5 */
|
|
368
|
-
.dark-scrollbar::-webkit-scrollbar {
|
|
369
|
-
width: 6px;
|
|
370
|
-
height: 6px;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
.dark-scrollbar::-webkit-scrollbar-track {
|
|
374
|
-
background: rgba(255, 255, 255, 0.02);
|
|
375
|
-
border-radius: 3px;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.dark-scrollbar::-webkit-scrollbar-thumb {
|
|
379
|
-
background: rgba(255, 255, 255, 0.1);
|
|
380
|
-
border-radius: 3px;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
.dark-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
384
|
-
background: rgba(255, 255, 255, 0.15);
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
/* Glow effects for important elements */
|
|
388
|
-
.glow-violet {
|
|
389
|
-
box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.glow-amber {
|
|
393
|
-
box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.glow-emerald {
|
|
397
|
-
box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
.glow-rose {
|
|
401
|
-
box-shadow: 0 0 20px rgba(244, 63, 94, 0.15);
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
/* Gradient borders for cards */
|
|
405
|
-
.gradient-border {
|
|
406
|
-
position: relative;
|
|
407
|
-
background: linear-gradient(var(--cc-bg-card), var(--cc-bg-card)) padding-box,
|
|
408
|
-
linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1), transparent) border-box;
|
|
409
|
-
border: 1px solid transparent;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
/* Kanban column drop target */
|
|
413
|
-
.kanban-drop-target {
|
|
414
|
-
@apply transition-all duration-200;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
.kanban-drop-target.is-over {
|
|
418
|
-
@apply bg-violet-500/10 border-violet-500/30 scale-[1.01];
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
/* Dragging card styles */
|
|
422
|
-
.dragging-card {
|
|
423
|
-
@apply shadow-2xl shadow-violet-500/20 rotate-2 scale-105;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
/* Priority pulse animation */
|
|
427
|
-
.priority-pulse-critical {
|
|
428
|
-
animation: priority-pulse 2s ease-in-out infinite;
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
@keyframes priority-pulse {
|
|
432
|
-
0%, 100% {
|
|
433
|
-
box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.4);
|
|
434
|
-
}
|
|
435
|
-
50% {
|
|
436
|
-
box-shadow: 0 0 0 8px rgba(244, 63, 94, 0);
|
|
437
|
-
}
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
/* Quote status gradient backgrounds */
|
|
441
|
-
.quote-pending {
|
|
442
|
-
background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
.quote-approved {
|
|
446
|
-
background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
.quote-rejected {
|
|
450
|
-
background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(244, 63, 94, 0.05));
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
/* Slide-in drawer animation */
|
|
454
|
-
.drawer-enter {
|
|
455
|
-
transform: translateX(100%);
|
|
456
|
-
opacity: 0;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
.drawer-enter-active {
|
|
460
|
-
transform: translateX(0);
|
|
461
|
-
opacity: 1;
|
|
462
|
-
transition: transform 300ms ease-out, opacity 200ms ease-out;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.drawer-exit {
|
|
466
|
-
transform: translateX(0);
|
|
467
|
-
opacity: 1;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.drawer-exit-active {
|
|
471
|
-
transform: translateX(100%);
|
|
472
|
-
opacity: 0;
|
|
473
|
-
transition: transform 300ms ease-in, opacity 200ms ease-in;
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
/* Command palette backdrop blur */
|
|
477
|
-
.command-palette-backdrop {
|
|
478
|
-
backdrop-filter: blur(8px);
|
|
479
|
-
-webkit-backdrop-filter: blur(8px);
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
/* Subtle grid pattern for backgrounds */
|
|
483
|
-
.grid-pattern {
|
|
484
|
-
background-image:
|
|
485
|
-
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
|
|
486
|
-
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
|
|
487
|
-
background-size: 24px 24px;
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
/* Status column header gradients */
|
|
491
|
-
.status-header-backlog {
|
|
492
|
-
background: linear-gradient(90deg, rgba(100, 116, 139, 0.15), transparent);
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
.status-header-scheduled {
|
|
496
|
-
background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), transparent);
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
.status-header-in_progress {
|
|
500
|
-
background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), transparent);
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
.status-header-review {
|
|
504
|
-
background: linear-gradient(90deg, rgba(245, 158, 11, 0.15), transparent);
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
.status-header-completed {
|
|
508
|
-
background: linear-gradient(90deg, rgba(16, 185, 129, 0.15), transparent);
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
.status-header-wont_fix {
|
|
512
|
-
background: linear-gradient(90deg, rgba(244, 63, 94, 0.15), transparent);
|
|
513
|
-
}
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
@layer base {
|
|
519
|
-
* {
|
|
520
|
-
@apply border-border;
|
|
521
|
-
}
|
|
522
|
-
body {
|
|
523
|
-
@apply bg-background text-foreground;
|
|
524
|
-
}
|
|
525
|
-
}
|