From 5e554da5461e6703231d3cda0a5ec732a1efb690 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 24 Jun 2024 11:19:13 +0000 Subject: [PATCH] Twenty Seventeen: Resolves default border style visibility for pullquote block. When a border color and width was added to the pullquote block but no border style was chosen the border was not visible. The expectation is that the border has a solid style by default when a color is selected. Props pranitdugad, poena, sabernhardt. Fixes #61362. Built from https://develop.svn.wordpress.org/trunk@58469 git-svn-id: http://core.svn.wordpress.org/trunk@57918 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/assets/css/blocks.css | 2 +- wp-content/themes/twentyseventeen/assets/css/editor-blocks.css | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentyseventeen/assets/css/blocks.css b/wp-content/themes/twentyseventeen/assets/css/blocks.css index 350f49e930..4ba4e6c532 100644 --- a/wp-content/themes/twentyseventeen/assets/css/blocks.css +++ b/wp-content/themes/twentyseventeen/assets/css/blocks.css @@ -166,7 +166,7 @@ p.has-drop-cap:not(:focus)::first-letter { /* Pullquote */ .wp-block-pullquote { - border: 0; + border: 0 solid; } .wp-block-pullquote__citation, diff --git a/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css b/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css index 0937f936b3..8bb2ae62a4 100644 --- a/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css +++ b/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css @@ -646,7 +646,7 @@ html[lang="th"] .edit-post-visual-editor * { /* Pullquote */ .wp-block-pullquote { - border: 0; + border: 0 solid; } .wp-block-pullquote.alignleft blockquote > .editor-rich-text p, diff --git a/wp-includes/version.php b/wp-includes/version.php index 01cea3332b..d31cdd3e02 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-beta3-58468'; +$wp_version = '6.6-beta3-58469'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.