From 9c022260d6d0d4d0bbb2b2bc275df4e18a14044a Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 24 Jun 2024 11:17:38 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@58469 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyseventeen/assets/css/blocks.css | 2 +- .../themes/twentyseventeen/assets/css/editor-blocks.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-content/themes/twentyseventeen/assets/css/blocks.css b/src/wp-content/themes/twentyseventeen/assets/css/blocks.css index 350f49e930de5..4ba4e6c5321e2 100644 --- a/src/wp-content/themes/twentyseventeen/assets/css/blocks.css +++ b/src/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/src/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css b/src/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css index 0937f936b3296..8bb2ae62a4270 100644 --- a/src/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css +++ b/src/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,