From 86a961e457e868cd7529c35d3bd305131d4d4f41 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Thu, 8 Sep 2022 17:19:37 +0200 Subject: [PATCH] Fix active and focus frame Server has the same rules but excludes with a :not() selector the vue component Signed-off-by: Carl Schwan --- src/components/NcInputField/NcInputField.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/NcInputField/NcInputField.vue b/src/components/NcInputField/NcInputField.vue index 6ea74cd6a1..f0549a20f0 100644 --- a/src/components/NcInputField/NcInputField.vue +++ b/src/components/NcInputField/NcInputField.vue @@ -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); }