From 62ea483f794fcc8b767dbc8a96cf50b3b48ca9c0 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 22 Jul 2024 16:30:16 +0000 Subject: [PATCH] Twenty Sixteen: Fixes Quote block border width changes depending on font size. When the font size is changed the border on the front was changing in width. This fix resolves that to make sure the width does not adjust. Props nidhidhandhukiya, sabernhardt, kamran8176, pitamdey, shailu25. Fixes #60239. Built from https://develop.svn.wordpress.org/trunk@58777 git-svn-id: http://core.svn.wordpress.org/trunk@58179 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentysixteen/css/blocks.css | 8 ++++++++ wp-includes/version.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentysixteen/css/blocks.css b/wp-content/themes/twentysixteen/css/blocks.css index f01118d6c0..c631e94053 100644 --- a/wp-content/themes/twentysixteen/css/blocks.css +++ b/wp-content/themes/twentysixteen/css/blocks.css @@ -74,6 +74,14 @@ p.has-drop-cap:not(:focus)::first-letter { /* Quote */ +.wp-block-quote { + border-width: 0 0 0 4px; +} + +:where(.rtl) .wp-block-quote { + border-width: 0 4px 0 0; +} + .wp-block-quote:not(.is-large):not(.is-style-large).alignleft, .wp-block-quote:not(.is-large):not(.is-style-large).alignright { border-left: none; diff --git a/wp-includes/version.php b/wp-includes/version.php index 7ea1f6e05c..e9ed5f750d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58776'; +$wp_version = '6.7-alpha-58777'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.