@marigold/theme-rui 0.3.0 → 0.3.2
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/global.css +8 -0
- package/dist/index.js +100 -71
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +100 -71
- package/dist/index.mjs.map +1 -1
- package/dist/mixins.css +54 -0
- package/dist/styles.css +239 -175
- package/dist/theme.css +5 -5
- package/package.json +7 -5
package/dist/styles.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@layer theme, base, components, utilities;
|
|
3
3
|
@layer theme {
|
|
4
4
|
[data-theme="rui"], [data-theme="rui"] :host {
|
|
5
|
-
--font-sans:
|
|
5
|
+
--font-sans: Inter, system-ui, sans-serif;
|
|
6
6
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
7
7
|
"Courier New", monospace;
|
|
8
8
|
--color-red-100: oklch(0.936 0.032 17.717);
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
--color-black: #000;
|
|
65
65
|
--color-white: #fff;
|
|
66
66
|
--spacing: 0.25rem;
|
|
67
|
+
--container-lg: 32rem;
|
|
67
68
|
--text-xs: 0.75rem;
|
|
68
69
|
--text-xs--line-height: calc(1 / 0.75);
|
|
69
70
|
--text-sm: 0.875rem;
|
|
@@ -320,6 +321,9 @@
|
|
|
320
321
|
[data-theme="rui"] .top-2 {
|
|
321
322
|
top: calc(var(--spacing) * 2);
|
|
322
323
|
}
|
|
324
|
+
[data-theme="rui"] .top-3 {
|
|
325
|
+
top: calc(var(--spacing) * 3);
|
|
326
|
+
}
|
|
323
327
|
[data-theme="rui"] .top-4 {
|
|
324
328
|
top: calc(var(--spacing) * 4);
|
|
325
329
|
}
|
|
@@ -338,8 +342,8 @@
|
|
|
338
342
|
[data-theme="rui"] .right-2 {
|
|
339
343
|
right: calc(var(--spacing) * 2);
|
|
340
344
|
}
|
|
341
|
-
[data-theme="rui"] .right-
|
|
342
|
-
right: calc(var(--spacing) *
|
|
345
|
+
[data-theme="rui"] .right-3 {
|
|
346
|
+
right: calc(var(--spacing) * 3);
|
|
343
347
|
}
|
|
344
348
|
[data-theme="rui"] .bottom-0\! {
|
|
345
349
|
bottom: calc(var(--spacing) * 0) !important;
|
|
@@ -350,9 +354,6 @@
|
|
|
350
354
|
[data-theme="rui"] .left-1 {
|
|
351
355
|
left: calc(var(--spacing) * 1);
|
|
352
356
|
}
|
|
353
|
-
[data-theme="rui"] .left-1\/2 {
|
|
354
|
-
left: calc(1/2 * 100%);
|
|
355
|
-
}
|
|
356
357
|
[data-theme="rui"] .z-10 {
|
|
357
358
|
z-index: 10;
|
|
358
359
|
}
|
|
@@ -395,12 +396,18 @@
|
|
|
395
396
|
[data-theme="rui"] .m-2 {
|
|
396
397
|
margin: calc(var(--spacing) * 2);
|
|
397
398
|
}
|
|
399
|
+
[data-theme="rui"] .-my-1\.5 {
|
|
400
|
+
margin-block: calc(var(--spacing) * -1.5);
|
|
401
|
+
}
|
|
398
402
|
[data-theme="rui"] .ms-\[auto\] {
|
|
399
403
|
margin-inline-start: auto;
|
|
400
404
|
}
|
|
401
405
|
[data-theme="rui"] .ms-auto {
|
|
402
406
|
margin-inline-start: auto;
|
|
403
407
|
}
|
|
408
|
+
[data-theme="rui"] .-me-2 {
|
|
409
|
+
margin-inline-end: calc(var(--spacing) * -2);
|
|
410
|
+
}
|
|
404
411
|
[data-theme="rui"] .me-\[auto\] {
|
|
405
412
|
margin-inline-end: auto;
|
|
406
413
|
}
|
|
@@ -428,9 +435,6 @@
|
|
|
428
435
|
[data-theme="rui"] .mb-\[10px\] {
|
|
429
436
|
margin-bottom: 10px;
|
|
430
437
|
}
|
|
431
|
-
[data-theme="rui"] .ml-4 {
|
|
432
|
-
margin-left: calc(var(--spacing) * 4);
|
|
433
|
-
}
|
|
434
438
|
[data-theme="rui"] .ml-6 {
|
|
435
439
|
margin-left: calc(var(--spacing) * 6);
|
|
436
440
|
}
|
|
@@ -507,6 +511,10 @@
|
|
|
507
511
|
width: calc(var(--spacing) * 7);
|
|
508
512
|
height: calc(var(--spacing) * 7);
|
|
509
513
|
}
|
|
514
|
+
[data-theme="rui"] .size-8 {
|
|
515
|
+
width: calc(var(--spacing) * 8);
|
|
516
|
+
height: calc(var(--spacing) * 8);
|
|
517
|
+
}
|
|
510
518
|
[data-theme="rui"] .size-9 {
|
|
511
519
|
width: calc(var(--spacing) * 9);
|
|
512
520
|
height: calc(var(--spacing) * 9);
|
|
@@ -531,6 +539,10 @@
|
|
|
531
539
|
width: calc(var(--spacing) * 44);
|
|
532
540
|
height: calc(var(--spacing) * 44);
|
|
533
541
|
}
|
|
542
|
+
[data-theme="rui"] .size-96 {
|
|
543
|
+
width: calc(var(--spacing) * 96);
|
|
544
|
+
height: calc(var(--spacing) * 96);
|
|
545
|
+
}
|
|
534
546
|
[data-theme="rui"] .size-\[40px\] {
|
|
535
547
|
width: 40px;
|
|
536
548
|
height: 40px;
|
|
@@ -731,9 +743,6 @@
|
|
|
731
743
|
[data-theme="rui"] .h-400 {
|
|
732
744
|
height: calc(var(--spacing) * 400);
|
|
733
745
|
}
|
|
734
|
-
[data-theme="rui"] .h-\[9\.98px\] {
|
|
735
|
-
height: 9.98px;
|
|
736
|
-
}
|
|
737
746
|
[data-theme="rui"] .h-\[30px\] {
|
|
738
747
|
height: 30px;
|
|
739
748
|
}
|
|
@@ -998,9 +1007,6 @@
|
|
|
998
1007
|
[data-theme="rui"] .w-96 {
|
|
999
1008
|
width: calc(var(--spacing) * 96);
|
|
1000
1009
|
}
|
|
1001
|
-
[data-theme="rui"] .w-\[9\.98px\] {
|
|
1002
|
-
width: 9.98px;
|
|
1003
|
-
}
|
|
1004
1010
|
[data-theme="rui"] .w-\[24px\] {
|
|
1005
1011
|
width: 24px;
|
|
1006
1012
|
}
|
|
@@ -1022,15 +1028,6 @@
|
|
|
1022
1028
|
[data-theme="rui"] .w-\[1000px\] {
|
|
1023
1029
|
width: 1000px;
|
|
1024
1030
|
}
|
|
1025
|
-
[data-theme="rui"] .w-\[min\(100\%\,640px\)\] {
|
|
1026
|
-
width: min(100%, 640px);
|
|
1027
|
-
}
|
|
1028
|
-
[data-theme="rui"] .w-\[min\(100\%\,768px\)\] {
|
|
1029
|
-
width: min(100%, 768px);
|
|
1030
|
-
}
|
|
1031
|
-
[data-theme="rui"] .w-\[min\(100\%\,1024px\)\] {
|
|
1032
|
-
width: min(100%, 1024px);
|
|
1033
|
-
}
|
|
1034
1031
|
[data-theme="rui"] .w-\[min\(100\%_-_3rem\,60ch\)\] {
|
|
1035
1032
|
width: min(100% - 3rem, 60ch);
|
|
1036
1033
|
}
|
|
@@ -1082,9 +1079,6 @@
|
|
|
1082
1079
|
[data-theme="rui"] .max-w-\[400px\] {
|
|
1083
1080
|
max-width: 400px;
|
|
1084
1081
|
}
|
|
1085
|
-
[data-theme="rui"] .max-w-\[601px\] {
|
|
1086
|
-
max-width: 601px;
|
|
1087
|
-
}
|
|
1088
1082
|
[data-theme="rui"] .max-w-\[calc\(100\%-2rem\)\] {
|
|
1089
1083
|
max-width: calc(100% - 2rem);
|
|
1090
1084
|
}
|
|
@@ -1136,21 +1130,21 @@
|
|
|
1136
1130
|
[data-theme="rui"] .border-collapse {
|
|
1137
1131
|
border-collapse: collapse;
|
|
1138
1132
|
}
|
|
1133
|
+
[data-theme="rui"] .border-separate {
|
|
1134
|
+
border-collapse: separate;
|
|
1135
|
+
}
|
|
1136
|
+
[data-theme="rui"] .border-spacing-0 {
|
|
1137
|
+
--tw-border-spacing-x: calc(var(--spacing) * 0);
|
|
1138
|
+
--tw-border-spacing-y: calc(var(--spacing) * 0);
|
|
1139
|
+
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
|
1140
|
+
}
|
|
1139
1141
|
[data-theme="rui"] .origin-center {
|
|
1140
1142
|
transform-origin: center;
|
|
1141
1143
|
}
|
|
1142
|
-
[data-theme="rui"] .-translate-x-1\/2 {
|
|
1143
|
-
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
1144
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1145
|
-
}
|
|
1146
1144
|
[data-theme="rui"] .translate-x-0 {
|
|
1147
1145
|
--tw-translate-x: calc(var(--spacing) * 0);
|
|
1148
1146
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1149
1147
|
}
|
|
1150
|
-
[data-theme="rui"] .-translate-y-1\/2 {
|
|
1151
|
-
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
1152
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1153
|
-
}
|
|
1154
1148
|
[data-theme="rui"] .translate-y-\[-50\%\] {
|
|
1155
1149
|
--tw-translate-y: -50%;
|
|
1156
1150
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1478,8 +1472,8 @@
|
|
|
1478
1472
|
[data-theme="rui"] .gap-x-2 {
|
|
1479
1473
|
column-gap: calc(var(--spacing) * 2);
|
|
1480
1474
|
}
|
|
1481
|
-
[data-theme="rui"] .gap-x-
|
|
1482
|
-
column-gap: calc(var(--spacing) *
|
|
1475
|
+
[data-theme="rui"] .gap-x-3 {
|
|
1476
|
+
column-gap: calc(var(--spacing) * 3);
|
|
1483
1477
|
}
|
|
1484
1478
|
[data-theme="rui"] .space-x-2 {
|
|
1485
1479
|
[data-theme="rui"] :where(& > :not(:last-child)) {
|
|
@@ -1491,9 +1485,6 @@
|
|
|
1491
1485
|
[data-theme="rui"] .gap-y-1 {
|
|
1492
1486
|
row-gap: calc(var(--spacing) * 1);
|
|
1493
1487
|
}
|
|
1494
|
-
[data-theme="rui"] .gap-y-2 {
|
|
1495
|
-
row-gap: calc(var(--spacing) * 2);
|
|
1496
|
-
}
|
|
1497
1488
|
[data-theme="rui"] .gap-y-10 {
|
|
1498
1489
|
row-gap: calc(var(--spacing) * 10);
|
|
1499
1490
|
}
|
|
@@ -1622,6 +1613,9 @@
|
|
|
1622
1613
|
[data-theme="rui"] .border-input {
|
|
1623
1614
|
border-color: var(--color-stone-300);
|
|
1624
1615
|
}
|
|
1616
|
+
[data-theme="rui"] .border-input\! {
|
|
1617
|
+
border-color: var(--color-stone-300) !important;
|
|
1618
|
+
}
|
|
1625
1619
|
[data-theme="rui"] .border-lime-400 {
|
|
1626
1620
|
border-color: var(--color-lime-400);
|
|
1627
1621
|
}
|
|
@@ -1667,8 +1661,8 @@
|
|
|
1667
1661
|
[data-theme="rui"] .bg-black {
|
|
1668
1662
|
background-color: var(--color-black);
|
|
1669
1663
|
}
|
|
1670
|
-
[data-theme="rui"] .bg-black\/
|
|
1671
|
-
background-color: color-mix(in oklab, var(--color-black)
|
|
1664
|
+
[data-theme="rui"] .bg-black\/80 {
|
|
1665
|
+
background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
|
|
1672
1666
|
}
|
|
1673
1667
|
[data-theme="rui"] .bg-blue-100 {
|
|
1674
1668
|
background-color: var(--color-blue-100);
|
|
@@ -1793,15 +1787,15 @@
|
|
|
1793
1787
|
[data-theme="rui"] .fill-white {
|
|
1794
1788
|
fill: var(--color-white);
|
|
1795
1789
|
}
|
|
1796
|
-
[data-theme="rui"] .stroke-background {
|
|
1797
|
-
stroke: var(--color-white);
|
|
1798
|
-
}
|
|
1799
1790
|
[data-theme="rui"] .stroke-border {
|
|
1800
1791
|
stroke: var(--color-stone-200);
|
|
1801
1792
|
}
|
|
1802
1793
|
[data-theme="rui"] .stroke-brand {
|
|
1803
1794
|
stroke: var(--color-stone-950);
|
|
1804
1795
|
}
|
|
1796
|
+
[data-theme="rui"] .stroke-foreground {
|
|
1797
|
+
stroke: var(--color-stone-950);
|
|
1798
|
+
}
|
|
1805
1799
|
[data-theme="rui"] .stroke-gray-800 {
|
|
1806
1800
|
stroke: var(--color-gray-800);
|
|
1807
1801
|
}
|
|
@@ -2885,6 +2879,10 @@
|
|
|
2885
2879
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2886
2880
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2887
2881
|
}
|
|
2882
|
+
[data-theme="rui"] .ring {
|
|
2883
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
2884
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2885
|
+
}
|
|
2888
2886
|
[data-theme="rui"] .ring-0 {
|
|
2889
2887
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
2890
2888
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -3134,12 +3132,28 @@
|
|
|
3134
3132
|
background-color: var(--color-stone-100);
|
|
3135
3133
|
}
|
|
3136
3134
|
}
|
|
3137
|
-
[data-theme="rui"] .group-disabled\/checkbox\:
|
|
3135
|
+
[data-theme="rui"] .group-disabled\/checkbox\:cursor-not-allowed {
|
|
3138
3136
|
[data-theme="rui"] &:is(:where(.group\/checkbox):where([data-rac])[data-disabled] *) {
|
|
3139
|
-
|
|
3137
|
+
cursor: not-allowed;
|
|
3140
3138
|
}
|
|
3141
3139
|
[data-theme="rui"] &:is(:where(.group\/checkbox):where(:not([data-rac])):disabled *) {
|
|
3142
|
-
|
|
3140
|
+
cursor: not-allowed;
|
|
3141
|
+
}
|
|
3142
|
+
}
|
|
3143
|
+
[data-theme="rui"] .group-disabled\/checkbox\:border-disabled\! {
|
|
3144
|
+
[data-theme="rui"] &:is(:where(.group\/checkbox):where([data-rac])[data-disabled] *) {
|
|
3145
|
+
border-color: var(--color-stone-200) !important;
|
|
3146
|
+
}
|
|
3147
|
+
[data-theme="rui"] &:is(:where(.group\/checkbox):where(:not([data-rac])):disabled *) {
|
|
3148
|
+
border-color: var(--color-stone-200) !important;
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
3151
|
+
[data-theme="rui"] .group-disabled\/checkbox\:bg-disabled\! {
|
|
3152
|
+
[data-theme="rui"] &:is(:where(.group\/checkbox):where([data-rac])[data-disabled] *) {
|
|
3153
|
+
background-color: var(--color-stone-200) !important;
|
|
3154
|
+
}
|
|
3155
|
+
[data-theme="rui"] &:is(:where(.group\/checkbox):where(:not([data-rac])):disabled *) {
|
|
3156
|
+
background-color: var(--color-stone-200) !important;
|
|
3143
3157
|
}
|
|
3144
3158
|
}
|
|
3145
3159
|
[data-theme="rui"] .group-disabled\/checkbox\:text-disabled-foreground {
|
|
@@ -3304,28 +3318,6 @@
|
|
|
3304
3318
|
border-width: 0px;
|
|
3305
3319
|
}
|
|
3306
3320
|
}
|
|
3307
|
-
[data-theme="rui"] .group-\[focus-visible\]\/radio\:outline-2 {
|
|
3308
|
-
[data-theme="rui"] &:is(:where(.group\/radio):is(focus-visible) *) {
|
|
3309
|
-
outline-style: var(--tw-outline-style);
|
|
3310
|
-
outline-width: 2px;
|
|
3311
|
-
}
|
|
3312
|
-
}
|
|
3313
|
-
[data-theme="rui"] .group-\[focus-visible\]\/radio\:outline-ring\/70 {
|
|
3314
|
-
[data-theme="rui"] &:is(:where(.group\/radio):is(focus-visible) *) {
|
|
3315
|
-
outline-color: color-mix(in oklab, var(--color-stone-400) 70%, transparent);
|
|
3316
|
-
}
|
|
3317
|
-
}
|
|
3318
|
-
[data-theme="rui"] .group-\[focus-visible\]\/switch\:outline-2 {
|
|
3319
|
-
[data-theme="rui"] &:is(:where(.group\/switch):is(focus-visible) *) {
|
|
3320
|
-
outline-style: var(--tw-outline-style);
|
|
3321
|
-
outline-width: 2px;
|
|
3322
|
-
}
|
|
3323
|
-
}
|
|
3324
|
-
[data-theme="rui"] .group-\[focus-visible\]\/switch\:outline-ring\/70 {
|
|
3325
|
-
[data-theme="rui"] &:is(:where(.group\/switch):is(focus-visible) *) {
|
|
3326
|
-
outline-color: color-mix(in oklab, var(--color-stone-400) 70%, transparent);
|
|
3327
|
-
}
|
|
3328
|
-
}
|
|
3329
3321
|
[data-theme="rui"] .group-\[group\=\"checkbox\"\]\/checkboxgroup\:font-normal {
|
|
3330
3322
|
[data-theme="rui"] &:is(:where(.group\/checkboxgroup):is(group="checkbox") *) {
|
|
3331
3323
|
--tw-font-weight: var(--font-weight-normal);
|
|
@@ -3368,6 +3360,11 @@
|
|
|
3368
3360
|
height: 100%;
|
|
3369
3361
|
}
|
|
3370
3362
|
}
|
|
3363
|
+
[data-theme="rui"] .file\:cursor-pointer {
|
|
3364
|
+
[data-theme="rui"] &::file-selector-button {
|
|
3365
|
+
cursor: pointer;
|
|
3366
|
+
}
|
|
3367
|
+
}
|
|
3371
3368
|
[data-theme="rui"] .file\:border-0 {
|
|
3372
3369
|
[data-theme="rui"] &::file-selector-button {
|
|
3373
3370
|
border-style: var(--tw-border-style);
|
|
@@ -3512,16 +3509,16 @@
|
|
|
3512
3509
|
text-align: right;
|
|
3513
3510
|
}
|
|
3514
3511
|
}
|
|
3515
|
-
[data-theme="rui"] .first-of-type\:border-r {
|
|
3512
|
+
[data-theme="rui"] .first-of-type\:border-r\! {
|
|
3516
3513
|
[data-theme="rui"] &:first-of-type {
|
|
3517
|
-
border-right-style: var(--tw-border-style);
|
|
3518
|
-
border-right-width: 1px;
|
|
3514
|
+
border-right-style: var(--tw-border-style) !important;
|
|
3515
|
+
border-right-width: 1px !important;
|
|
3519
3516
|
}
|
|
3520
3517
|
}
|
|
3521
|
-
[data-theme="rui"] .last-of-type\:border-l {
|
|
3518
|
+
[data-theme="rui"] .last-of-type\:border-l\! {
|
|
3522
3519
|
[data-theme="rui"] &:last-of-type {
|
|
3523
|
-
border-left-style: var(--tw-border-style);
|
|
3524
|
-
border-left-width: 1px;
|
|
3520
|
+
border-left-style: var(--tw-border-style) !important;
|
|
3521
|
+
border-left-width: 1px !important;
|
|
3525
3522
|
}
|
|
3526
3523
|
}
|
|
3527
3524
|
[data-theme="rui"] .checked\:text-blue-700 {
|
|
@@ -3549,6 +3546,14 @@
|
|
|
3549
3546
|
}
|
|
3550
3547
|
}
|
|
3551
3548
|
}
|
|
3549
|
+
[data-theme="rui"] .read-only\:cursor-default {
|
|
3550
|
+
[data-theme="rui"] &:where([data-rac])[data-readonly] {
|
|
3551
|
+
cursor: default;
|
|
3552
|
+
}
|
|
3553
|
+
[data-theme="rui"] &:where(:not([data-rac])):read-only {
|
|
3554
|
+
cursor: default;
|
|
3555
|
+
}
|
|
3556
|
+
}
|
|
3552
3557
|
[data-theme="rui"] .invalid\:focus-within\:border-destructive {
|
|
3553
3558
|
[data-theme="rui"] &:where([data-rac])[data-invalid] {
|
|
3554
3559
|
[data-theme="rui"] &:where([data-rac])[data-focus-within] {
|
|
@@ -3717,16 +3722,6 @@
|
|
|
3717
3722
|
}
|
|
3718
3723
|
}
|
|
3719
3724
|
}
|
|
3720
|
-
[data-theme="rui"] .focus\:outline-0 {
|
|
3721
|
-
[data-theme="rui"] &:where([data-rac])[data-focused] {
|
|
3722
|
-
outline-style: var(--tw-outline-style);
|
|
3723
|
-
outline-width: 0px;
|
|
3724
|
-
}
|
|
3725
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus {
|
|
3726
|
-
outline-style: var(--tw-outline-style);
|
|
3727
|
-
outline-width: 0px;
|
|
3728
|
-
}
|
|
3729
|
-
}
|
|
3730
3725
|
[data-theme="rui"] .group-invalid\/field\:focus\:border-destructive {
|
|
3731
3726
|
[data-theme="rui"] &:is(:where(.group\/field):where([data-rac])[data-invalid] *) {
|
|
3732
3727
|
[data-theme="rui"] &:where([data-rac])[data-focused] {
|
|
@@ -3763,14 +3758,6 @@
|
|
|
3763
3758
|
}
|
|
3764
3759
|
}
|
|
3765
3760
|
}
|
|
3766
|
-
[data-theme="rui"] .focus-visible\:border-ring {
|
|
3767
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
3768
|
-
border-color: var(--color-stone-400);
|
|
3769
|
-
}
|
|
3770
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
3771
|
-
border-color: var(--color-stone-400);
|
|
3772
|
-
}
|
|
3773
|
-
}
|
|
3774
3761
|
[data-theme="rui"] .focus-visible\:ring-0 {
|
|
3775
3762
|
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
3776
3763
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
@@ -3781,24 +3768,6 @@
|
|
|
3781
3768
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3782
3769
|
}
|
|
3783
3770
|
}
|
|
3784
|
-
[data-theme="rui"] .focus-visible\:ring-\[3px\] {
|
|
3785
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
3786
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
3787
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3788
|
-
}
|
|
3789
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
3790
|
-
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
3791
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
3792
|
-
}
|
|
3793
|
-
}
|
|
3794
|
-
[data-theme="rui"] .focus-visible\:ring-ring\/50 {
|
|
3795
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
3796
|
-
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
3797
|
-
}
|
|
3798
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
3799
|
-
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
3800
|
-
}
|
|
3801
|
-
}
|
|
3802
3771
|
[data-theme="rui"] .focus-visible\:outline {
|
|
3803
3772
|
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
3804
3773
|
outline-style: var(--tw-outline-style);
|
|
@@ -3819,32 +3788,6 @@
|
|
|
3819
3788
|
outline-width: 2px;
|
|
3820
3789
|
}
|
|
3821
3790
|
}
|
|
3822
|
-
[data-theme="rui"] .focus-visible\:outline-\[3px\] {
|
|
3823
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
3824
|
-
outline-style: var(--tw-outline-style);
|
|
3825
|
-
outline-width: 3px;
|
|
3826
|
-
}
|
|
3827
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
3828
|
-
outline-style: var(--tw-outline-style);
|
|
3829
|
-
outline-width: 3px;
|
|
3830
|
-
}
|
|
3831
|
-
}
|
|
3832
|
-
[data-theme="rui"] .focus-visible\:outline-ring\/40 {
|
|
3833
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
3834
|
-
outline-color: color-mix(in oklab, var(--color-stone-400) 40%, transparent);
|
|
3835
|
-
}
|
|
3836
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
3837
|
-
outline-color: color-mix(in oklab, var(--color-stone-400) 40%, transparent);
|
|
3838
|
-
}
|
|
3839
|
-
}
|
|
3840
|
-
[data-theme="rui"] .focus-visible\:outline-ring\/70 {
|
|
3841
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
3842
|
-
outline-color: color-mix(in oklab, var(--color-stone-400) 70%, transparent);
|
|
3843
|
-
}
|
|
3844
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
3845
|
-
outline-color: color-mix(in oklab, var(--color-stone-400) 70%, transparent);
|
|
3846
|
-
}
|
|
3847
|
-
}
|
|
3848
3791
|
[data-theme="rui"] .disabled\:pointer-events-none {
|
|
3849
3792
|
[data-theme="rui"] &:where([data-rac])[data-disabled] {
|
|
3850
3793
|
pointer-events: none;
|
|
@@ -4066,17 +4009,6 @@
|
|
|
4066
4009
|
opacity: 50%;
|
|
4067
4010
|
}
|
|
4068
4011
|
}
|
|
4069
|
-
[data-theme="rui"] .data-\[focus-visible\]\:outline-2 {
|
|
4070
|
-
[data-theme="rui"] &[data-focus-visible] {
|
|
4071
|
-
outline-style: var(--tw-outline-style);
|
|
4072
|
-
outline-width: 2px;
|
|
4073
|
-
}
|
|
4074
|
-
}
|
|
4075
|
-
[data-theme="rui"] .data-\[focus-visible\]\:outline-ring\/70 {
|
|
4076
|
-
[data-theme="rui"] &[data-focus-visible] {
|
|
4077
|
-
outline-color: color-mix(in oklab, var(--color-stone-400) 70%, transparent);
|
|
4078
|
-
}
|
|
4079
|
-
}
|
|
4080
4012
|
[data-theme="rui"] .data-invalid\:data-\[focus-within\]\:border-destructive {
|
|
4081
4013
|
[data-theme="rui"] &[data-invalid] {
|
|
4082
4014
|
[data-theme="rui"] &[data-focus-within] {
|
|
@@ -4101,12 +4033,6 @@
|
|
|
4101
4033
|
color: var(--color-stone-950);
|
|
4102
4034
|
}
|
|
4103
4035
|
}
|
|
4104
|
-
[data-theme="rui"] .data-\[focused\]\:outline-none {
|
|
4105
|
-
[data-theme="rui"] &[data-focused] {
|
|
4106
|
-
--tw-outline-style: none;
|
|
4107
|
-
outline-style: none;
|
|
4108
|
-
}
|
|
4109
|
-
}
|
|
4110
4036
|
[data-theme="rui"] .invalid\:data-\[focused\]\:bg-destructive {
|
|
4111
4037
|
[data-theme="rui"] &:where([data-rac])[data-invalid] {
|
|
4112
4038
|
[data-theme="rui"] &[data-focused] {
|
|
@@ -4293,6 +4219,11 @@
|
|
|
4293
4219
|
max-height: 75vh;
|
|
4294
4220
|
}
|
|
4295
4221
|
}
|
|
4222
|
+
[data-theme="rui"] .sm\:max-h-\[min\(640px\,80vh\)\] {
|
|
4223
|
+
@media (width >= 40rem) {
|
|
4224
|
+
max-height: min(640px, 80vh);
|
|
4225
|
+
}
|
|
4226
|
+
}
|
|
4296
4227
|
[data-theme="rui"] .sm\:w-\[32px\] {
|
|
4297
4228
|
@media (width >= 40rem) {
|
|
4298
4229
|
width: 32px;
|
|
@@ -4303,6 +4234,11 @@
|
|
|
4303
4234
|
max-width: calc(var(--spacing) * 100);
|
|
4304
4235
|
}
|
|
4305
4236
|
}
|
|
4237
|
+
[data-theme="rui"] .sm\:max-w-lg {
|
|
4238
|
+
@media (width >= 40rem) {
|
|
4239
|
+
max-width: var(--container-lg);
|
|
4240
|
+
}
|
|
4241
|
+
}
|
|
4306
4242
|
[data-theme="rui"] .sm\:flex-row {
|
|
4307
4243
|
@media (width >= 40rem) {
|
|
4308
4244
|
flex-direction: row;
|
|
@@ -4356,6 +4292,46 @@
|
|
|
4356
4292
|
}
|
|
4357
4293
|
}
|
|
4358
4294
|
}
|
|
4295
|
+
[data-theme="rui"] .placement-left\:mr-1 {
|
|
4296
|
+
[data-theme="rui"] &[data-placement="left"] {
|
|
4297
|
+
margin-right: calc(var(--spacing) * 1);
|
|
4298
|
+
}
|
|
4299
|
+
}
|
|
4300
|
+
[data-theme="rui"] .placement-left\:mr-2 {
|
|
4301
|
+
[data-theme="rui"] &[data-placement="left"] {
|
|
4302
|
+
margin-right: calc(var(--spacing) * 2);
|
|
4303
|
+
}
|
|
4304
|
+
}
|
|
4305
|
+
[data-theme="rui"] .placement-right\:ml-1 {
|
|
4306
|
+
[data-theme="rui"] &[data-placement="right"] {
|
|
4307
|
+
margin-left: calc(var(--spacing) * 1);
|
|
4308
|
+
}
|
|
4309
|
+
}
|
|
4310
|
+
[data-theme="rui"] .placement-right\:ml-2 {
|
|
4311
|
+
[data-theme="rui"] &[data-placement="right"] {
|
|
4312
|
+
margin-left: calc(var(--spacing) * 2);
|
|
4313
|
+
}
|
|
4314
|
+
}
|
|
4315
|
+
[data-theme="rui"] .placement-top\:mb-1 {
|
|
4316
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
4317
|
+
margin-bottom: calc(var(--spacing) * 1);
|
|
4318
|
+
}
|
|
4319
|
+
}
|
|
4320
|
+
[data-theme="rui"] .placement-top\:mb-2 {
|
|
4321
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
4322
|
+
margin-bottom: calc(var(--spacing) * 2);
|
|
4323
|
+
}
|
|
4324
|
+
}
|
|
4325
|
+
[data-theme="rui"] .placement-bottom\:mt-1 {
|
|
4326
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4327
|
+
margin-top: calc(var(--spacing) * 1);
|
|
4328
|
+
}
|
|
4329
|
+
}
|
|
4330
|
+
[data-theme="rui"] .placement-bottom\:mt-2 {
|
|
4331
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4332
|
+
margin-top: calc(var(--spacing) * 2);
|
|
4333
|
+
}
|
|
4334
|
+
}
|
|
4359
4335
|
[data-theme="rui"] .pending\:cursor-not-allowed {
|
|
4360
4336
|
[data-theme="rui"] &[data-pending] {
|
|
4361
4337
|
cursor: not-allowed;
|
|
@@ -4456,11 +4432,43 @@
|
|
|
4456
4432
|
pointer-events: none;
|
|
4457
4433
|
}
|
|
4458
4434
|
}
|
|
4435
|
+
[data-theme="rui"] .\[\&_svg\]\:size-4 {
|
|
4436
|
+
[data-theme="rui"] & svg {
|
|
4437
|
+
width: calc(var(--spacing) * 4);
|
|
4438
|
+
height: calc(var(--spacing) * 4);
|
|
4439
|
+
}
|
|
4440
|
+
}
|
|
4459
4441
|
[data-theme="rui"] .\[\&_svg\]\:shrink-0 {
|
|
4460
4442
|
[data-theme="rui"] & svg {
|
|
4461
4443
|
flex-shrink: 0;
|
|
4462
4444
|
}
|
|
4463
4445
|
}
|
|
4446
|
+
[data-theme="rui"] .\[\&_svg\]\:opacity-60 {
|
|
4447
|
+
[data-theme="rui"] & svg {
|
|
4448
|
+
opacity: 60%;
|
|
4449
|
+
}
|
|
4450
|
+
}
|
|
4451
|
+
[data-theme="rui"] .\[\&_svg\]\:transition-opacity {
|
|
4452
|
+
[data-theme="rui"] & svg {
|
|
4453
|
+
transition-property: opacity;
|
|
4454
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
4455
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
4456
|
+
}
|
|
4457
|
+
}
|
|
4458
|
+
[data-theme="rui"] .hover\:\[\&_svg\]\:opacity-100 {
|
|
4459
|
+
[data-theme="rui"] &:where([data-rac])[data-hovered] {
|
|
4460
|
+
[data-theme="rui"] & svg {
|
|
4461
|
+
opacity: 100%;
|
|
4462
|
+
}
|
|
4463
|
+
}
|
|
4464
|
+
@media (hover: hover) {
|
|
4465
|
+
[data-theme="rui"] &:where(:not([data-rac])):hover {
|
|
4466
|
+
[data-theme="rui"] & svg {
|
|
4467
|
+
opacity: 100%;
|
|
4468
|
+
}
|
|
4469
|
+
}
|
|
4470
|
+
}
|
|
4471
|
+
}
|
|
4464
4472
|
[data-theme="rui"] .data-\[placement\=bottom\]\:\[\&_svg\]\:rotate-180 {
|
|
4465
4473
|
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4466
4474
|
[data-theme="rui"] & svg {
|
|
@@ -4482,6 +4490,11 @@
|
|
|
4482
4490
|
}
|
|
4483
4491
|
}
|
|
4484
4492
|
}
|
|
4493
|
+
[data-theme="rui"] .\[\&_td\]\:border-border {
|
|
4494
|
+
[data-theme="rui"] & td {
|
|
4495
|
+
border-color: var(--color-stone-200);
|
|
4496
|
+
}
|
|
4497
|
+
}
|
|
4485
4498
|
[data-theme="rui"] .\[\&_td\]\:p-2 {
|
|
4486
4499
|
[data-theme="rui"] & td {
|
|
4487
4500
|
padding: calc(var(--spacing) * 2);
|
|
@@ -4497,12 +4510,35 @@
|
|
|
4497
4510
|
top: calc(var(--spacing) * 0);
|
|
4498
4511
|
}
|
|
4499
4512
|
}
|
|
4513
|
+
[data-theme="rui"] .\[\&_th\]\:border-b {
|
|
4514
|
+
[data-theme="rui"] & th {
|
|
4515
|
+
border-bottom-style: var(--tw-border-style);
|
|
4516
|
+
border-bottom-width: 1px;
|
|
4517
|
+
}
|
|
4518
|
+
}
|
|
4519
|
+
[data-theme="rui"] .\[\&_th\]\:border-border {
|
|
4520
|
+
[data-theme="rui"] & th {
|
|
4521
|
+
border-color: var(--color-stone-200);
|
|
4522
|
+
}
|
|
4523
|
+
}
|
|
4524
|
+
[data-theme="rui"] .\[\&_tr\]\:border-none {
|
|
4525
|
+
[data-theme="rui"] & tr {
|
|
4526
|
+
--tw-border-style: none;
|
|
4527
|
+
border-style: none;
|
|
4528
|
+
}
|
|
4529
|
+
}
|
|
4500
4530
|
[data-theme="rui"] .\[\&_tr\:last-child\]\:border-0 {
|
|
4501
4531
|
[data-theme="rui"] & tr:last-child {
|
|
4502
4532
|
border-style: var(--tw-border-style);
|
|
4503
4533
|
border-width: 0px;
|
|
4504
4534
|
}
|
|
4505
4535
|
}
|
|
4536
|
+
[data-theme="rui"] .\[\&_tr\:not\(\:last-child\)_td\]\:border-b {
|
|
4537
|
+
[data-theme="rui"] & tr:not(:last-child) td {
|
|
4538
|
+
border-bottom-style: var(--tw-border-style);
|
|
4539
|
+
border-bottom-width: 1px;
|
|
4540
|
+
}
|
|
4541
|
+
}
|
|
4506
4542
|
[data-theme="rui"] .\[\&\:\:-webkit-search-cancel-button\]\:hidden {
|
|
4507
4543
|
[data-theme="rui"] &::-webkit-search-cancel-button {
|
|
4508
4544
|
display: none;
|
|
@@ -4534,6 +4570,11 @@
|
|
|
4534
4570
|
display: none;
|
|
4535
4571
|
}
|
|
4536
4572
|
}
|
|
4573
|
+
[data-theme="rui"] .\[\&\>button\:last-child\]\:hidden {
|
|
4574
|
+
[data-theme="rui"] &>button:last-child {
|
|
4575
|
+
display: none;
|
|
4576
|
+
}
|
|
4577
|
+
}
|
|
4537
4578
|
[data-theme="rui"] .\[\&\[type\=color\]\]\:ml-0 {
|
|
4538
4579
|
[data-theme="rui"] &[type=color] {
|
|
4539
4580
|
margin-left: calc(var(--spacing) * 0);
|
|
@@ -4555,6 +4596,11 @@
|
|
|
4555
4596
|
padding: calc(var(--spacing) * 0);
|
|
4556
4597
|
}
|
|
4557
4598
|
}
|
|
4599
|
+
[data-theme="rui"] .\[\&\[type\=file\]\]\:cursor-pointer {
|
|
4600
|
+
[data-theme="rui"] &[type=file] {
|
|
4601
|
+
cursor: pointer;
|
|
4602
|
+
}
|
|
4603
|
+
}
|
|
4558
4604
|
[data-theme="rui"] .\[\&\[type\=file\]\]\:border-none {
|
|
4559
4605
|
[data-theme="rui"] &[type=file] {
|
|
4560
4606
|
--tw-border-style: none;
|
|
@@ -4656,45 +4702,53 @@
|
|
|
4656
4702
|
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
4657
4703
|
}
|
|
4658
4704
|
}
|
|
4659
|
-
[data-theme="rui"] .mixin-ring-focus-visible-
|
|
4660
|
-
|
|
4661
|
-
outline-style: none;
|
|
4662
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
4705
|
+
[data-theme="rui"] .mixin-ring-focus-visible-radio {
|
|
4706
|
+
[data-theme="rui"] &:is(:where(.group\/radio):where([data-rac])[data-focus-visible] *) {
|
|
4663
4707
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4664
4708
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4665
4709
|
}
|
|
4666
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
4710
|
+
[data-theme="rui"] &:is(:where(.group\/radio):where(:not([data-rac])):focus-visible *) {
|
|
4667
4711
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4668
4712
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4669
4713
|
}
|
|
4670
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
4714
|
+
[data-theme="rui"] &:is(:where(.group\/radio):where([data-rac])[data-focus-visible] *) {
|
|
4671
4715
|
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
4672
4716
|
}
|
|
4673
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
4717
|
+
[data-theme="rui"] &:is(:where(.group\/radio):where(:not([data-rac])):focus-visible *) {
|
|
4674
4718
|
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
4675
4719
|
}
|
|
4676
4720
|
}
|
|
4677
|
-
[data-theme="rui"] .mixin-ring-focus-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
border-color: var(--color-stone-400);
|
|
4721
|
+
[data-theme="rui"] .mixin-ring-focus-visible-switch {
|
|
4722
|
+
[data-theme="rui"] &:is(:where(.group\/switch):where([data-rac])[data-focus-visible] *) {
|
|
4723
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4724
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4682
4725
|
}
|
|
4683
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-
|
|
4684
|
-
|
|
4726
|
+
[data-theme="rui"] &:is(:where(.group\/switch):where(:not([data-rac])):focus-visible *) {
|
|
4727
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4728
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4729
|
+
}
|
|
4730
|
+
[data-theme="rui"] &:is(:where(.group\/switch):where([data-rac])[data-focus-visible] *) {
|
|
4731
|
+
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
4685
4732
|
}
|
|
4686
|
-
[data-theme="rui"] &:where([data-rac])
|
|
4733
|
+
[data-theme="rui"] &:is(:where(.group\/switch):where(:not([data-rac])):focus-visible *) {
|
|
4734
|
+
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
4735
|
+
}
|
|
4736
|
+
}
|
|
4737
|
+
[data-theme="rui"] .mixin-ring-focus-visible-borderless {
|
|
4738
|
+
--tw-outline-style: none;
|
|
4739
|
+
outline-style: none;
|
|
4740
|
+
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
4687
4741
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4688
4742
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4689
4743
|
}
|
|
4690
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-
|
|
4744
|
+
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
4691
4745
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
4692
4746
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4693
4747
|
}
|
|
4694
|
-
[data-theme="rui"] &:where([data-rac])[data-focus-
|
|
4748
|
+
[data-theme="rui"] &:where([data-rac])[data-focus-visible] {
|
|
4695
4749
|
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
4696
4750
|
}
|
|
4697
|
-
[data-theme="rui"] &:where(:not([data-rac])):focus-
|
|
4751
|
+
[data-theme="rui"] &:where(:not([data-rac])):focus-visible {
|
|
4698
4752
|
--tw-ring-color: color-mix(in oklab, var(--color-stone-400) 50%, transparent);
|
|
4699
4753
|
}
|
|
4700
4754
|
}
|
|
@@ -4740,10 +4794,10 @@
|
|
|
4740
4794
|
font-optical-sizing: auto;
|
|
4741
4795
|
font-style: normal;
|
|
4742
4796
|
background-color: var(--color-white);
|
|
4743
|
-
font-family:
|
|
4797
|
+
font-family: Inter, system-ui, sans-serif;
|
|
4744
4798
|
color: var(--color-stone-950);
|
|
4745
4799
|
@supports (font-variation-settings:normal) {
|
|
4746
|
-
font-family: InterVariable, system-ui, sans-serif;
|
|
4800
|
+
font-family: InterVariable, Inter, system-ui, sans-serif;
|
|
4747
4801
|
}
|
|
4748
4802
|
}
|
|
4749
4803
|
}
|
|
@@ -4759,6 +4813,16 @@
|
|
|
4759
4813
|
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
|
|
4760
4814
|
}
|
|
4761
4815
|
}
|
|
4816
|
+
@property --tw-border-spacing-x {
|
|
4817
|
+
syntax: "<length>";
|
|
4818
|
+
inherits: false;
|
|
4819
|
+
initial-value: 0;
|
|
4820
|
+
}
|
|
4821
|
+
@property --tw-border-spacing-y {
|
|
4822
|
+
syntax: "<length>";
|
|
4823
|
+
inherits: false;
|
|
4824
|
+
initial-value: 0;
|
|
4825
|
+
}
|
|
4762
4826
|
@property --tw-translate-x {
|
|
4763
4827
|
syntax: "*";
|
|
4764
4828
|
inherits: false;
|