srcdev-nuxt-forms 6.1.5 → 6.1.6
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.
|
@@ -136,24 +136,24 @@ const { elementClasses } = useStyleClassPassthrough(props.styleClassPassthrough)
|
|
|
136
136
|
**/
|
|
137
137
|
&:hover {
|
|
138
138
|
background-color: var(--theme-button-surface-hover);
|
|
139
|
-
border-color: var(--theme-
|
|
139
|
+
border-color: var(--theme-button-border-hover);
|
|
140
140
|
color: var(--theme-button-text-hover);
|
|
141
141
|
outline-color: var(--theme-button-outline-hover);
|
|
142
142
|
outline-offset: var(--form-element-outline-offset-focus);
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
&:hover {
|
|
146
|
-
cursor: pointer;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
145
|
&:focus-visible {
|
|
150
146
|
background-color: var(--theme-button-surface-hover);
|
|
151
|
-
border-color: var(--theme-button-border-
|
|
147
|
+
border-color: var(--theme-button-border-hover);
|
|
152
148
|
color: var(--theme-button-text-focus);
|
|
153
149
|
outline-color: var(--theme-button-outline-focus);
|
|
154
150
|
outline-offset: var(--form-element-outline-offset-focus);
|
|
155
151
|
}
|
|
156
152
|
|
|
153
|
+
&:hover {
|
|
154
|
+
cursor: pointer;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
157
|
&[readonly] {
|
|
158
158
|
opacity: 0.5;
|
|
159
159
|
&:hover,
|
package/package.json
CHANGED