From 7c04864ef5a703ba30a4adc8f45aaf1263c86e3d Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Sat, 8 Jun 2019 16:06:19 +0000 Subject: [PATCH] Administration: Improve the Screen Options and Help buttons focus style after [45501]. Amends [45501]. See #46749. git-svn-id: https://develop.svn.wordpress.org/trunk@45502 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/common.css | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css index 8df8dfc9f8..23daa67e9b 100644 --- a/src/wp-admin/css/common.css +++ b/src/wp-admin/css/common.css @@ -1693,14 +1693,15 @@ form.upgrade .hint { #screen-meta-links .show-settings { border: 1px solid #ddd; border-top: none; + border-bottom-color: #ccc; + height: auto; margin-bottom: 0; padding: 3px 6px 3px 16px; - background: none; + background: #fff; border-radius: 0; color: #72777c; line-height: 1.7; - background: #fff; - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); + box-shadow: none; } #screen-meta-links .show-settings:hover, @@ -1709,8 +1710,12 @@ form.upgrade .hint { color: #32373c; } +#screen-meta-links .show-settings:focus { + border-color: #5b9dd9; + box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); +} + #screen-meta-links .show-settings:active { - box-shadow: none; transform: none; }