From da4c6ab3260f1794ca9ae99ef887c87929e9180a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Sat, 21 Jan 2017 19:33:43 +0100 Subject: [PATCH] Fixed multiselect focus MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- core/css/inputs.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/css/inputs.scss b/core/css/inputs.scss index 1dc43d2e36..5c64bd4662 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -32,14 +32,13 @@ textarea, border-radius: 3px; &:not(:disabled):not(.primary) { &:not(#quota):hover, - &:focus { + &:focus, + &.active { border-color: #0082c9; outline: none; } &:active { outline: none; - } - &:active { background-color: #fff; } } @@ -116,7 +115,8 @@ input[type='reset'] { box-sizing: border-box; background-color: #fafafa; box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.15); - &:active { + &:active, + &.active { box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.15); } }