@acorex/styles 21.0.1-next.87 → 21.0.1-next.89
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/package.json +1 -1
- package/themes/default.css +91 -6
package/package.json
CHANGED
package/themes/default.css
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
|
|
4
4
|
@custom-variant dark (&:where(.ax-dark, .ax-dark *));
|
|
5
5
|
|
|
6
|
+
input:-webkit-autofill,
|
|
7
|
+
input:-webkit-autofill:hover,
|
|
8
|
+
input:-webkit-autofill:focus,
|
|
9
|
+
textarea:-webkit-autofill,
|
|
10
|
+
select:-webkit-autofill {
|
|
11
|
+
-webkit-box-shadow: 0 0 0 1000px transparent inset !important;
|
|
12
|
+
-webkit-text-fill-color: inherit !important;
|
|
13
|
+
transition: background-color 9999s ease-in-out 0s;
|
|
14
|
+
}
|
|
15
|
+
|
|
6
16
|
@layer base {
|
|
7
17
|
* {
|
|
8
18
|
border-color: var(--color-border-default);
|
|
@@ -3073,7 +3083,7 @@ html.ax-dark {
|
|
|
3073
3083
|
}
|
|
3074
3084
|
}
|
|
3075
3085
|
&:not(.ax-state-disabled, .ax-state-loading, .ax-state-selected):active {
|
|
3076
|
-
@apply bg-(--ax-comp-bg-darker,var(--color-light)) text-(--ax-comp-text-darker,var(--color-on-light)) ring-
|
|
3086
|
+
@apply bg-(--ax-comp-bg-darker,var(--color-light)) text-(--ax-comp-text-darker,var(--color-on-light)) ring-1 ring-(--ax-comp-bg-dark) ring-offset-2 dark:bg-(--ax-comp-bg-darker,var(--color-dark)) dark:text-(--ax-comp-text-darker,var(--color-on-dark));
|
|
3077
3087
|
}
|
|
3078
3088
|
}
|
|
3079
3089
|
|
|
@@ -3238,18 +3248,93 @@ html.ax-dark {
|
|
|
3238
3248
|
@utility tabs-fit {
|
|
3239
3249
|
width: 100%;
|
|
3240
3250
|
}
|
|
3251
|
+
|
|
3241
3252
|
@utility ax-xs {
|
|
3242
|
-
|
|
3253
|
+
/* Spacing */
|
|
3254
|
+
--spacing: 0.125rem;
|
|
3255
|
+
|
|
3256
|
+
/* Typography */
|
|
3257
|
+
--text-xs: 0.625rem;
|
|
3258
|
+
--text-sm: 0.6875rem;
|
|
3259
|
+
--text-base: 0.75rem;
|
|
3260
|
+
--text-lg: 0.875rem;
|
|
3261
|
+
--text-xl: 1rem;
|
|
3262
|
+
|
|
3263
|
+
/* Line Heights */
|
|
3264
|
+
--leading-3: 0.75rem;
|
|
3265
|
+
--leading-4: 0.875rem;
|
|
3266
|
+
--leading-5: 1rem;
|
|
3267
|
+
--leading-6: 1.25rem;
|
|
3243
3268
|
}
|
|
3269
|
+
|
|
3244
3270
|
@utility ax-sm {
|
|
3245
|
-
|
|
3271
|
+
/* Spacing */
|
|
3272
|
+
--spacing: 0.1875rem;
|
|
3273
|
+
|
|
3274
|
+
/* Typography */
|
|
3275
|
+
--text-xs: 0.6875rem;
|
|
3276
|
+
--text-sm: 0.75rem;
|
|
3277
|
+
--text-base: 0.875rem;
|
|
3278
|
+
--text-lg: 1rem;
|
|
3279
|
+
--text-xl: 1.125rem;
|
|
3280
|
+
|
|
3281
|
+
/* Line Heights */
|
|
3282
|
+
--leading-3: 0.875rem;
|
|
3283
|
+
--leading-4: 1rem;
|
|
3284
|
+
--leading-5: 1.125rem;
|
|
3285
|
+
--leading-6: 1.375rem;
|
|
3246
3286
|
}
|
|
3287
|
+
|
|
3247
3288
|
@utility ax-md {
|
|
3248
|
-
|
|
3289
|
+
/* Tailwind Default Scale */
|
|
3290
|
+
--spacing: 0.25rem;
|
|
3291
|
+
|
|
3292
|
+
/* Typography */
|
|
3293
|
+
--text-xs: 0.75rem;
|
|
3294
|
+
--text-sm: 0.875rem;
|
|
3295
|
+
--text-base: 1rem;
|
|
3296
|
+
--text-lg: 1.125rem;
|
|
3297
|
+
--text-xl: 1.25rem;
|
|
3298
|
+
|
|
3299
|
+
/* Line Heights */
|
|
3300
|
+
--leading-3: 0.75rem;
|
|
3301
|
+
--leading-4: 1rem;
|
|
3302
|
+
--leading-5: 1.25rem;
|
|
3303
|
+
--leading-6: 1.5rem;
|
|
3249
3304
|
}
|
|
3305
|
+
|
|
3250
3306
|
@utility ax-lg {
|
|
3251
|
-
|
|
3307
|
+
/* Spacing */
|
|
3308
|
+
--spacing: 0.3125rem;
|
|
3309
|
+
|
|
3310
|
+
/* Typography */
|
|
3311
|
+
--text-xs: 0.8125rem;
|
|
3312
|
+
--text-sm: 0.9375rem;
|
|
3313
|
+
--text-base: 1.0625rem;
|
|
3314
|
+
--text-lg: 1.25rem;
|
|
3315
|
+
--text-xl: 1.375rem;
|
|
3316
|
+
|
|
3317
|
+
/* Line Heights */
|
|
3318
|
+
--leading-3: 1rem;
|
|
3319
|
+
--leading-4: 1.125rem;
|
|
3320
|
+
--leading-5: 1.375rem;
|
|
3321
|
+
--leading-6: 1.625rem;
|
|
3252
3322
|
}
|
|
3323
|
+
|
|
3253
3324
|
@utility ax-xl {
|
|
3254
|
-
|
|
3325
|
+
/* Spacing */
|
|
3326
|
+
--spacing: 0.375rem;
|
|
3327
|
+
|
|
3328
|
+
/* Typography */
|
|
3329
|
+
--text-xs: 0.875rem;
|
|
3330
|
+
--text-sm: 1rem;
|
|
3331
|
+
--text-base: 1.125rem;
|
|
3332
|
+
--text-lg: 1.375rem;
|
|
3333
|
+
--text-xl: 1.5rem;
|
|
3334
|
+
|
|
3335
|
+
/* Line Heights */
|
|
3336
|
+
--leading-3: 1.125rem;
|
|
3337
|
+
--leading-4: 1.25rem;
|
|
3338
|
+
--leading-5: 1.5rem;
|
|
3339
|
+
--leading-6: 1.75rem;
|
|
3255
3340
|
}
|