From b91d4e06e7f38f0e718278578125bb71cfe23331 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 23 Jun 2025 21:23:31 +0000 Subject: [PATCH] Twenty Sixteen: Makes sure quote block plain style is in editor. The plain style for quote block was not showing in the editor despite showing on the front. This patch now makes sure it also does not show the border in editor. Props nidhidhandhukiya, dilipbheda, sabernhardt, sainathpoojary, dhruvang21, harshgajipara, SirLouen, darshitrajyaguru97, jorbin. Fixes #63424. Built from https://develop.svn.wordpress.org/trunk@60342 git-svn-id: http://core.svn.wordpress.org/trunk@59678 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentysixteen/css/editor-blocks.css | 4 ++++ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentysixteen/css/editor-blocks.css b/wp-content/themes/twentysixteen/css/editor-blocks.css index 0ab68afe8a..a8648668cd 100644 --- a/wp-content/themes/twentysixteen/css/editor-blocks.css +++ b/wp-content/themes/twentysixteen/css/editor-blocks.css @@ -370,6 +370,10 @@ figure[class*="wp-block-"] > figcaption { padding-right: 0; } +.wp-block-quote.is-style-plain { + border: none; +} + @media screen and (min-width: 44.375em) { .wp-block-quote.alignleft, .wp-block-quote.alignright { diff --git a/wp-includes/version.php b/wp-includes/version.php index ac2cb4837b..8e28ea2e08 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60341'; +$wp_version = '6.9-alpha-60342'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.