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-input-border-hover);
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-focus);
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-forms",
3
3
  "type": "module",
4
- "version": "6.1.5",
4
+ "version": "6.1.6",
5
5
  "main": "nuxt.config.ts",
6
6
  "scripts": {
7
7
  "clean": "rm -rf .nuxt && rm -rf .output && rm -rf .playground/.nuxt && rm -rf .playground/.output",