Skip to content

Commit

Permalink
fix(VTextField): Use "appearance: none" instead of "opacity: 0"
Browse files Browse the repository at this point in the history
By making the field invisible, a11y software, and
password managers, might consider it hidden, and
fail to allow autofill.

See keepassxreboot/keepassxc-browser#2311
  • Loading branch information
segevfiner committed Aug 18, 2024
1 parent a0e7c3b commit 778496c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VTextField/VTextField.sass
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
.v-text-field
input
color: inherit
opacity: 0
appearance: none
flex: $text-field-input-flex
transition: $text-field-input-transition
min-width: 0
Expand Down

0 comments on commit 778496c

Please sign in to comment.