From 13d511f79bb9b11332501a9773f34b571aaa9411 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Mon, 7 Jul 2025 20:12:35 +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. Reviewed by audrasjb, karmatosed. Merges [60342] to the 6.8 branch. Props nidhidhandhukiya, dilipbheda, sabernhardt, sainathpoojary, dhruvang21, harshgajipara, SirLouen, darshitrajyaguru97, jorbin. Fixes #63424. Built from https://develop.svn.wordpress.org/branches/6.8@60426 git-svn-id: http://core.svn.wordpress.org/branches/6.8@59762 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 7729ee235e..547349071f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8.2-alpha-60425'; +$wp_version = '6.8.2-alpha-60426'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.