do-ui-design-system 0.0.11 → 0.0.12

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.
@@ -12,9 +12,9 @@ html, :host {
12
12
  -moz-tab-size: 4;
13
13
  -o-tab-size: 4;
14
14
  tab-size: 4;
15
- 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');
16
- font-feature-settings: var(--default-font-feature-settings, normal);
17
- font-variation-settings: var(--default-font-variation-settings, normal);
15
+ font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
16
+ font-feature-settings: normal;
17
+ font-variation-settings: normal;
18
18
  -webkit-tap-highlight-color: transparent;
19
19
  }
20
20
  hr {
@@ -39,9 +39,9 @@ b, strong {
39
39
  font-weight: bolder;
40
40
  }
41
41
  code, kbd, samp, pre {
42
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
43
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
44
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
42
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
43
+ font-feature-settings: normal;
44
+ font-variation-settings: normal;
45
45
  font-size: 1em;
46
46
  }
47
47
  small {
@@ -156,810 +156,12 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
156
156
  [hidden]:where(:not([hidden='until-found'])) {
157
157
  display: none !important;
158
158
  }
159
- .tab {
160
- position: relative;
161
- display: inline-flex;
162
- cursor: pointer;
163
- -webkit-appearance: none;
164
- -moz-appearance: none;
165
- appearance: none;
166
- flex-wrap: wrap;
167
- align-items: center;
168
- justify-content: center;
169
- text-align: center;
170
- webkit-user-select: none;
171
- -webkit-user-select: none;
172
- -moz-user-select: none;
173
- user-select: none;
174
- &:hover {
175
- @media (hover: hover) {
176
- color: var(--color-base-content);
177
- }
178
- }
179
- --tab-p: 1rem;
180
- --tab-bg: var(--color-base-100);
181
- --tab-border-color: var(--color-base-300);
182
- --tab-radius-ss: 0;
183
- --tab-radius-se: 0;
184
- --tab-radius-es: 0;
185
- --tab-radius-ee: 0;
186
- --tab-order: 0;
187
- --tab-radius-min: calc(0.75rem - var(--border));
188
- border-color: #0000;
189
- order: var(--tab-order);
190
- height: calc(var(--size-field, 0.25rem) * 10);
191
- font-size: 0.875rem;
192
- padding-inline-start: var(--tab-p);
193
- padding-inline-end: var(--tab-p);
194
- &:is(input[type="radio"]) {
195
- min-width: -moz-fit-content;
196
- min-width: fit-content;
197
- &:after {
198
- content: attr(aria-label);
199
- }
200
- }
201
- &:is(label) {
202
- position: relative;
203
- input {
204
- position: absolute;
205
- inset: calc(0.25rem * 0);
206
- cursor: pointer;
207
- -webkit-appearance: none;
208
- -moz-appearance: none;
209
- appearance: none;
210
- opacity: 0%;
211
- }
212
- }
213
- &:checked, &:is(label:has(:checked)), &:is(.tab-active, [aria-selected="true"]) {
214
- & + .tab-content {
215
- display: block;
216
- height: 100%;
217
- }
218
- }
219
- &:not(:checked, label:has(:checked), :hover, .tab-active, [aria-selected="true"]) {
220
- color: var(--color-base-content);
221
- @supports (color: color-mix(in lab, red, red)) {
222
- color: color-mix(in oklab, var(--color-base-content) 50%, transparent);
223
- }
224
- }
225
- &:not(input):empty {
226
- flex-grow: 1;
227
- cursor: default;
228
- }
229
- &:focus {
230
- --tw-outline-style: none;
231
- outline-style: none;
232
- @media (forced-colors: active) {
233
- outline: 2px solid transparent;
234
- outline-offset: 2px;
235
- }
236
- }
237
- &:focus-visible, &:is(label:has(:checked:focus-visible)) {
238
- outline: 2px solid currentColor;
239
- outline-offset: -5px;
240
- }
241
- &[disabled] {
242
- pointer-events: none;
243
- opacity: 40%;
244
- }
245
- }
246
- .menu {
247
- display: flex;
248
- width: -moz-fit-content;
249
- width: fit-content;
250
- flex-direction: column;
251
- flex-wrap: wrap;
252
- padding: calc(0.25rem * 2);
253
- --menu-active-fg: var(--color-neutral-content);
254
- --menu-active-bg: var(--color-neutral);
255
- font-size: 0.875rem;
256
- :where(li ul) {
257
- position: relative;
258
- margin-inline-start: calc(0.25rem * 4);
259
- padding-inline-start: calc(0.25rem * 2);
260
- white-space: nowrap;
261
- &:before {
262
- position: absolute;
263
- inset-inline-start: calc(0.25rem * 0);
264
- top: calc(0.25rem * 3);
265
- bottom: calc(0.25rem * 3);
266
- background-color: var(--color-base-content);
267
- opacity: 10%;
268
- width: var(--border);
269
- content: "";
270
- }
271
- }
272
- :where(li > .menu-dropdown:not(.menu-dropdown-show)) {
273
- display: none;
274
- }
275
- :where(li:not(.menu-title) > *:not(ul, details, .menu-title, .btn)), :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
276
- display: grid;
277
- grid-auto-flow: column;
278
- align-content: flex-start;
279
- align-items: center;
280
- gap: calc(0.25rem * 2);
281
- border-radius: var(--radius-field);
282
- padding-inline: calc(0.25rem * 3);
283
- padding-block: calc(0.25rem * 1.5);
284
- text-align: start;
285
- transition-property: color, background-color, box-shadow;
286
- transition-duration: 0.2s;
287
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
288
- grid-auto-columns: minmax(auto, max-content) auto max-content;
289
- text-wrap: balance;
290
- -webkit-user-select: none;
291
- -moz-user-select: none;
292
- user-select: none;
293
- }
294
- :where(li > details > summary) {
295
- --tw-outline-style: none;
296
- outline-style: none;
297
- @media (forced-colors: active) {
298
- outline: 2px solid transparent;
299
- outline-offset: 2px;
300
- }
301
- &::-webkit-details-marker {
302
- display: none;
303
- }
304
- }
305
- :where(li > details > summary), :where(li > .menu-dropdown-toggle) {
306
- &:after {
307
- justify-self: flex-end;
308
- display: block;
309
- height: 0.375rem;
310
- width: 0.375rem;
311
- rotate: -135deg;
312
- translate: 0 -1px;
313
- transition-property: rotate, translate;
314
- transition-duration: 0.2s;
315
- content: "";
316
- transform-origin: 50% 50%;
317
- box-shadow: 2px 2px inset;
318
- pointer-events: none;
319
- }
320
- }
321
- :where(li > details[open] > summary):after, :where(li > .menu-dropdown-toggle.menu-dropdown-show):after {
322
- rotate: 45deg;
323
- translate: 0 1px;
324
- }
325
- :where( li:not(.menu-title, .disabled) > *:not(ul, details, .menu-title), li:not(.menu-title, .disabled) > details > summary:not(.menu-title) ):not(.menu-active, :active, .btn) {
326
- &.menu-focus, &:focus-visible {
327
- cursor: pointer;
328
- background-color: var(--color-base-content);
329
- @supports (color: color-mix(in lab, red, red)) {
330
- background-color: color-mix(in oklab, var(--color-base-content) 10%, transparent);
331
- }
332
- color: var(--color-base-content);
333
- --tw-outline-style: none;
334
- outline-style: none;
335
- @media (forced-colors: active) {
336
- outline: 2px solid transparent;
337
- outline-offset: 2px;
338
- }
339
- }
340
- }
341
- :where( li:not(.menu-title, .disabled) > *:not(ul, details, .menu-title):not(.menu-active, :active, .btn):hover, li:not(.menu-title, .disabled) > details > summary:not(.menu-title):not(.menu-active, :active, .btn):hover ) {
342
- cursor: pointer;
343
- background-color: var(--color-base-content);
344
- @supports (color: color-mix(in lab, red, red)) {
345
- background-color: color-mix(in oklab, var(--color-base-content) 10%, transparent);
346
- }
347
- --tw-outline-style: none;
348
- outline-style: none;
349
- @media (forced-colors: active) {
350
- outline: 2px solid transparent;
351
- outline-offset: 2px;
352
- }
353
- box-shadow: 0 1px oklch(0% 0 0 / 0.01) inset, 0 -1px oklch(100% 0 0 / 0.01) inset;
354
- }
355
- :where(li:empty) {
356
- background-color: var(--color-base-content);
357
- opacity: 10%;
358
- margin: 0.5rem 1rem;
359
- height: 1px;
360
- }
361
- :where(li) {
362
- position: relative;
363
- display: flex;
364
- flex-shrink: 0;
365
- flex-direction: column;
366
- flex-wrap: wrap;
367
- align-items: stretch;
368
- .badge {
369
- justify-self: flex-end;
370
- }
371
- & > *:not(ul, .menu-title, details, .btn):active, & > *:not(ul, .menu-title, details, .btn).menu-active, & > details > summary:active {
372
- --tw-outline-style: none;
373
- outline-style: none;
374
- @media (forced-colors: active) {
375
- outline: 2px solid transparent;
376
- outline-offset: 2px;
377
- }
378
- color: var(--menu-active-fg);
379
- background-color: var(--menu-active-bg);
380
- background-size: auto, calc(var(--noise) * 100%);
381
- background-image: none, var(--fx-noise);
382
- &:not(&:active) {
383
- box-shadow: 0 2px calc(var(--depth) * 3px) -2px var(--menu-active-bg);
384
- }
385
- }
386
- &.menu-disabled {
387
- pointer-events: none;
388
- color: var(--color-base-content);
389
- @supports (color: color-mix(in lab, red, red)) {
390
- color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
391
- }
392
- }
393
- }
394
- .dropdown:focus-within {
395
- .menu-dropdown-toggle:after {
396
- rotate: 45deg;
397
- translate: 0 1px;
398
- }
399
- }
400
- .dropdown-content {
401
- margin-top: calc(0.25rem * 2);
402
- padding: calc(0.25rem * 2);
403
- &:before {
404
- display: none;
405
- }
406
- }
407
- }
408
- .btn {
409
- :where(&) {
410
- width: unset;
411
- }
412
- display: inline-flex;
413
- flex-shrink: 0;
414
- cursor: pointer;
415
- flex-wrap: nowrap;
416
- align-items: center;
417
- justify-content: center;
418
- gap: calc(0.25rem * 1.5);
419
- text-align: center;
420
- vertical-align: middle;
421
- outline-offset: 2px;
422
- webkit-user-select: none;
423
- -webkit-user-select: none;
424
- -moz-user-select: none;
425
- user-select: none;
426
- padding-inline: var(--btn-p);
427
- color: var(--btn-fg);
428
- --tw-prose-links: var(--btn-fg);
429
- height: var(--size);
430
- font-size: var(--fontsize, 0.875rem);
431
- font-weight: 600;
432
- outline-color: var(--btn-color, var(--color-base-content));
433
- transition-property: color, background-color, border-color, box-shadow;
434
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
435
- transition-duration: 0.2s;
436
- border-start-start-radius: var(--join-ss, var(--radius-field));
437
- border-start-end-radius: var(--join-se, var(--radius-field));
438
- border-end-start-radius: var(--join-es, var(--radius-field));
439
- border-end-end-radius: var(--join-ee, var(--radius-field));
440
- background-color: var(--btn-bg);
441
- background-size: auto, calc(var(--noise) * 100%);
442
- background-image: none, var(--btn-noise);
443
- border-width: var(--border);
444
- border-style: solid;
445
- border-color: var(--btn-border);
446
- text-shadow: 0 0.5px oklch(100% 0 0 / calc(var(--depth) * 0.15));
447
- touch-action: manipulation;
448
- box-shadow: 0 0.5px 0 0.5px oklch(100% 0 0 / calc(var(--depth) * 6%)) inset, var(--btn-shadow);
449
- --size: calc(var(--size-field, 0.25rem) * 10);
450
- --btn-bg: var(--btn-color, var(--color-base-200));
451
- --btn-fg: var(--color-base-content);
452
- --btn-p: 1rem;
453
- --btn-border: var(--btn-bg);
454
- @supports (color: color-mix(in lab, red, red)) {
455
- --btn-border: color-mix(in oklab, var(--btn-bg), #000 calc(var(--depth) * 5%));
456
- }
457
- --btn-shadow: 0 3px 2px -2px var(--btn-bg),
458
- 0 4px 3px -2px var(--btn-bg);
459
- @supports (color: color-mix(in lab, red, red)) {
460
- --btn-shadow: 0 3px 2px -2px color-mix(in oklab, var(--btn-bg) calc(var(--depth) * 30%), #0000),
461
- 0 4px 3px -2px color-mix(in oklab, var(--btn-bg) calc(var(--depth) * 30%), #0000);
462
- }
463
- --btn-noise: var(--fx-noise);
464
- .prose & {
465
- text-decoration-line: none;
466
- }
467
- @media (hover: hover) {
468
- &:hover {
469
- --btn-bg: var(--btn-color, var(--color-base-200));
470
- @supports (color: color-mix(in lab, red, red)) {
471
- --btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%);
472
- }
473
- }
474
- }
475
- &:focus-visible {
476
- outline-width: 2px;
477
- outline-style: solid;
478
- isolation: isolate;
479
- }
480
- &:active:not(.btn-active) {
481
- translate: 0 0.5px;
482
- --btn-bg: var(--btn-color, var(--color-base-200));
483
- @supports (color: color-mix(in lab, red, red)) {
484
- --btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 5%);
485
- }
486
- --btn-border: var(--btn-color, var(--color-base-200));
487
- @supports (color: color-mix(in lab, red, red)) {
488
- --btn-border: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%);
489
- }
490
- --btn-shadow: 0 0 0 0 oklch(0% 0 0/0), 0 0 0 0 oklch(0% 0 0/0);
491
- }
492
- &:is(:disabled, [disabled], .btn-disabled) {
493
- &:not(.btn-link, .btn-ghost) {
494
- background-color: var(--color-base-content);
495
- @supports (color: color-mix(in lab, red, red)) {
496
- background-color: color-mix(in oklab, var(--color-base-content) 10%, transparent);
497
- }
498
- box-shadow: none;
499
- }
500
- pointer-events: none;
501
- --btn-border: #0000;
502
- --btn-noise: none;
503
- --btn-fg: var(--color-base-content);
504
- @supports (color: color-mix(in lab, red, red)) {
505
- --btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000);
506
- }
507
- @media (hover: hover) {
508
- &:hover {
509
- pointer-events: none;
510
- background-color: var(--color-neutral);
511
- @supports (color: color-mix(in lab, red, red)) {
512
- background-color: color-mix(in oklab, var(--color-neutral) 20%, transparent);
513
- }
514
- --btn-border: #0000;
515
- --btn-fg: var(--color-base-content);
516
- @supports (color: color-mix(in lab, red, red)) {
517
- --btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000);
518
- }
519
- }
520
- }
521
- }
522
- &:is(input[type="checkbox"], input[type="radio"]) {
523
- -webkit-appearance: none;
524
- -moz-appearance: none;
525
- appearance: none;
526
- &::after {
527
- content: attr(aria-label);
528
- }
529
- }
530
- &:where(input:checked:not(.filter .btn)) {
531
- --btn-color: var(--color-primary);
532
- --btn-fg: var(--color-primary-content);
533
- isolation: isolate;
534
- }
535
- }
536
- .loading {
537
- pointer-events: none;
538
- display: inline-block;
539
- aspect-ratio: 1 / 1;
540
- background-color: currentColor;
541
- vertical-align: middle;
542
- width: calc(var(--size-selector, 0.25rem) * 6);
543
- -webkit-mask-size: 100%;
544
- mask-size: 100%;
545
- -webkit-mask-repeat: no-repeat;
546
- mask-repeat: no-repeat;
547
- -webkit-mask-position: center;
548
- mask-position: center;
549
- -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
550
- mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
551
- }
552
- .input {
553
- cursor: text;
554
- border: var(--border) solid #0000;
555
- position: relative;
556
- display: inline-flex;
557
- flex-shrink: 1;
558
- -webkit-appearance: none;
559
- -moz-appearance: none;
560
- appearance: none;
561
- align-items: center;
562
- gap: calc(0.25rem * 2);
563
- background-color: var(--color-base-100);
564
- padding-inline: calc(0.25rem * 3);
565
- vertical-align: middle;
566
- white-space: nowrap;
567
- width: clamp(3rem, 20rem, 100%);
568
- height: var(--size);
569
- font-size: 0.875rem;
570
- border-start-start-radius: var(--join-ss, var(--radius-field));
571
- border-start-end-radius: var(--join-se, var(--radius-field));
572
- border-end-start-radius: var(--join-es, var(--radius-field));
573
- border-end-end-radius: var(--join-ee, var(--radius-field));
574
- border-color: var(--input-color);
575
- box-shadow: 0 1px var(--input-color) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
576
- @supports (color: color-mix(in lab, red, red)) {
577
- box-shadow: 0 1px color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
578
- }
579
- --size: calc(var(--size-field, 0.25rem) * 10);
580
- --input-color: var(--color-base-content);
581
- @supports (color: color-mix(in lab, red, red)) {
582
- --input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);
583
- }
584
- &:where(input) {
585
- display: inline-flex;
586
- }
587
- :where(input) {
588
- display: inline-flex;
589
- height: 100%;
590
- width: 100%;
591
- -webkit-appearance: none;
592
- -moz-appearance: none;
593
- appearance: none;
594
- background-color: transparent;
595
- border: none;
596
- &:focus, &:focus-within {
597
- --tw-outline-style: none;
598
- outline-style: none;
599
- @media (forced-colors: active) {
600
- outline: 2px solid transparent;
601
- outline-offset: 2px;
602
- }
603
- }
604
- }
605
- :where(input[type="date"]) {
606
- display: inline-block;
607
- }
608
- &:focus, &:focus-within {
609
- --input-color: var(--color-base-content);
610
- box-shadow: 0 1px var(--input-color);
611
- @supports (color: color-mix(in lab, red, red)) {
612
- box-shadow: 0 1px color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000);
613
- }
614
- outline: 2px solid var(--input-color);
615
- outline-offset: 2px;
616
- isolation: isolate;
617
- z-index: 1;
618
- }
619
- &:has(> input[disabled]), &:is(:disabled, [disabled]) {
620
- cursor: not-allowed;
621
- border-color: var(--color-base-200);
622
- background-color: var(--color-base-200);
623
- color: var(--color-base-content);
624
- @supports (color: color-mix(in lab, red, red)) {
625
- color: color-mix(in oklab, var(--color-base-content) 40%, transparent);
626
- }
627
- &::-moz-placeholder {
628
- color: var(--color-base-content);
629
- @supports (color: color-mix(in lab, red, red)) {
630
- color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
631
- }
632
- }
633
- &::placeholder {
634
- color: var(--color-base-content);
635
- @supports (color: color-mix(in lab, red, red)) {
636
- color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
637
- }
638
- }
639
- box-shadow: none;
640
- }
641
- &:has(> input[disabled]) > input[disabled] {
642
- cursor: not-allowed;
643
- }
644
- &::-webkit-date-and-time-value {
645
- text-align: inherit;
646
- }
647
- &[type="number"] {
648
- &::-webkit-inner-spin-button {
649
- margin-block: calc(0.25rem * -3);
650
- margin-inline-end: calc(0.25rem * -3);
651
- }
652
- }
653
- &::-webkit-calendar-picker-indicator {
654
- position: absolute;
655
- inset-inline-end: 0.75em;
656
- }
657
- }
658
- .table {
659
- font-size: 0.875rem;
660
- position: relative;
661
- width: 100%;
662
- border-radius: var(--radius-box);
663
- text-align: left;
664
- &:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
665
- text-align: right;
666
- }
667
- tr.row-hover {
668
- &, &:nth-child(even) {
669
- &:hover {
670
- @media (hover: hover) {
671
- background-color: var(--color-base-200);
672
- }
673
- }
674
- }
675
- }
676
- :where(th, td) {
677
- padding-inline: calc(0.25rem * 4);
678
- padding-block: calc(0.25rem * 3);
679
- vertical-align: middle;
680
- }
681
- :where(thead, tfoot) {
682
- white-space: nowrap;
683
- color: var(--color-base-content);
684
- @supports (color: color-mix(in lab, red, red)) {
685
- color: color-mix(in oklab, var(--color-base-content) 60%, transparent);
686
- }
687
- font-size: 0.875rem;
688
- font-weight: 600;
689
- }
690
- :where(tfoot) {
691
- border-top: var(--border) solid var(--color-base-content);
692
- @supports (color: color-mix(in lab, red, red)) {
693
- border-top: var(--border) solid color-mix(in oklch, var(--color-base-content) 5%, #0000);
694
- }
695
- }
696
- :where(.table-pin-rows thead tr) {
697
- position: sticky;
698
- top: calc(0.25rem * 0);
699
- z-index: 1;
700
- background-color: var(--color-base-100);
701
- }
702
- :where(.table-pin-rows tfoot tr) {
703
- position: sticky;
704
- bottom: calc(0.25rem * 0);
705
- z-index: 1;
706
- background-color: var(--color-base-100);
707
- }
708
- :where(.table-pin-cols tr th) {
709
- position: sticky;
710
- right: calc(0.25rem * 0);
711
- left: calc(0.25rem * 0);
712
- background-color: var(--color-base-100);
713
- }
714
- :where(thead tr, tbody tr:not(:last-child)) {
715
- border-bottom: var(--border) solid var(--color-base-content);
716
- @supports (color: color-mix(in lab, red, red)) {
717
- border-bottom: var(--border) solid color-mix(in oklch, var(--color-base-content) 5%, #0000);
718
- }
719
- }
720
- }
721
- .select {
722
- border: var(--border) solid #0000;
723
- position: relative;
724
- display: inline-flex;
725
- flex-shrink: 1;
726
- -webkit-appearance: none;
727
- -moz-appearance: none;
728
- appearance: none;
729
- align-items: center;
730
- gap: calc(0.25rem * 1.5);
731
- background-color: var(--color-base-100);
732
- padding-inline-start: calc(0.25rem * 4);
733
- padding-inline-end: calc(0.25rem * 7);
734
- vertical-align: middle;
735
- width: clamp(3rem, 20rem, 100%);
736
- height: var(--size);
737
- font-size: 0.875rem;
738
- border-start-start-radius: var(--join-ss, var(--radius-field));
739
- border-start-end-radius: var(--join-se, var(--radius-field));
740
- border-end-start-radius: var(--join-es, var(--radius-field));
741
- border-end-end-radius: var(--join-ee, var(--radius-field));
742
- background-image: linear-gradient(45deg, #0000 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, #0000 50%);
743
- background-position: calc(100% - 20px) calc(1px + 50%), calc(100% - 16.1px) calc(1px + 50%);
744
- background-size: 4px 4px, 4px 4px;
745
- background-repeat: no-repeat;
746
- text-overflow: ellipsis;
747
- box-shadow: 0 1px var(--input-color) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
748
- @supports (color: color-mix(in lab, red, red)) {
749
- box-shadow: 0 1px color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
750
- }
751
- border-color: var(--input-color);
752
- --input-color: var(--color-base-content);
753
- @supports (color: color-mix(in lab, red, red)) {
754
- --input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);
755
- }
756
- --size: calc(var(--size-field, 0.25rem) * 10);
757
- [dir="rtl"] & {
758
- background-position: calc(0% + 12px) calc(1px + 50%), calc(0% + 16px) calc(1px + 50%);
759
- }
760
- select {
761
- margin-inline-start: calc(0.25rem * -4);
762
- margin-inline-end: calc(0.25rem * -7);
763
- width: calc(100% + 2.75rem);
764
- -webkit-appearance: none;
765
- -moz-appearance: none;
766
- appearance: none;
767
- padding-inline-start: calc(0.25rem * 4);
768
- padding-inline-end: calc(0.25rem * 7);
769
- height: calc(100% - 2px);
770
- background: inherit;
771
- border-radius: inherit;
772
- border-style: none;
773
- &:focus, &:focus-within {
774
- --tw-outline-style: none;
775
- outline-style: none;
776
- @media (forced-colors: active) {
777
- outline: 2px solid transparent;
778
- outline-offset: 2px;
779
- }
780
- }
781
- &:not(:last-child) {
782
- margin-inline-end: calc(0.25rem * -5.5);
783
- background-image: none;
784
- }
785
- }
786
- &:focus, &:focus-within {
787
- --input-color: var(--color-base-content);
788
- box-shadow: 0 1px var(--input-color);
789
- @supports (color: color-mix(in lab, red, red)) {
790
- box-shadow: 0 1px color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000);
791
- }
792
- outline: 2px solid var(--input-color);
793
- outline-offset: 2px;
794
- isolation: isolate;
795
- z-index: 1;
796
- }
797
- &:has(> select[disabled]), &:is(:disabled, [disabled]) {
798
- cursor: not-allowed;
799
- border-color: var(--color-base-200);
800
- background-color: var(--color-base-200);
801
- color: var(--color-base-content);
802
- @supports (color: color-mix(in lab, red, red)) {
803
- color: color-mix(in oklab, var(--color-base-content) 40%, transparent);
804
- }
805
- &::-moz-placeholder {
806
- color: var(--color-base-content);
807
- @supports (color: color-mix(in lab, red, red)) {
808
- color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
809
- }
810
- }
811
- &::placeholder {
812
- color: var(--color-base-content);
813
- @supports (color: color-mix(in lab, red, red)) {
814
- color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
815
- }
816
- }
817
- }
818
- &:has(> select[disabled]) > select[disabled] {
819
- cursor: not-allowed;
820
- }
821
- }
822
- .radio {
823
- position: relative;
824
- flex-shrink: 0;
825
- cursor: pointer;
826
- -webkit-appearance: none;
827
- -moz-appearance: none;
828
- appearance: none;
829
- border-radius: calc(infinity * 1px);
830
- padding: calc(0.25rem * 1);
831
- vertical-align: middle;
832
- border: var(--border) solid var(--input-color, currentColor);
833
- @supports (color: color-mix(in lab, red, red)) {
834
- border: var(--border) solid var(--input-color, color-mix(in srgb, currentColor 20%, #0000));
835
- }
836
- box-shadow: 0 1px oklch(0% 0 0 / calc(var(--depth) * 0.1)) inset;
837
- --size: calc(var(--size-selector, 0.25rem) * 6);
838
- width: var(--size);
839
- height: var(--size);
840
- color: var(--input-color, currentColor);
841
- &:before {
842
- display: block;
843
- width: 100%;
844
- height: 100%;
845
- border-radius: calc(infinity * 1px);
846
- --tw-content: "";
847
- content: var(--tw-content);
848
- background-size: auto, calc(var(--noise) * 100%);
849
- background-image: none, var(--fx-noise);
850
- }
851
- &:focus-visible {
852
- outline: 2px solid currentColor;
853
- }
854
- &:checked, &[aria-checked="true"] {
855
- animation: radio 0.2s ease-out;
856
- border-color: currentColor;
857
- background-color: var(--color-base-100);
858
- &:before {
859
- background-color: currentColor;
860
- box-shadow: 0 -1px oklch(0% 0 0 / calc(var(--depth) * 0.1)) inset, 0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset, 0 1px oklch(0% 0 0 / calc(var(--depth) * 0.1));
861
- }
862
- @media (forced-colors: active) {
863
- &:before {
864
- outline-style: var(--tw-outline-style);
865
- outline-width: 1px;
866
- outline-offset: calc(1px * -1);
867
- }
868
- }
869
- @media print {
870
- &:before {
871
- outline: 0.25rem solid;
872
- outline-offset: -1rem;
873
- }
874
- }
875
- }
876
- &:disabled {
877
- cursor: not-allowed;
878
- opacity: 20%;
879
- }
880
- }
881
159
  .order-1 {
882
160
  order: 1;
883
161
  }
884
162
  .order-2 {
885
163
  order: 2;
886
164
  }
887
- .label {
888
- display: inline-flex;
889
- align-items: center;
890
- gap: calc(0.25rem * 1.5);
891
- white-space: nowrap;
892
- color: currentColor;
893
- @supports (color: color-mix(in lab, red, red)) {
894
- color: color-mix(in oklab, currentColor 60%, transparent);
895
- }
896
- &:has(input) {
897
- cursor: pointer;
898
- }
899
- &:is(.input > *, .select > *) {
900
- display: flex;
901
- height: calc(100% - 0.5rem);
902
- align-items: center;
903
- padding-inline: calc(0.25rem * 3);
904
- white-space: nowrap;
905
- font-size: inherit;
906
- &:first-child {
907
- margin-inline-start: calc(0.25rem * -3);
908
- margin-inline-end: calc(0.25rem * 3);
909
- border-inline-end: var(--border) solid currentColor;
910
- @supports (color: color-mix(in lab, red, red)) {
911
- border-inline-end: var(--border) solid color-mix(in oklab, currentColor 10%, #0000);
912
- }
913
- }
914
- &:last-child {
915
- margin-inline-start: calc(0.25rem * 3);
916
- margin-inline-end: calc(0.25rem * -3);
917
- border-inline-start: var(--border) solid currentColor;
918
- @supports (color: color-mix(in lab, red, red)) {
919
- border-inline-start: var(--border) solid color-mix(in oklab, currentColor 10%, #0000);
920
- }
921
- }
922
- }
923
- }
924
- .mb-4 {
925
- margin-bottom: calc(var(--spacing) * 4);
926
- }
927
- .status {
928
- display: inline-block;
929
- aspect-ratio: 1 / 1;
930
- width: calc(0.25rem * 2);
931
- height: calc(0.25rem * 2);
932
- border-radius: var(--radius-selector);
933
- background-color: var(--color-base-content);
934
- @supports (color: color-mix(in lab, red, red)) {
935
- background-color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
936
- }
937
- background-position: center;
938
- background-repeat: no-repeat;
939
- vertical-align: middle;
940
- color: color-mix(in srgb, #000 30%, transparent);
941
- @supports (color: color-mix(in lab, red, red)) {
942
- color: color-mix(in srgb, #000 30%, transparent);
943
- @supports (color: color-mix(in lab, red, red)) {
944
- color: color-mix(in oklab, var(--color-black) 30%, transparent);
945
- }
946
- }
947
- background-image: radial-gradient( circle at 35% 30%, oklch(1 0 0 / calc(var(--depth) * 0.5)), #0000 );
948
- box-shadow: 0 2px 3px -1px currentColor;
949
- @supports (color: color-mix(in lab, red, red)) {
950
- box-shadow: 0 2px 3px -1px color-mix(in oklab, currentColor calc(var(--depth) * 100%), #0000);
951
- }
952
- }
953
- .mask {
954
- display: inline-block;
955
- vertical-align: middle;
956
- -webkit-mask-size: contain;
957
- mask-size: contain;
958
- -webkit-mask-repeat: no-repeat;
959
- mask-repeat: no-repeat;
960
- -webkit-mask-position: center;
961
- mask-position: center;
962
- }
963
165
  .\!inline {
964
166
  display: inline !important;
965
167
  }
@@ -987,289 +189,15 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
987
189
  .flex-wrap {
988
190
  flex-wrap: wrap;
989
191
  }
990
- .gap-4 {
991
- gap: calc(var(--spacing) * 4);
992
- }
993
192
  .gap-\[2rem\] {
994
193
  gap: 2rem;
995
194
  }
996
- .rounded {
997
- border-radius: 0.25rem;
998
- }
999
- .loading-spinner {
1000
- -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
1001
- mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
1002
- }
1003
- .px-1\.5 {
1004
- padding-inline: calc(var(--spacing) * 1.5);
1005
- }
1006
- .text-2xl {
1007
- font-size: var(--text-2xl);
1008
- line-height: var(--tw-leading, var(--text-2xl--line-height));
1009
- }
1010
- .text-3xl {
1011
- font-size: var(--text-3xl);
1012
- line-height: var(--tw-leading, var(--text-3xl--line-height));
1013
- }
1014
- .text-base {
1015
- font-size: var(--text-base);
1016
- line-height: var(--tw-leading, var(--text-base--line-height));
1017
- }
1018
- .text-lg {
1019
- font-size: var(--text-lg);
1020
- line-height: var(--tw-leading, var(--text-lg--line-height));
1021
- }
1022
- .text-sm {
1023
- font-size: var(--text-sm);
1024
- line-height: var(--tw-leading, var(--text-sm--line-height));
1025
- }
1026
- .text-xl {
1027
- font-size: var(--text-xl);
1028
- line-height: var(--tw-leading, var(--text-xl--line-height));
1029
- }
1030
- .text-xs {
1031
- font-size: var(--text-xs);
1032
- line-height: var(--tw-leading, var(--text-xs--line-height));
1033
- }
1034
- .text-blue-600 {
1035
- color: var(--color-blue-600);
1036
- }
1037
- .text-green-600 {
1038
- color: var(--color-green-600);
1039
- }
1040
195
  .text-inherit {
1041
196
  color: inherit;
1042
197
  }
1043
- .text-red-600 {
1044
- color: var(--color-red-600);
1045
- }
1046
- .text-zinc-600 {
1047
- color: var(--color-zinc-600);
1048
- }
1049
198
  .underline {
1050
199
  text-decoration-line: underline;
1051
200
  }
1052
- .btn-lg {
1053
- --fontsize: 1.125rem;
1054
- --btn-p: 1.25rem;
1055
- --size: calc(var(--size-field, 0.25rem) * 12);
1056
- }
1057
- .btn-md {
1058
- --fontsize: 0.875rem;
1059
- --btn-p: 1rem;
1060
- --size: calc(var(--size-field, 0.25rem) * 10);
1061
- }
1062
- .btn-sm {
1063
- --fontsize: 0.75rem;
1064
- --btn-p: 0.75rem;
1065
- --size: calc(var(--size-field, 0.25rem) * 8);
1066
- }
1067
- .btn-accent {
1068
- --btn-color: var(--color-accent);
1069
- --btn-fg: var(--color-accent-content);
1070
- }
1071
- .btn-neutral {
1072
- --btn-color: var(--color-neutral);
1073
- --btn-fg: var(--color-neutral-content);
1074
- }
1075
- .btn-primary {
1076
- --btn-color: var(--color-primary);
1077
- --btn-fg: var(--color-primary-content);
1078
- }
1079
- .btn-secondary {
1080
- --btn-color: var(--color-secondary);
1081
- --btn-fg: var(--color-secondary-content);
1082
- }
1083
- @layer theme, base, components, utilities;
1084
- @layer theme {
1085
- :root, :host {
1086
- --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
1087
- "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
1088
- --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
1089
- "Courier New", monospace;
1090
- --color-red-600: oklch(57.7% 0.245 27.325);
1091
- --color-green-600: oklch(62.7% 0.194 149.214);
1092
- --color-blue-600: oklch(54.6% 0.245 262.881);
1093
- --color-zinc-600: oklch(44.2% 0.017 285.786);
1094
- --color-black: #000;
1095
- --spacing: 0.25rem;
1096
- --text-xs: 0.75rem;
1097
- --text-xs--line-height: calc(1 / 0.75);
1098
- --text-sm: 0.875rem;
1099
- --text-sm--line-height: calc(1.25 / 0.875);
1100
- --text-base: 1rem;
1101
- --text-base--line-height: calc(1.5 / 1);
1102
- --text-lg: 1.125rem;
1103
- --text-lg--line-height: calc(1.75 / 1.125);
1104
- --text-xl: 1.25rem;
1105
- --text-xl--line-height: calc(1.75 / 1.25);
1106
- --text-2xl: 1.5rem;
1107
- --text-2xl--line-height: calc(2 / 1.5);
1108
- --text-3xl: 1.875rem;
1109
- --text-3xl--line-height: calc(2.25 / 1.875);
1110
- --default-font-family: var(--font-sans);
1111
- --default-mono-font-family: var(--font-mono);
1112
- }
1113
- }
1114
- @layer base {
1115
- *, ::after, ::before, ::backdrop, ::file-selector-button {
1116
- box-sizing: border-box;
1117
- margin: 0;
1118
- padding: 0;
1119
- border: 0 solid;
1120
- }
1121
- html, :host {
1122
- line-height: 1.5;
1123
- -webkit-text-size-adjust: 100%;
1124
- -moz-tab-size: 4;
1125
- -o-tab-size: 4;
1126
- tab-size: 4;
1127
- 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");
1128
- font-feature-settings: var(--default-font-feature-settings, normal);
1129
- font-variation-settings: var(--default-font-variation-settings, normal);
1130
- -webkit-tap-highlight-color: transparent;
1131
- }
1132
- hr {
1133
- height: 0;
1134
- color: inherit;
1135
- border-top-width: 1px;
1136
- }
1137
- abbr:where([title]) {
1138
- -webkit-text-decoration: underline dotted;
1139
- text-decoration: underline dotted;
1140
- }
1141
- h1, h2, h3, h4, h5, h6 {
1142
- font-size: inherit;
1143
- font-weight: inherit;
1144
- }
1145
- a {
1146
- color: inherit;
1147
- -webkit-text-decoration: inherit;
1148
- text-decoration: inherit;
1149
- }
1150
- b, strong {
1151
- font-weight: bolder;
1152
- }
1153
- code, kbd, samp, pre {
1154
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
1155
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
1156
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
1157
- font-size: 1em;
1158
- }
1159
- small {
1160
- font-size: 80%;
1161
- }
1162
- sub, sup {
1163
- font-size: 75%;
1164
- line-height: 0;
1165
- position: relative;
1166
- vertical-align: baseline;
1167
- }
1168
- sub {
1169
- bottom: -0.25em;
1170
- }
1171
- sup {
1172
- top: -0.5em;
1173
- }
1174
- table {
1175
- text-indent: 0;
1176
- border-color: inherit;
1177
- border-collapse: collapse;
1178
- }
1179
- :-moz-focusring {
1180
- outline: auto;
1181
- }
1182
- progress {
1183
- vertical-align: baseline;
1184
- }
1185
- summary {
1186
- display: list-item;
1187
- }
1188
- ol, ul, menu {
1189
- list-style: none;
1190
- }
1191
- img, svg, video, canvas, audio, iframe, embed, object {
1192
- display: block;
1193
- vertical-align: middle;
1194
- }
1195
- img, video {
1196
- max-width: 100%;
1197
- height: auto;
1198
- }
1199
- button, input, select, optgroup, textarea, ::file-selector-button {
1200
- font: inherit;
1201
- font-feature-settings: inherit;
1202
- font-variation-settings: inherit;
1203
- letter-spacing: inherit;
1204
- color: inherit;
1205
- border-radius: 0;
1206
- background-color: transparent;
1207
- opacity: 1;
1208
- }
1209
- :where(select:is([multiple], [size])) optgroup {
1210
- font-weight: bolder;
1211
- }
1212
- :where(select:is([multiple], [size])) optgroup option {
1213
- padding-inline-start: 20px;
1214
- }
1215
- ::file-selector-button {
1216
- margin-inline-end: 4px;
1217
- }
1218
- ::-moz-placeholder {
1219
- opacity: 1;
1220
- }
1221
- ::placeholder {
1222
- opacity: 1;
1223
- }
1224
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
1225
- ::-moz-placeholder {
1226
- color: currentcolor;
1227
- @supports (color: color-mix(in lab, red, red)) {
1228
- color: color-mix(in oklab, currentcolor 50%, transparent);
1229
- }
1230
- }
1231
- ::placeholder {
1232
- color: currentcolor;
1233
- @supports (color: color-mix(in lab, red, red)) {
1234
- color: color-mix(in oklab, currentcolor 50%, transparent);
1235
- }
1236
- }
1237
- }
1238
- textarea {
1239
- resize: vertical;
1240
- }
1241
- ::-webkit-search-decoration {
1242
- -webkit-appearance: none;
1243
- }
1244
- ::-webkit-date-and-time-value {
1245
- min-height: 1lh;
1246
- text-align: inherit;
1247
- }
1248
- ::-webkit-datetime-edit {
1249
- display: inline-flex;
1250
- }
1251
- ::-webkit-datetime-edit-fields-wrapper {
1252
- padding: 0;
1253
- }
1254
- ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
1255
- padding-block: 0;
1256
- }
1257
- :-moz-ui-invalid {
1258
- box-shadow: none;
1259
- }
1260
- button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
1261
- -webkit-appearance: button;
1262
- -moz-appearance: button;
1263
- appearance: button;
1264
- }
1265
- ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
1266
- height: auto;
1267
- }
1268
- [hidden]:where(:not([hidden="until-found"])) {
1269
- display: none !important;
1270
- }
1271
- }
1272
- @layer utilities;
1273
201
  .btn {
1274
202
  font-weight: 500;
1275
203
  padding: 6px 16px;
@@ -1393,229 +321,6 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
1393
321
  body {
1394
322
  font-family: 'Inter', sans-serif;
1395
323
  }
1396
- @layer base {
1397
- :where(:root),:root:has(input.theme-controller[value=light]:checked),[data-theme=light] {
1398
- color-scheme: light;
1399
- --color-base-100: oklch(100% 0 0);
1400
- --color-base-200: oklch(98% 0 0);
1401
- --color-base-300: oklch(95% 0 0);
1402
- --color-base-content: oklch(21% 0.006 285.885);
1403
- --color-primary: oklch(45% 0.24 277.023);
1404
- --color-primary-content: oklch(93% 0.034 272.788);
1405
- --color-secondary: oklch(65% 0.241 354.308);
1406
- --color-secondary-content: oklch(94% 0.028 342.258);
1407
- --color-accent: oklch(77% 0.152 181.912);
1408
- --color-accent-content: oklch(38% 0.063 188.416);
1409
- --color-neutral: oklch(14% 0.005 285.823);
1410
- --color-neutral-content: oklch(92% 0.004 286.32);
1411
- --color-info: oklch(74% 0.16 232.661);
1412
- --color-info-content: oklch(29% 0.066 243.157);
1413
- --color-success: oklch(76% 0.177 163.223);
1414
- --color-success-content: oklch(37% 0.077 168.94);
1415
- --color-warning: oklch(82% 0.189 84.429);
1416
- --color-warning-content: oklch(41% 0.112 45.904);
1417
- --color-error: oklch(71% 0.194 13.428);
1418
- --color-error-content: oklch(27% 0.105 12.094);
1419
- --radius-selector: 0.5rem;
1420
- --radius-field: 0.25rem;
1421
- --radius-box: 0.5rem;
1422
- --size-selector: 0.25rem;
1423
- --size-field: 0.25rem;
1424
- --border: 1px;
1425
- --depth: 1;
1426
- --noise: 0;
1427
- }
1428
- }
1429
- @layer base {
1430
- @media (prefers-color-scheme: dark) {
1431
- :root {
1432
- color-scheme: dark;
1433
- --color-base-100: oklch(25.33% 0.016 252.42);
1434
- --color-base-200: oklch(23.26% 0.014 253.1);
1435
- --color-base-300: oklch(21.15% 0.012 254.09);
1436
- --color-base-content: oklch(97.807% 0.029 256.847);
1437
- --color-primary: oklch(58% 0.233 277.117);
1438
- --color-primary-content: oklch(96% 0.018 272.314);
1439
- --color-secondary: oklch(65% 0.241 354.308);
1440
- --color-secondary-content: oklch(94% 0.028 342.258);
1441
- --color-accent: oklch(77% 0.152 181.912);
1442
- --color-accent-content: oklch(38% 0.063 188.416);
1443
- --color-neutral: oklch(14% 0.005 285.823);
1444
- --color-neutral-content: oklch(92% 0.004 286.32);
1445
- --color-info: oklch(74% 0.16 232.661);
1446
- --color-info-content: oklch(29% 0.066 243.157);
1447
- --color-success: oklch(76% 0.177 163.223);
1448
- --color-success-content: oklch(37% 0.077 168.94);
1449
- --color-warning: oklch(82% 0.189 84.429);
1450
- --color-warning-content: oklch(41% 0.112 45.904);
1451
- --color-error: oklch(71% 0.194 13.428);
1452
- --color-error-content: oklch(27% 0.105 12.094);
1453
- --radius-selector: 0.5rem;
1454
- --radius-field: 0.25rem;
1455
- --radius-box: 0.5rem;
1456
- --size-selector: 0.25rem;
1457
- --size-field: 0.25rem;
1458
- --border: 1px;
1459
- --depth: 1;
1460
- --noise: 0;
1461
- }
1462
- }
1463
- }
1464
- @layer base {
1465
- :root:has(input.theme-controller[value=light]:checked),[data-theme=light] {
1466
- color-scheme: light;
1467
- --color-base-100: oklch(100% 0 0);
1468
- --color-base-200: oklch(98% 0 0);
1469
- --color-base-300: oklch(95% 0 0);
1470
- --color-base-content: oklch(21% 0.006 285.885);
1471
- --color-primary: oklch(45% 0.24 277.023);
1472
- --color-primary-content: oklch(93% 0.034 272.788);
1473
- --color-secondary: oklch(65% 0.241 354.308);
1474
- --color-secondary-content: oklch(94% 0.028 342.258);
1475
- --color-accent: oklch(77% 0.152 181.912);
1476
- --color-accent-content: oklch(38% 0.063 188.416);
1477
- --color-neutral: oklch(14% 0.005 285.823);
1478
- --color-neutral-content: oklch(92% 0.004 286.32);
1479
- --color-info: oklch(74% 0.16 232.661);
1480
- --color-info-content: oklch(29% 0.066 243.157);
1481
- --color-success: oklch(76% 0.177 163.223);
1482
- --color-success-content: oklch(37% 0.077 168.94);
1483
- --color-warning: oklch(82% 0.189 84.429);
1484
- --color-warning-content: oklch(41% 0.112 45.904);
1485
- --color-error: oklch(71% 0.194 13.428);
1486
- --color-error-content: oklch(27% 0.105 12.094);
1487
- --radius-selector: 0.5rem;
1488
- --radius-field: 0.25rem;
1489
- --radius-box: 0.5rem;
1490
- --size-selector: 0.25rem;
1491
- --size-field: 0.25rem;
1492
- --border: 1px;
1493
- --depth: 1;
1494
- --noise: 0;
1495
- }
1496
- }
1497
- @layer base {
1498
- :root:has(input.theme-controller[value=dark]:checked),[data-theme=dark] {
1499
- color-scheme: dark;
1500
- --color-base-100: oklch(25.33% 0.016 252.42);
1501
- --color-base-200: oklch(23.26% 0.014 253.1);
1502
- --color-base-300: oklch(21.15% 0.012 254.09);
1503
- --color-base-content: oklch(97.807% 0.029 256.847);
1504
- --color-primary: oklch(58% 0.233 277.117);
1505
- --color-primary-content: oklch(96% 0.018 272.314);
1506
- --color-secondary: oklch(65% 0.241 354.308);
1507
- --color-secondary-content: oklch(94% 0.028 342.258);
1508
- --color-accent: oklch(77% 0.152 181.912);
1509
- --color-accent-content: oklch(38% 0.063 188.416);
1510
- --color-neutral: oklch(14% 0.005 285.823);
1511
- --color-neutral-content: oklch(92% 0.004 286.32);
1512
- --color-info: oklch(74% 0.16 232.661);
1513
- --color-info-content: oklch(29% 0.066 243.157);
1514
- --color-success: oklch(76% 0.177 163.223);
1515
- --color-success-content: oklch(37% 0.077 168.94);
1516
- --color-warning: oklch(82% 0.189 84.429);
1517
- --color-warning-content: oklch(41% 0.112 45.904);
1518
- --color-error: oklch(71% 0.194 13.428);
1519
- --color-error-content: oklch(27% 0.105 12.094);
1520
- --radius-selector: 0.5rem;
1521
- --radius-field: 0.25rem;
1522
- --radius-box: 0.5rem;
1523
- --size-selector: 0.25rem;
1524
- --size-field: 0.25rem;
1525
- --border: 1px;
1526
- --depth: 1;
1527
- --noise: 0;
1528
- }
1529
- }
1530
- @layer base {
1531
- :root:has( .modal-open, .modal[open], .modal:target, .modal-toggle:checked, .drawer:not([class*="drawer-open"]) > .drawer-toggle:checked ) {
1532
- overflow: hidden;
1533
- }
1534
- }
1535
- @layer base {
1536
- :root, [data-theme] {
1537
- background-color: var(--root-bg, var(--color-base-100));
1538
- color: var(--color-base-content);
1539
- }
1540
- }
1541
- @layer base {
1542
- :root {
1543
- scrollbar-color: currentColor #0000;
1544
- @supports (color: color-mix(in lab, red, red)) {
1545
- scrollbar-color: color-mix(in oklch, currentColor 35%, #0000) #0000;
1546
- }
1547
- }
1548
- }
1549
- @layer base {
1550
- @property --radialprogress {
1551
- syntax: "<percentage>";
1552
- inherits: true;
1553
- initial-value: 0%;
1554
- }
1555
- }
1556
- @layer base {
1557
- :where( :root:has( .modal-open, .modal[open], .modal:target, .modal-toggle:checked, .drawer:not(.drawer-open) > .drawer-toggle:checked ) ) {
1558
- scrollbar-gutter: stable;
1559
- background-image: linear-gradient(var(--color-base-100), var(--color-base-100));
1560
- --root-bg: var(--color-base-100);
1561
- @supports (color: color-mix(in lab, red, red)) {
1562
- --root-bg: color-mix(in srgb, var(--color-base-100), oklch(0% 0 0) 40%);
1563
- }
1564
- }
1565
- :where(.modal[open], .modal-open, .modal-toggle:checked + .modal):not(.modal-start, .modal-end) {
1566
- scrollbar-gutter: stable;
1567
- }
1568
- }
1569
- @layer base {
1570
- :root {
1571
- --fx-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.34' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.2'%3E%3C/rect%3E%3C/svg%3E");
1572
- }
1573
- .chat {
1574
- --mask-chat: url("data:image/svg+xml,%3csvg width='13' height='13' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M0 11.5004C0 13.0004 2 13.0004 2 13.0004H12H13V0.00036329L12.5 0C12.5 0 11.977 2.09572 11.8581 2.50033C11.6075 3.35237 10.9149 4.22374 9 5.50036C6 7.50036 0 10.0004 0 11.5004Z'/%3e%3c/svg%3e");
1575
- }
1576
- }
1577
- @keyframes dropdown {
1578
- 0% {
1579
- opacity: 0;
1580
- }
1581
- }
1582
- @keyframes progress {
1583
- 50% {
1584
- background-position-x: -115%;
1585
- }
1586
- }
1587
- @keyframes toast {
1588
- 0% {
1589
- scale: 0.9;
1590
- opacity: 0;
1591
- }
1592
- 100% {
1593
- scale: 1;
1594
- opacity: 1;
1595
- }
1596
- }
1597
- @keyframes rating {
1598
- 0%, 40% {
1599
- scale: 1.1;
1600
- filter: brightness(1.05) contrast(1.05);
1601
- }
1602
- }
1603
- @keyframes radio {
1604
- 0% {
1605
- padding: 5px;
1606
- }
1607
- 50% {
1608
- padding: 3px;
1609
- }
1610
- }
1611
- @keyframes skeleton {
1612
- 0% {
1613
- background-position: 150%;
1614
- }
1615
- 100% {
1616
- background-position: -50%;
1617
- }
1618
- }
1619
324
  @layer base {
1620
325
  :where(:root),:root:has(input.theme-controller[value=light]:checked),[data-theme="light"] {
1621
326
  color-scheme: light;
@@ -1774,4 +479,4 @@ body {
1774
479
  --tw-skew-y: initial;
1775
480
  }
1776
481
  }
1777
- }
482
+ }