From 9d3bf297045adcf86bee0fa7b3ada53425da8312 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Tue, 16 Jul 2024 09:39:17 +0000 Subject: [PATCH] Twenty Sixteen: Fixes quote block border not changing color. The border was not changing color when it was changed. This brings that in. It is worth noting the original theme design did not have this but as noted in the ticket this has been in the quote block for about two years so matching the current block styling in this case makes sense. Props umesh84, desrosj, sabernhardt. Fixes #56565. Built from https://develop.svn.wordpress.org/trunk@58728 git-svn-id: http://core.svn.wordpress.org/trunk@58130 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 3e2ec41017..d5841218d0 100644 --- a/wp-content/themes/twentysixteen/css/editor-blocks.css +++ b/wp-content/themes/twentysixteen/css/editor-blocks.css @@ -305,6 +305,10 @@ figure[class*="wp-block-"] > figcaption { padding: 0 0 0 1.263157895em; } +.editor-styles-wrapper .wp-block-quote { + border-color: currentColor; +} + .wp-block-quote:not(.is-large):not(.is-style-large).alignleft, .wp-block-quote:not(.is-large):not(.is-style-large).alignright { border-left: 0; diff --git a/wp-includes/version.php b/wp-includes/version.php index 9eb7bbad94..9c199d11f6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58727'; +$wp_version = '6.7-alpha-58728'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.