From 9b054b0ac6c09f3a81e36bac9fe3782e3b42563f Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 22 Jul 2024 15:36:14 +0000 Subject: [PATCH] Twenty Twelve: Fixes submenu hiding under slideshow block. Whilst initially this could be thought to be solved in Jetpack due to submenus only having a z-index of 1 a fix is desirable. This brings in the suggested value. Props robertghetau, SergeyBiryukov, sabernhardt, poena, narenin. Fixes #55892. Built from https://develop.svn.wordpress.org/trunk@58776 git-svn-id: http://core.svn.wordpress.org/trunk@58178 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwelve/css/ie.css | 2 +- wp-content/themes/twentytwelve/style.css | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentytwelve/css/ie.css b/wp-content/themes/twentytwelve/css/ie.css index 706f5103ed..134647da12 100644 --- a/wp-content/themes/twentytwelve/css/ie.css +++ b/wp-content/themes/twentytwelve/css/ie.css @@ -108,7 +108,7 @@ body.full-width .site-content { padding: 0; position: absolute; top: 100%; - z-index: 1; + z-index: 99999; height: 1px; width: 1px; overflow: hidden; diff --git a/wp-content/themes/twentytwelve/style.css b/wp-content/themes/twentytwelve/style.css index 1976657a5f..21b797f2ec 100644 --- a/wp-content/themes/twentytwelve/style.css +++ b/wp-content/themes/twentytwelve/style.css @@ -1606,7 +1606,7 @@ img#wpstats { padding: 0; position: absolute; top: 100%; - z-index: 1; + z-index: 99999; height: 1px; width: 1px; overflow: hidden; diff --git a/wp-includes/version.php b/wp-includes/version.php index 26d17cd88c..7ea1f6e05c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58775'; +$wp_version = '6.7-alpha-58776'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.