From a7db41c5ba209e27edc7550754104474ab52ebb4 Mon Sep 17 00:00:00 2001 From: David Luzar <5153846+dwelle@users.noreply.github.com> Date: Thu, 2 Nov 2023 16:06:26 +0100 Subject: [PATCH] fix: align input `:hover`/`:focus` with spec (#7225) --- src/css/styles.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/css/styles.scss b/src/css/styles.scss index d3553871..7e3eea02 100644 --- a/src/css/styles.scss +++ b/src/css/styles.scss @@ -195,7 +195,7 @@ .buttonList label:focus-within, input:focus-visible { outline: transparent; - box-shadow: 0 0 0 2px var(--focus-highlight-color); + box-shadow: 0 0 0 1px var(--color-brand-hover); } .buttonList { @@ -537,13 +537,13 @@ &:not(:focus) { &:hover { - background-color: var(--input-hover-bg-color); + border-color: var(--color-brand-hover); } } &:focus { outline: none; - box-shadow: 0 0 0 2px var(--focus-highlight-color); + border-color: var(--color-brand-hover); } }