@acorex/styles 22.1.0-next.2 → 22.1.0-next.3
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.
|
@@ -50,10 +50,6 @@
|
|
|
50
50
|
width: 100%;
|
|
51
51
|
cursor: pointer;
|
|
52
52
|
padding-inline: var(--ax-comp-action-item-padding-inline, 0.875rem);
|
|
53
|
-
&.ax-state-disabled {
|
|
54
|
-
cursor: not-allowed;
|
|
55
|
-
opacity: 0.5;
|
|
56
|
-
}
|
|
57
53
|
&:hover:not(.ax-state-disabled, .ax-state-selected) {
|
|
58
54
|
background-color: rgba(var(--ax-sys-color-surface));
|
|
59
55
|
ax-prefix,
|
package/components/_list.css
CHANGED
|
@@ -114,10 +114,6 @@
|
|
|
114
114
|
background-color: rgba(var(--ax-sys-color-primary-500), var(--tw-bg-opacity)) !important;
|
|
115
115
|
color: rgba(var(--ax-sys-color-on-primary), var(--tw-text-opacity)) !important;
|
|
116
116
|
}
|
|
117
|
-
&.ax-state-disabled {
|
|
118
|
-
cursor: not-allowed;
|
|
119
|
-
opacity: 0.5;
|
|
120
|
-
}
|
|
121
117
|
&:focus-visible,
|
|
122
118
|
&:hover {
|
|
123
119
|
background-color: rgba(var(--ax-sys-color-surface));
|
package/package.json
CHANGED
package/themes/default.css
CHANGED
|
@@ -3336,7 +3336,7 @@ html.ax-dark {
|
|
|
3336
3336
|
}
|
|
3337
3337
|
|
|
3338
3338
|
@utility ax-state-readonly {
|
|
3339
|
-
@apply cursor-text
|
|
3339
|
+
@apply cursor-text *:cursor-text;
|
|
3340
3340
|
}
|
|
3341
3341
|
|
|
3342
3342
|
@utility ax-focus-ring {
|
|
@@ -3351,15 +3351,13 @@ html.ax-dark {
|
|
|
3351
3351
|
* Always compose Contrast control border so High/Enhanced stay visible. */
|
|
3352
3352
|
@utility ax-effect-control {
|
|
3353
3353
|
box-shadow:
|
|
3354
|
-
var(--ax-sys-contrast-inner-border-control), var(--ax-sys-highlight-control),
|
|
3355
|
-
var(--ax-sys-effect-control-rest);
|
|
3354
|
+
var(--ax-sys-contrast-inner-border-control), var(--ax-sys-highlight-control), var(--ax-sys-effect-control-rest);
|
|
3356
3355
|
background-image: var(--ax-sys-gradient-control-rest);
|
|
3357
3356
|
}
|
|
3358
3357
|
|
|
3359
3358
|
@utility ax-effect-control-hover {
|
|
3360
3359
|
box-shadow:
|
|
3361
|
-
var(--ax-sys-contrast-inner-border-control), var(--ax-sys-highlight-control),
|
|
3362
|
-
var(--ax-sys-effect-control-hover);
|
|
3360
|
+
var(--ax-sys-contrast-inner-border-control), var(--ax-sys-highlight-control), var(--ax-sys-effect-control-hover);
|
|
3363
3361
|
background-image: var(--ax-sys-gradient-control-hover);
|
|
3364
3362
|
}
|
|
3365
3363
|
|