Respect the special case of having only one theme.
If there is only one theme, the Pointer won't show and the overlay is active by default. In that case the overlay covered submenu flyouts, after [33068]. Without the Pointer active, there is no need to bump the `z-index`, so it can remain at 10. Fixes #31544. Built from https://develop.svn.wordpress.org/trunk@33111 git-svn-id: http://core.svn.wordpress.org/trunk@33082 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
92fe9c9649
commit
ee9cb55e1a
|
@ -838,6 +838,7 @@ body.folded .theme-overlay .theme-wrap {
|
|||
left: auto;
|
||||
top: auto;
|
||||
bottom: auto;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.single-theme .theme-overlay .theme-about {
|
||||
|
|
|
@ -838,6 +838,7 @@ body.folded .theme-overlay .theme-wrap {
|
|||
right: auto;
|
||||
top: auto;
|
||||
bottom: auto;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.single-theme .theme-overlay .theme-about {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-beta1-33110';
|
||||
$wp_version = '4.3-beta1-33111';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue