From b7097ef280a0e2fdb4b90f1baccaa9d8c3da2387 Mon Sep 17 00:00:00 2001 From: Chris Lawton <chris.lawton@torchbox.com> Date: Tue, 6 Mar 2018 16:26:32 +0000 Subject: [PATCH] adding focus states to buttons --- opentech/static_src/src/sass/apply/components/_button.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/opentech/static_src/src/sass/apply/components/_button.scss b/opentech/static_src/src/sass/apply/components/_button.scss index 0a7261b38..7d8eb3e7e 100644 --- a/opentech/static_src/src/sass/apply/components/_button.scss +++ b/opentech/static_src/src/sass/apply/components/_button.scss @@ -37,6 +37,7 @@ color: $color--black; border: 1px solid $color--black; + &:focus, &:hover { color: $color--white; } @@ -48,6 +49,7 @@ color: $color--light-blue; border: 1px solid $color--mid-grey; + &:focus, &:hover { color: $color--white; } @@ -65,6 +67,7 @@ border: 1px solid $color--light-mid-grey; transition: none; + &:focus, &:active, &:hover { background: url('./../../images/filters.svg') $color--white no-repeat 93% center; -- GitLab