@acorex/styles 21.0.3-next.22 → 21.0.3-next.23
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.
|
@@ -34,15 +34,28 @@
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
&:has(.ax-general-button-control, .ax-general-button-icon) {
|
|
37
|
-
@apply pe-
|
|
37
|
+
@apply pe-2;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&:has(ax-prefix ax-button) {
|
|
41
|
+
@apply ps-0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&:has(ax-suffix ax-button) {
|
|
45
|
+
@apply pe-0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
ax-prefix > ax-button {
|
|
49
|
+
@apply rounded-e-none!;
|
|
38
50
|
}
|
|
39
51
|
|
|
40
|
-
|
|
41
|
-
@apply
|
|
52
|
+
ax-suffix > ax-button {
|
|
53
|
+
@apply rounded-s-none!;
|
|
42
54
|
}
|
|
43
55
|
|
|
44
|
-
|
|
45
|
-
|
|
56
|
+
ax-suffix > ax-icon,
|
|
57
|
+
ax-prefix > ax-icon {
|
|
58
|
+
@apply text-muted;
|
|
46
59
|
}
|
|
47
60
|
|
|
48
61
|
ax-prefix,
|
package/package.json
CHANGED
package/themes/default.css
CHANGED
|
@@ -73,7 +73,8 @@ html.ax-dark {
|
|
|
73
73
|
--ax-sys-icon-width: inherit;
|
|
74
74
|
--ax-sys-icon-height: inherit;
|
|
75
75
|
--ax-sys-body-font-size: 1rem;
|
|
76
|
-
--ax-sys-border-radius: 0.5rem;
|
|
76
|
+
--ax-sys-border-radius-base: 0.5rem;
|
|
77
|
+
--ax-sys-border-radius: var(--ax-sys-border-radius-base);
|
|
77
78
|
--ax-sys-transition-duration: 150ms;
|
|
78
79
|
--ax-sys-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
79
80
|
|
|
@@ -3404,6 +3405,7 @@ html.ax-dark {
|
|
|
3404
3405
|
@utility ax-xs {
|
|
3405
3406
|
/* Spacing */
|
|
3406
3407
|
--spacing: 0.125rem;
|
|
3408
|
+
--ax-sys-border-radius: calc(var(--ax-sys-border-radius-base) * 0.5);
|
|
3407
3409
|
|
|
3408
3410
|
/* Typography */
|
|
3409
3411
|
--text-xs: 0.625rem;
|
|
@@ -3422,6 +3424,7 @@ html.ax-dark {
|
|
|
3422
3424
|
@utility ax-sm {
|
|
3423
3425
|
/* Spacing */
|
|
3424
3426
|
--spacing: 0.1875rem;
|
|
3427
|
+
--ax-sys-border-radius: calc(var(--ax-sys-border-radius-base) * 0.75);
|
|
3425
3428
|
|
|
3426
3429
|
/* Typography */
|
|
3427
3430
|
--text-xs: 0.6875rem;
|
|
@@ -3440,6 +3443,7 @@ html.ax-dark {
|
|
|
3440
3443
|
@utility ax-md {
|
|
3441
3444
|
/* Tailwind Default Scale */
|
|
3442
3445
|
--spacing: 0.25rem;
|
|
3446
|
+
--ax-sys-border-radius: var(--ax-sys-border-radius-base);
|
|
3443
3447
|
|
|
3444
3448
|
/* Typography */
|
|
3445
3449
|
--text-xs: 0.75rem;
|
|
@@ -3458,6 +3462,7 @@ html.ax-dark {
|
|
|
3458
3462
|
@utility ax-lg {
|
|
3459
3463
|
/* Spacing */
|
|
3460
3464
|
--spacing: 0.3125rem;
|
|
3465
|
+
--ax-sys-border-radius: calc(var(--ax-sys-border-radius-base) * 1.25);
|
|
3461
3466
|
|
|
3462
3467
|
/* Typography */
|
|
3463
3468
|
--text-xs: 0.8125rem;
|
|
@@ -3476,6 +3481,7 @@ html.ax-dark {
|
|
|
3476
3481
|
@utility ax-xl {
|
|
3477
3482
|
/* Spacing */
|
|
3478
3483
|
--spacing: 0.375rem;
|
|
3484
|
+
--ax-sys-border-radius: calc(var(--ax-sys-border-radius-base) * 1.5);
|
|
3479
3485
|
|
|
3480
3486
|
/* Typography */
|
|
3481
3487
|
--text-xs: 0.875rem;
|