From adfeeb5ee070606316c99bca3962f4b3a6e5aa91 Mon Sep 17 00:00:00 2001 From: whyisjake Date: Tue, 19 May 2020 22:26:07 +0000 Subject: [PATCH] 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. This brings the changes in [47609] to the 5.4 branch. Props kjellr, JavierCasares. Fixes #49322. Built from https://develop.svn.wordpress.org/branches/5.4@47825 git-svn-id: http://core.svn.wordpress.org/branches/5.4@47601 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwenty/style-rtl.css | 2 +- wp-content/themes/twentytwenty/style.css | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentytwenty/style-rtl.css b/wp-content/themes/twentytwenty/style-rtl.css index a1214bafcb..ae9bcb3412 100644 --- a/wp-content/themes/twentytwenty/style-rtl.css +++ b/wp-content/themes/twentytwenty/style-rtl.css @@ -5598,7 +5598,7 @@ a.to-the-top > * { /* Site Header --------------------------- */ #site-header { - z-index: 1; + z-index: 2; } .header-inner { diff --git a/wp-content/themes/twentytwenty/style.css b/wp-content/themes/twentytwenty/style.css index 8183f8be0c..dfcd64fa07 100644 --- a/wp-content/themes/twentytwenty/style.css +++ b/wp-content/themes/twentytwenty/style.css @@ -5670,7 +5670,7 @@ a.to-the-top > * { /* Site Header --------------------------- */ #site-header { - z-index: 1; + z-index: 2; } .header-inner { diff --git a/wp-includes/version.php b/wp-includes/version.php index ed8ab30fc1..3025f8e20f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4.2-alpha-47824'; +$wp_version = '5.4.2-alpha-47825'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.