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
This commit is contained in:
Matt Thomas 2013-11-13 15:35:35 +00:00
parent 1dee61d8b6
commit 24b68b6152

View File

@ -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;
}