From cda3a2e2b339d0e77b9f4b47c6e67ab155913afc Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 12 Aug 2024 15:19:16 +0000 Subject: [PATCH] Twenty Twelve: Fixes navigation block submenus being cut off. The navigation block submenus were being cut off. This is the simpler method proposed in patches. Props poena, sabernhardt. Fixes #61672. Built from https://develop.svn.wordpress.org/trunk@58887 git-svn-id: http://core.svn.wordpress.org/trunk@58283 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwelve/css/blocks.css | 6 ++++++ wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentytwelve/css/blocks.css b/wp-content/themes/twentytwelve/css/blocks.css index 9dfa0cd6d6..ced4f827f8 100644 --- a/wp-content/themes/twentytwelve/css/blocks.css +++ b/wp-content/themes/twentytwelve/css/blocks.css @@ -340,6 +340,12 @@ pre.wp-block-code { margin-bottom: 0; } +/* Navigation */ + +.site-content .wp-block-navigation { + overflow: visible; +} + /*-------------------------------------------------------------- 5.0 Blocks - Widgets --------------------------------------------------------------*/ diff --git a/wp-includes/version.php b/wp-includes/version.php index 818c313c37..cf357efb04 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58886'; +$wp_version = '6.7-alpha-58887'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.