From c051be250810e776fbb78823f16163983fa0828b Mon Sep 17 00:00:00 2001 From: Guillaume Demesy Date: Wed, 27 Apr 2016 22:20:08 +0200 Subject: [PATCH] Issue #1006 - fixed focus button --- webcompat/static/css/development/components/button.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/webcompat/static/css/development/components/button.css b/webcompat/static/css/development/components/button.css index fb5c6b9da..021875216 100644 --- a/webcompat/static/css/development/components/button.css +++ b/webcompat/static/css/development/components/button.css @@ -60,7 +60,8 @@ border: solid 4px var(--Button-defaultColor); } - .wc-Button--default:hover:not(.is-disabled) { + .wc-Button--default:hover:not(.is-disabled), + .wc-Button--default:focus:not(.is-disabled) { background-color: var(--Button-defaultColorHover); } @@ -68,7 +69,8 @@ border: solid 4px var(--Button-actionColor); } - .wc-Button--action:hover:not(.is-disabled) { + .wc-Button--action:hover:not(.is-disabled), + .wc-Button--action:focus:not(.is-disabled) { background-color: var(--Button-actionColorHover); }