@acorex/styles 21.0.1-next.86 → 21.0.1-next.88

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/themes/default.css +11 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "21.0.1-next.86",
3
+ "version": "21.0.1-next.88",
4
4
  "main": "index.css",
5
5
  "author": "Ali Safari",
6
6
  "license": "ISC",
@@ -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-2 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));
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