defuss-shadcn 0.6.2 → 0.6.4
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/dist/css/shadcn.cdn.css +603 -27
- package/dist/css/shadcn.cdn.min.css +2 -2
- package/dist/index.cjs +325 -48
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +19 -7
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +19 -7
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +325 -48
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -4
package/dist/css/shadcn.cdn.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
1
|
+
/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
--radius-lg: var(--defuss-radius);
|
|
34
34
|
--radius-xl: calc(var(--defuss-radius) + 4px);
|
|
35
35
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
36
|
+
--animate-spin: spin 1s linear infinite;
|
|
36
37
|
--default-transition-duration: 150ms;
|
|
37
38
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
38
39
|
--default-font-family: var(--font-sans);
|
|
@@ -213,7 +214,497 @@
|
|
|
213
214
|
display: none !important;
|
|
214
215
|
}
|
|
215
216
|
}
|
|
216
|
-
@layer utilities
|
|
217
|
+
@layer utilities {
|
|
218
|
+
.pointer-events-none {
|
|
219
|
+
pointer-events: none;
|
|
220
|
+
}
|
|
221
|
+
.collapse {
|
|
222
|
+
visibility: collapse;
|
|
223
|
+
}
|
|
224
|
+
.visible {
|
|
225
|
+
visibility: visible;
|
|
226
|
+
}
|
|
227
|
+
.relative {
|
|
228
|
+
position: relative;
|
|
229
|
+
}
|
|
230
|
+
.col-start-2 {
|
|
231
|
+
grid-column-start: 2;
|
|
232
|
+
}
|
|
233
|
+
.container {
|
|
234
|
+
width: 100%;
|
|
235
|
+
@media (width >= 40rem) {
|
|
236
|
+
max-width: 40rem;
|
|
237
|
+
}
|
|
238
|
+
@media (width >= 48rem) {
|
|
239
|
+
max-width: 48rem;
|
|
240
|
+
}
|
|
241
|
+
@media (width >= 64rem) {
|
|
242
|
+
max-width: 64rem;
|
|
243
|
+
}
|
|
244
|
+
@media (width >= 80rem) {
|
|
245
|
+
max-width: 80rem;
|
|
246
|
+
}
|
|
247
|
+
@media (width >= 96rem) {
|
|
248
|
+
max-width: 96rem;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
.mt-1 {
|
|
252
|
+
margin-top: calc(var(--spacing) * 1);
|
|
253
|
+
}
|
|
254
|
+
.mb-1 {
|
|
255
|
+
margin-bottom: calc(var(--spacing) * 1);
|
|
256
|
+
}
|
|
257
|
+
.ml-1 {
|
|
258
|
+
margin-left: calc(var(--spacing) * 1);
|
|
259
|
+
}
|
|
260
|
+
.line-clamp-2 {
|
|
261
|
+
overflow: hidden;
|
|
262
|
+
display: -webkit-box;
|
|
263
|
+
-webkit-box-orient: vertical;
|
|
264
|
+
-webkit-line-clamp: 2;
|
|
265
|
+
}
|
|
266
|
+
.block {
|
|
267
|
+
display: block;
|
|
268
|
+
}
|
|
269
|
+
.flex {
|
|
270
|
+
display: flex;
|
|
271
|
+
}
|
|
272
|
+
.hidden {
|
|
273
|
+
display: none;
|
|
274
|
+
}
|
|
275
|
+
.inline-flex {
|
|
276
|
+
display: inline-flex;
|
|
277
|
+
}
|
|
278
|
+
.table {
|
|
279
|
+
display: table;
|
|
280
|
+
}
|
|
281
|
+
.table-caption {
|
|
282
|
+
display: table-caption;
|
|
283
|
+
}
|
|
284
|
+
.table-cell {
|
|
285
|
+
display: table-cell;
|
|
286
|
+
}
|
|
287
|
+
.table-row {
|
|
288
|
+
display: table-row;
|
|
289
|
+
}
|
|
290
|
+
.size-1 {
|
|
291
|
+
width: calc(var(--spacing) * 1);
|
|
292
|
+
height: calc(var(--spacing) * 1);
|
|
293
|
+
}
|
|
294
|
+
.size-4 {
|
|
295
|
+
width: calc(var(--spacing) * 4);
|
|
296
|
+
height: calc(var(--spacing) * 4);
|
|
297
|
+
}
|
|
298
|
+
.size-8 {
|
|
299
|
+
width: calc(var(--spacing) * 8);
|
|
300
|
+
height: calc(var(--spacing) * 8);
|
|
301
|
+
}
|
|
302
|
+
.h-2 {
|
|
303
|
+
height: calc(var(--spacing) * 2);
|
|
304
|
+
}
|
|
305
|
+
.h-6 {
|
|
306
|
+
height: calc(var(--spacing) * 6);
|
|
307
|
+
}
|
|
308
|
+
.h-full {
|
|
309
|
+
height: 100%;
|
|
310
|
+
}
|
|
311
|
+
.w-20 {
|
|
312
|
+
width: calc(var(--spacing) * 20);
|
|
313
|
+
}
|
|
314
|
+
.w-fit {
|
|
315
|
+
width: fit-content;
|
|
316
|
+
}
|
|
317
|
+
.w-full {
|
|
318
|
+
width: 100%;
|
|
319
|
+
}
|
|
320
|
+
.min-w-0 {
|
|
321
|
+
min-width: calc(var(--spacing) * 0);
|
|
322
|
+
}
|
|
323
|
+
.flex-1 {
|
|
324
|
+
flex: 1;
|
|
325
|
+
}
|
|
326
|
+
.shrink-0 {
|
|
327
|
+
flex-shrink: 0;
|
|
328
|
+
}
|
|
329
|
+
.rotate-90 {
|
|
330
|
+
rotate: 90deg;
|
|
331
|
+
}
|
|
332
|
+
.animate-spin {
|
|
333
|
+
animation: var(--animate-spin);
|
|
334
|
+
}
|
|
335
|
+
.cursor-not-allowed {
|
|
336
|
+
cursor: not-allowed;
|
|
337
|
+
}
|
|
338
|
+
.cursor-pointer {
|
|
339
|
+
cursor: pointer;
|
|
340
|
+
}
|
|
341
|
+
.list-none {
|
|
342
|
+
list-style-type: none;
|
|
343
|
+
}
|
|
344
|
+
.flex-col {
|
|
345
|
+
flex-direction: column;
|
|
346
|
+
}
|
|
347
|
+
.flex-wrap {
|
|
348
|
+
flex-wrap: wrap;
|
|
349
|
+
}
|
|
350
|
+
.items-center {
|
|
351
|
+
align-items: center;
|
|
352
|
+
}
|
|
353
|
+
.justify-between {
|
|
354
|
+
justify-content: space-between;
|
|
355
|
+
}
|
|
356
|
+
.justify-center {
|
|
357
|
+
justify-content: center;
|
|
358
|
+
}
|
|
359
|
+
.justify-end {
|
|
360
|
+
justify-content: flex-end;
|
|
361
|
+
}
|
|
362
|
+
.gap-1 {
|
|
363
|
+
gap: calc(var(--spacing) * 1);
|
|
364
|
+
}
|
|
365
|
+
.gap-1\.5 {
|
|
366
|
+
gap: calc(var(--spacing) * 1.5);
|
|
367
|
+
}
|
|
368
|
+
.gap-2 {
|
|
369
|
+
gap: calc(var(--spacing) * 2);
|
|
370
|
+
}
|
|
371
|
+
.gap-2\.5 {
|
|
372
|
+
gap: calc(var(--spacing) * 2.5);
|
|
373
|
+
}
|
|
374
|
+
.gap-4 {
|
|
375
|
+
gap: calc(var(--spacing) * 4);
|
|
376
|
+
}
|
|
377
|
+
.-space-x-2 {
|
|
378
|
+
:where(& > :not(:last-child)) {
|
|
379
|
+
--tw-space-x-reverse: 0;
|
|
380
|
+
margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse));
|
|
381
|
+
margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
.truncate {
|
|
385
|
+
overflow: hidden;
|
|
386
|
+
text-overflow: ellipsis;
|
|
387
|
+
white-space: nowrap;
|
|
388
|
+
}
|
|
389
|
+
.overflow-hidden {
|
|
390
|
+
overflow: hidden;
|
|
391
|
+
}
|
|
392
|
+
.overflow-x-auto {
|
|
393
|
+
overflow-x: auto;
|
|
394
|
+
}
|
|
395
|
+
.rounded {
|
|
396
|
+
border-radius: 0.25rem;
|
|
397
|
+
}
|
|
398
|
+
.rounded-full {
|
|
399
|
+
border-radius: calc(infinity * 1px);
|
|
400
|
+
}
|
|
401
|
+
.rounded-lg {
|
|
402
|
+
border-radius: var(--radius-lg);
|
|
403
|
+
}
|
|
404
|
+
.rounded-md {
|
|
405
|
+
border-radius: var(--radius-md);
|
|
406
|
+
}
|
|
407
|
+
.rounded-sm {
|
|
408
|
+
border-radius: var(--radius-sm);
|
|
409
|
+
}
|
|
410
|
+
.border {
|
|
411
|
+
border-style: var(--tw-border-style);
|
|
412
|
+
border-width: 1px;
|
|
413
|
+
}
|
|
414
|
+
.border-0 {
|
|
415
|
+
border-style: var(--tw-border-style);
|
|
416
|
+
border-width: 0px;
|
|
417
|
+
}
|
|
418
|
+
.border-b {
|
|
419
|
+
border-bottom-style: var(--tw-border-style);
|
|
420
|
+
border-bottom-width: 1px;
|
|
421
|
+
}
|
|
422
|
+
.border-border {
|
|
423
|
+
border-color: var(--color-border);
|
|
424
|
+
}
|
|
425
|
+
.border-transparent {
|
|
426
|
+
border-color: transparent;
|
|
427
|
+
}
|
|
428
|
+
.bg-muted {
|
|
429
|
+
background-color: var(--color-muted);
|
|
430
|
+
}
|
|
431
|
+
.bg-muted-foreground\/40 {
|
|
432
|
+
background-color: var(--color-muted-foreground);
|
|
433
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
434
|
+
background-color: color-mix(in oklab, var(--color-muted-foreground) 40%, transparent);
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
.bg-muted\/50 {
|
|
438
|
+
background-color: var(--color-muted);
|
|
439
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
440
|
+
background-color: color-mix(in oklab, var(--color-muted) 50%, transparent);
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
.bg-primary {
|
|
444
|
+
background-color: var(--color-primary);
|
|
445
|
+
}
|
|
446
|
+
.bg-primary\/20 {
|
|
447
|
+
background-color: var(--color-primary);
|
|
448
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
449
|
+
background-color: color-mix(in oklab, var(--color-primary) 20%, transparent);
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
.object-cover {
|
|
453
|
+
object-fit: cover;
|
|
454
|
+
}
|
|
455
|
+
.p-0\.5 {
|
|
456
|
+
padding: calc(var(--spacing) * 0.5);
|
|
457
|
+
}
|
|
458
|
+
.p-4 {
|
|
459
|
+
padding: calc(var(--spacing) * 4);
|
|
460
|
+
}
|
|
461
|
+
.p-6 {
|
|
462
|
+
padding: calc(var(--spacing) * 6);
|
|
463
|
+
}
|
|
464
|
+
.px-2 {
|
|
465
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
466
|
+
}
|
|
467
|
+
.px-2\.5 {
|
|
468
|
+
padding-inline: calc(var(--spacing) * 2.5);
|
|
469
|
+
}
|
|
470
|
+
.px-3 {
|
|
471
|
+
padding-inline: calc(var(--spacing) * 3);
|
|
472
|
+
}
|
|
473
|
+
.px-4 {
|
|
474
|
+
padding-inline: calc(var(--spacing) * 4);
|
|
475
|
+
}
|
|
476
|
+
.px-6 {
|
|
477
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
478
|
+
}
|
|
479
|
+
.py-0\.5 {
|
|
480
|
+
padding-block: calc(var(--spacing) * 0.5);
|
|
481
|
+
}
|
|
482
|
+
.py-1\.5 {
|
|
483
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
484
|
+
}
|
|
485
|
+
.py-3 {
|
|
486
|
+
padding-block: calc(var(--spacing) * 3);
|
|
487
|
+
}
|
|
488
|
+
.py-8 {
|
|
489
|
+
padding-block: calc(var(--spacing) * 8);
|
|
490
|
+
}
|
|
491
|
+
.pt-0 {
|
|
492
|
+
padding-top: calc(var(--spacing) * 0);
|
|
493
|
+
}
|
|
494
|
+
.pb-3 {
|
|
495
|
+
padding-bottom: calc(var(--spacing) * 3);
|
|
496
|
+
}
|
|
497
|
+
.text-center {
|
|
498
|
+
text-align: center;
|
|
499
|
+
}
|
|
500
|
+
.text-left {
|
|
501
|
+
text-align: left;
|
|
502
|
+
}
|
|
503
|
+
.text-right {
|
|
504
|
+
text-align: right;
|
|
505
|
+
}
|
|
506
|
+
.text-sm {
|
|
507
|
+
font-size: var(--text-sm);
|
|
508
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
509
|
+
}
|
|
510
|
+
.text-xs {
|
|
511
|
+
font-size: var(--text-xs);
|
|
512
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
513
|
+
}
|
|
514
|
+
.leading-normal {
|
|
515
|
+
--tw-leading: var(--leading-normal);
|
|
516
|
+
line-height: var(--leading-normal);
|
|
517
|
+
}
|
|
518
|
+
.leading-snug {
|
|
519
|
+
--tw-leading: var(--leading-snug);
|
|
520
|
+
line-height: var(--leading-snug);
|
|
521
|
+
}
|
|
522
|
+
.font-medium {
|
|
523
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
524
|
+
font-weight: var(--font-weight-medium);
|
|
525
|
+
}
|
|
526
|
+
.font-normal {
|
|
527
|
+
--tw-font-weight: var(--font-weight-normal);
|
|
528
|
+
font-weight: var(--font-weight-normal);
|
|
529
|
+
}
|
|
530
|
+
.text-balance {
|
|
531
|
+
text-wrap: balance;
|
|
532
|
+
}
|
|
533
|
+
.break-words {
|
|
534
|
+
overflow-wrap: break-word;
|
|
535
|
+
}
|
|
536
|
+
.text-foreground {
|
|
537
|
+
color: var(--color-foreground);
|
|
538
|
+
}
|
|
539
|
+
.text-muted-foreground {
|
|
540
|
+
color: var(--color-muted-foreground);
|
|
541
|
+
}
|
|
542
|
+
.opacity-50 {
|
|
543
|
+
opacity: 50%;
|
|
544
|
+
}
|
|
545
|
+
.opacity-60 {
|
|
546
|
+
opacity: 60%;
|
|
547
|
+
}
|
|
548
|
+
.outline {
|
|
549
|
+
outline-style: var(--tw-outline-style);
|
|
550
|
+
outline-width: 1px;
|
|
551
|
+
}
|
|
552
|
+
.\!filter {
|
|
553
|
+
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,) !important;
|
|
554
|
+
}
|
|
555
|
+
.filter {
|
|
556
|
+
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,);
|
|
557
|
+
}
|
|
558
|
+
.transition-all {
|
|
559
|
+
transition-property: all;
|
|
560
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
561
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
562
|
+
}
|
|
563
|
+
.transition-colors {
|
|
564
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
565
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
566
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
567
|
+
}
|
|
568
|
+
.transition-transform {
|
|
569
|
+
transition-property: transform, translate, scale, rotate;
|
|
570
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
571
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
572
|
+
}
|
|
573
|
+
.duration-100 {
|
|
574
|
+
--tw-duration: 100ms;
|
|
575
|
+
transition-duration: 100ms;
|
|
576
|
+
}
|
|
577
|
+
.duration-200 {
|
|
578
|
+
--tw-duration: 200ms;
|
|
579
|
+
transition-duration: 200ms;
|
|
580
|
+
}
|
|
581
|
+
.outline-none {
|
|
582
|
+
--tw-outline-style: none;
|
|
583
|
+
outline-style: none;
|
|
584
|
+
}
|
|
585
|
+
.select-none {
|
|
586
|
+
-webkit-user-select: none;
|
|
587
|
+
user-select: none;
|
|
588
|
+
}
|
|
589
|
+
.last\:border-b-0 {
|
|
590
|
+
&:last-child {
|
|
591
|
+
border-bottom-style: var(--tw-border-style);
|
|
592
|
+
border-bottom-width: 0px;
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
.hover\:bg-muted\/50 {
|
|
596
|
+
&:hover {
|
|
597
|
+
@media (hover: hover) {
|
|
598
|
+
background-color: var(--color-muted);
|
|
599
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
600
|
+
background-color: color-mix(in oklab, var(--color-muted) 50%, transparent);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
.hover\:text-foreground {
|
|
606
|
+
&:hover {
|
|
607
|
+
@media (hover: hover) {
|
|
608
|
+
color: var(--color-foreground);
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
.focus-visible\:border-ring {
|
|
613
|
+
&:focus-visible {
|
|
614
|
+
border-color: var(--color-ring);
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
.focus-visible\:ring-\[3px\] {
|
|
618
|
+
&:focus-visible {
|
|
619
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
620
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
.focus-visible\:ring-ring\/50 {
|
|
624
|
+
&:focus-visible {
|
|
625
|
+
--tw-ring-color: var(--color-ring);
|
|
626
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
627
|
+
--tw-ring-color: color-mix(in oklab, var(--color-ring) 50%, transparent);
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
.sm\:gap-2\.5 {
|
|
632
|
+
@media (width >= 40rem) {
|
|
633
|
+
gap: calc(var(--spacing) * 2.5);
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
.\[\&_img\]\:size-8 {
|
|
637
|
+
& img {
|
|
638
|
+
width: calc(var(--spacing) * 8);
|
|
639
|
+
height: calc(var(--spacing) * 8);
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
.\[\&_img\]\:shrink-0 {
|
|
643
|
+
& img {
|
|
644
|
+
flex-shrink: 0;
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
.\[\&_img\]\:rounded-full {
|
|
648
|
+
& img {
|
|
649
|
+
border-radius: calc(infinity * 1px);
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
.\[\&_img\]\:object-cover {
|
|
653
|
+
& img {
|
|
654
|
+
object-fit: cover;
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
.\[\&_img\]\:ring-2 {
|
|
658
|
+
& img {
|
|
659
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
660
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
.\[\&_img\]\:ring-background {
|
|
664
|
+
& img {
|
|
665
|
+
--tw-ring-color: var(--color-background);
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
.\[\&\:\:-webkit-details-marker\]\:hidden {
|
|
669
|
+
&::-webkit-details-marker {
|
|
670
|
+
display: none;
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
.\[a\]\:transition-colors {
|
|
674
|
+
&:is(a) {
|
|
675
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
676
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
677
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
.\[a\]\:hover\:bg-accent\/50 {
|
|
681
|
+
&:is(a) {
|
|
682
|
+
&:hover {
|
|
683
|
+
@media (hover: hover) {
|
|
684
|
+
background-color: var(--color-accent);
|
|
685
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
686
|
+
background-color: color-mix(in oklab, var(--color-accent) 50%, transparent);
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
.\[\&\>a\]\:underline {
|
|
693
|
+
&>a {
|
|
694
|
+
text-decoration-line: underline;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
.\[\&\>a\]\:underline-offset-4 {
|
|
698
|
+
&>a {
|
|
699
|
+
text-underline-offset: 4px;
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
.\[\&\>a\:hover\]\:text-primary {
|
|
703
|
+
&>a:hover {
|
|
704
|
+
color: var(--color-primary);
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
}
|
|
217
708
|
.defuss-shadcn {
|
|
218
709
|
--defuss-radius: 0.625rem;
|
|
219
710
|
--defuss-background: oklch(1 0 0);
|
|
@@ -2910,8 +3401,16 @@
|
|
|
2910
3401
|
}
|
|
2911
3402
|
@layer components {
|
|
2912
3403
|
.defuss-shadcn {
|
|
2913
|
-
.table {
|
|
3404
|
+
.table-container {
|
|
3405
|
+
overflow-x: auto;
|
|
2914
3406
|
width: 100%;
|
|
3407
|
+
border-width: var(--border-width, 1px);
|
|
3408
|
+
border-style: var(--border-style, solid);
|
|
3409
|
+
border-color: var(--color-border);
|
|
3410
|
+
border-radius: var(--radius);
|
|
3411
|
+
}
|
|
3412
|
+
.table {
|
|
3413
|
+
min-width: fit-content;
|
|
2915
3414
|
caption-side: bottom;
|
|
2916
3415
|
font-size: var(--text-sm);
|
|
2917
3416
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
@@ -3594,35 +4093,83 @@
|
|
|
3594
4093
|
}
|
|
3595
4094
|
}
|
|
3596
4095
|
}
|
|
4096
|
+
@property --tw-space-x-reverse {
|
|
4097
|
+
syntax: "*";
|
|
4098
|
+
inherits: false;
|
|
4099
|
+
initial-value: 0;
|
|
4100
|
+
}
|
|
3597
4101
|
@property --tw-border-style {
|
|
3598
4102
|
syntax: "*";
|
|
3599
4103
|
inherits: false;
|
|
3600
4104
|
initial-value: solid;
|
|
3601
4105
|
}
|
|
3602
|
-
@property --tw-
|
|
4106
|
+
@property --tw-leading {
|
|
3603
4107
|
syntax: "*";
|
|
3604
4108
|
inherits: false;
|
|
3605
|
-
initial-value: 0;
|
|
3606
4109
|
}
|
|
3607
|
-
@property --tw-
|
|
4110
|
+
@property --tw-font-weight {
|
|
3608
4111
|
syntax: "*";
|
|
3609
4112
|
inherits: false;
|
|
3610
|
-
initial-value: 0;
|
|
3611
4113
|
}
|
|
3612
|
-
@property --tw-
|
|
4114
|
+
@property --tw-outline-style {
|
|
3613
4115
|
syntax: "*";
|
|
3614
4116
|
inherits: false;
|
|
3615
|
-
initial-value:
|
|
4117
|
+
initial-value: solid;
|
|
3616
4118
|
}
|
|
3617
|
-
@property --tw-
|
|
4119
|
+
@property --tw-blur {
|
|
3618
4120
|
syntax: "*";
|
|
3619
4121
|
inherits: false;
|
|
3620
4122
|
}
|
|
3621
|
-
@property --tw-
|
|
4123
|
+
@property --tw-brightness {
|
|
3622
4124
|
syntax: "*";
|
|
3623
4125
|
inherits: false;
|
|
3624
4126
|
}
|
|
3625
|
-
@property --tw-
|
|
4127
|
+
@property --tw-contrast {
|
|
4128
|
+
syntax: "*";
|
|
4129
|
+
inherits: false;
|
|
4130
|
+
}
|
|
4131
|
+
@property --tw-grayscale {
|
|
4132
|
+
syntax: "*";
|
|
4133
|
+
inherits: false;
|
|
4134
|
+
}
|
|
4135
|
+
@property --tw-hue-rotate {
|
|
4136
|
+
syntax: "*";
|
|
4137
|
+
inherits: false;
|
|
4138
|
+
}
|
|
4139
|
+
@property --tw-invert {
|
|
4140
|
+
syntax: "*";
|
|
4141
|
+
inherits: false;
|
|
4142
|
+
}
|
|
4143
|
+
@property --tw-opacity {
|
|
4144
|
+
syntax: "*";
|
|
4145
|
+
inherits: false;
|
|
4146
|
+
}
|
|
4147
|
+
@property --tw-saturate {
|
|
4148
|
+
syntax: "*";
|
|
4149
|
+
inherits: false;
|
|
4150
|
+
}
|
|
4151
|
+
@property --tw-sepia {
|
|
4152
|
+
syntax: "*";
|
|
4153
|
+
inherits: false;
|
|
4154
|
+
}
|
|
4155
|
+
@property --tw-drop-shadow {
|
|
4156
|
+
syntax: "*";
|
|
4157
|
+
inherits: false;
|
|
4158
|
+
}
|
|
4159
|
+
@property --tw-drop-shadow-color {
|
|
4160
|
+
syntax: "*";
|
|
4161
|
+
inherits: false;
|
|
4162
|
+
}
|
|
4163
|
+
@property --tw-drop-shadow-alpha {
|
|
4164
|
+
syntax: "<percentage>";
|
|
4165
|
+
inherits: false;
|
|
4166
|
+
initial-value: 100%;
|
|
4167
|
+
}
|
|
4168
|
+
@property --tw-drop-shadow-size {
|
|
4169
|
+
syntax: "*";
|
|
4170
|
+
inherits: false;
|
|
4171
|
+
}
|
|
4172
|
+
@property --tw-duration {
|
|
3626
4173
|
syntax: "*";
|
|
3627
4174
|
inherits: false;
|
|
3628
4175
|
}
|
|
@@ -3691,6 +4238,25 @@
|
|
|
3691
4238
|
inherits: false;
|
|
3692
4239
|
initial-value: 0 0 #0000;
|
|
3693
4240
|
}
|
|
4241
|
+
@property --tw-translate-x {
|
|
4242
|
+
syntax: "*";
|
|
4243
|
+
inherits: false;
|
|
4244
|
+
initial-value: 0;
|
|
4245
|
+
}
|
|
4246
|
+
@property --tw-translate-y {
|
|
4247
|
+
syntax: "*";
|
|
4248
|
+
inherits: false;
|
|
4249
|
+
initial-value: 0;
|
|
4250
|
+
}
|
|
4251
|
+
@property --tw-translate-z {
|
|
4252
|
+
syntax: "*";
|
|
4253
|
+
inherits: false;
|
|
4254
|
+
initial-value: 0;
|
|
4255
|
+
}
|
|
4256
|
+
@property --tw-tracking {
|
|
4257
|
+
syntax: "*";
|
|
4258
|
+
inherits: false;
|
|
4259
|
+
}
|
|
3694
4260
|
@property --tw-content {
|
|
3695
4261
|
syntax: "*";
|
|
3696
4262
|
inherits: false;
|
|
@@ -3711,29 +4277,37 @@
|
|
|
3711
4277
|
inherits: false;
|
|
3712
4278
|
initial-value: 1;
|
|
3713
4279
|
}
|
|
3714
|
-
@property --tw-duration {
|
|
3715
|
-
syntax: "*";
|
|
3716
|
-
inherits: false;
|
|
3717
|
-
}
|
|
3718
4280
|
@property --tw-ease {
|
|
3719
4281
|
syntax: "*";
|
|
3720
4282
|
inherits: false;
|
|
3721
4283
|
}
|
|
3722
|
-
@
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
4284
|
+
@keyframes spin {
|
|
4285
|
+
to {
|
|
4286
|
+
transform: rotate(360deg);
|
|
4287
|
+
}
|
|
3726
4288
|
}
|
|
3727
4289
|
@layer properties {
|
|
3728
4290
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
3729
4291
|
*, ::before, ::after, ::backdrop {
|
|
4292
|
+
--tw-space-x-reverse: 0;
|
|
3730
4293
|
--tw-border-style: solid;
|
|
3731
|
-
--tw-translate-x: 0;
|
|
3732
|
-
--tw-translate-y: 0;
|
|
3733
|
-
--tw-translate-z: 0;
|
|
3734
|
-
--tw-font-weight: initial;
|
|
3735
|
-
--tw-tracking: initial;
|
|
3736
4294
|
--tw-leading: initial;
|
|
4295
|
+
--tw-font-weight: initial;
|
|
4296
|
+
--tw-outline-style: solid;
|
|
4297
|
+
--tw-blur: initial;
|
|
4298
|
+
--tw-brightness: initial;
|
|
4299
|
+
--tw-contrast: initial;
|
|
4300
|
+
--tw-grayscale: initial;
|
|
4301
|
+
--tw-hue-rotate: initial;
|
|
4302
|
+
--tw-invert: initial;
|
|
4303
|
+
--tw-opacity: initial;
|
|
4304
|
+
--tw-saturate: initial;
|
|
4305
|
+
--tw-sepia: initial;
|
|
4306
|
+
--tw-drop-shadow: initial;
|
|
4307
|
+
--tw-drop-shadow-color: initial;
|
|
4308
|
+
--tw-drop-shadow-alpha: 100%;
|
|
4309
|
+
--tw-drop-shadow-size: initial;
|
|
4310
|
+
--tw-duration: initial;
|
|
3737
4311
|
--tw-shadow: 0 0 #0000;
|
|
3738
4312
|
--tw-shadow-color: initial;
|
|
3739
4313
|
--tw-shadow-alpha: 100%;
|
|
@@ -3748,13 +4322,15 @@
|
|
|
3748
4322
|
--tw-ring-offset-width: 0px;
|
|
3749
4323
|
--tw-ring-offset-color: #fff;
|
|
3750
4324
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
4325
|
+
--tw-translate-x: 0;
|
|
4326
|
+
--tw-translate-y: 0;
|
|
4327
|
+
--tw-translate-z: 0;
|
|
4328
|
+
--tw-tracking: initial;
|
|
3751
4329
|
--tw-content: "";
|
|
3752
4330
|
--tw-scale-x: 1;
|
|
3753
4331
|
--tw-scale-y: 1;
|
|
3754
4332
|
--tw-scale-z: 1;
|
|
3755
|
-
--tw-duration: initial;
|
|
3756
4333
|
--tw-ease: initial;
|
|
3757
|
-
--tw-outline-style: solid;
|
|
3758
4334
|
}
|
|
3759
4335
|
}
|
|
3760
4336
|
}
|