Fix z-indexes as it relates to thickbox, the theme modal, and admin menu.
props ryelle, shaunandrews. fixes #26442. Built from https://develop.svn.wordpress.org/trunk@26701 git-svn-id: http://core.svn.wordpress.org/trunk@26591 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8de0c10bb9
commit
1a34e361ac
|
@ -1913,7 +1913,7 @@ div.wp-menu-image:before {
|
|||
|
||||
.sticky-menu #adminmenuwrap {
|
||||
position: fixed;
|
||||
z-index: 9999; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
|
||||
z-index: 99; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
|
||||
}
|
||||
|
||||
/* A new arrow */
|
||||
|
@ -7129,7 +7129,7 @@ body.folded .theme-overlay .theme-wrap {
|
|||
right: 0;
|
||||
padding: 70px 20px 20px;
|
||||
border: none;
|
||||
z-index: 999999999;
|
||||
z-index: 500; /* should overlap #wpadminbar, which is 500 on mobile. */
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1913,7 +1913,7 @@ div.wp-menu-image:before {
|
|||
|
||||
.sticky-menu #adminmenuwrap {
|
||||
position: fixed;
|
||||
z-index: 9999; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
|
||||
z-index: 99; /* Match the z-index of .wp-submenu to ensure flyout menus don't appear underneath main column elements */
|
||||
}
|
||||
|
||||
/* A new arrow */
|
||||
|
@ -7129,7 +7129,7 @@ body.folded .theme-overlay .theme-wrap {
|
|||
left: 0;
|
||||
padding: 70px 20px 20px;
|
||||
border: none;
|
||||
z-index: 999999999;
|
||||
z-index: 500; /* should overlap #wpadminbar, which is 500 on mobile. */
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -23,7 +23,7 @@
|
|||
/* ----------------------------------------------------------------------------------------------------------------*/
|
||||
#TB_overlay {
|
||||
position: fixed;
|
||||
z-index:100;
|
||||
z-index:510; /* should overlap theme modal, which is 500 on mobile. */
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
height:100%;
|
||||
|
@ -47,7 +47,7 @@
|
|||
#TB_window {
|
||||
position: fixed;
|
||||
background: #ffffff;
|
||||
z-index: 102;
|
||||
z-index: 510; /* should overlap theme modal, which is 500 on mobile. */
|
||||
color:#000000;
|
||||
visibility: hidden;
|
||||
text-align:left;
|
||||
|
|
Loading…
Reference in New Issue