Fix flickering of the admin menu on over-scrolling.

Props joemcgill, mindrun. Fixes #30900.

git-svn-id: https://develop.svn.wordpress.org/trunk@32089 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-04-08 21:38:16 +00:00
parent e9196a321a
commit 543a9d052e
1 changed files with 3 additions and 4 deletions

View File

@ -7,10 +7,10 @@
} }
#adminmenuback { #adminmenuback {
position: absolute; position: fixed;
top: 0; top: 0;
bottom: 0; bottom: -120px;
z-index: -1; z-index: 9980; /* just beneath #adminmenuwrap */
} }
#adminmenu { #adminmenu {
@ -933,4 +933,3 @@ li#wp-admin-bar-menu-toggle {
top: 46px; top: 46px;
} }
} }