Bundled Themes: Twenty Twenty submenu items disappear underneath the Cover block.
Fixes the submenu issue by raising the z-index value of the site-header from 1 to 2. Props kjellr, JavierCasares. Fixes #49322. Built from https://develop.svn.wordpress.org/trunk@47609 git-svn-id: http://core.svn.wordpress.org/trunk@47384 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
116a9b3039
commit
29abe5c726
|
@ -5598,7 +5598,7 @@ a.to-the-top > * {
|
||||||
/* Site Header --------------------------- */
|
/* Site Header --------------------------- */
|
||||||
|
|
||||||
#site-header {
|
#site-header {
|
||||||
z-index: 1;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-inner {
|
.header-inner {
|
||||||
|
|
|
@ -5660,7 +5660,7 @@ a.to-the-top > * {
|
||||||
/* Site Header --------------------------- */
|
/* Site Header --------------------------- */
|
||||||
|
|
||||||
#site-header {
|
#site-header {
|
||||||
z-index: 1;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-inner {
|
.header-inner {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.5-alpha-47608';
|
$wp_version = '5.5-alpha-47609';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue