Prevent submenu flyouts from appearing below elements in the main column. Fixes #26280.

Built from https://develop.svn.wordpress.org/trunk@26442


git-svn-id: http://core.svn.wordpress.org/trunk@26340 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Matt Thomas 2013-11-27 23:02:09 +00:00
parent eb09a427f6
commit 3a191feb1e
4 changed files with 4 additions and 4 deletions

View File

@ -1907,7 +1907,7 @@ div.wp-menu-image:before {
position: fixed;
top: 32px;
right: 0;
z-index: 2; /* needs to be above .sticky-menu #wpwrap */
z-index: 9999; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
}
/* A new arrow */

File diff suppressed because one or more lines are too long

View File

@ -1907,7 +1907,7 @@ div.wp-menu-image:before {
position: fixed;
top: 32px;
left: 0;
z-index: 2; /* needs to be above .sticky-menu #wpwrap */
z-index: 9999; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
}
/* A new arrow */

File diff suppressed because one or more lines are too long