Skip to content

Commit

Permalink
Fix active and focus frame
Browse files Browse the repository at this point in the history
Server has the same rules but excludes with a :not() selector the vue
component

Signed-off-by: Carl Schwan <carl@carlschwan.eu>
  • Loading branch information
CarlSchwan committed Sep 8, 2022
1 parent cce627c commit 86a961e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/NcInputField/NcInputField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,9 @@ export default {
-webkit-appearance: textfield !important;
-moz-appearance: textfield !important;
&:hover:not([disabled]) {
&:active:not([disabled]),
&:hover:not([disabled]),
&:focus:not([disabled]) {
border-color: var(--color-primary-element);
}
Expand Down

0 comments on commit 86a961e

Please sign in to comment.