From 24b68b615295a5374781314e7c8065761c76ce5a Mon Sep 17 00:00:00 2001 From: Matt Thomas Date: Wed, 13 Nov 2013 15:35:35 +0000 Subject: [PATCH] Reinstating this fix for the issue described in #18868, wherein some versions of Chrome open the About/"W" dropdown menu inadvertantly, like when clicking a select element. Fix was removed in the initial MP6 commit r26072, this brings it back. See #25858; props azaozz. git-svn-id: https://develop.svn.wordpress.org/trunk@26132 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/css/admin-bar.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/wp-includes/css/admin-bar.css b/src/wp-includes/css/admin-bar.css index 687ede01f6..d03f895b6a 100644 --- a/src/wp-includes/css/admin-bar.css +++ b/src/wp-includes/css/admin-bar.css @@ -100,6 +100,13 @@ margin-right: 0; } +/* Prevent a Chrome bug that inadvertantly activates + :hover states on an element that touches the extreme + top left corner of the viewport. See #18868 */ +#wpadminbar .quicklinks { + border-left: 1px solid transparent; +} + #wpadminbar .quicklinks ul { text-align: left; }