From 60441ca1fc402e663a8ea2d6032c624e98be62a0 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Mon, 22 Sep 2014 12:23:01 +0100 Subject: [PATCH] Issue #2250121 by mgifford, er.pushpinderrana, emma.maria, scresante, LewisNyman: Fixed Check for proper use of CSS Outline in Seven. --- core/themes/seven/css/components/buttons.theme.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/core/themes/seven/css/components/buttons.theme.css b/core/themes/seven/css/components/buttons.theme.css index 77106e3baa9b..e5f0e1d4a9a7 100644 --- a/core/themes/seven/css/components/buttons.theme.css +++ b/core/themes/seven/css/components/buttons.theme.css @@ -37,14 +37,15 @@ text-decoration: none; outline: none; } +.button:hover { + box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125); +} .button:focus { border: 1px solid #3AB2FF; box-shadow: 0 0 0.5em 0.1em hsla(203, 100%, 60%, 0.7); } -.button:hover { - box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125); -} .button:active { + border: 1px solid #a6a6a6; background-color: #dfdfd9; background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df); background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df); -- GitLab