Skip to content

Commit 299bb08

Browse files
committed
Twenty Twenty: Correct the border style of the pull quote block in the editor.
This change makes the border of the pull quote block visible in the editor when the user selects a border color or thickness, by setting the default border style to solid. Props nidhidhandhukiya, ugyensupport, dhruvang21, sabernhardt, divyeshk71, poena. Fixes #62301. git-svn-id: https://develop.svn.wordpress.org/trunk@59390 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 6f47a2c commit 299bb08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ hr.wp-block-separator.is-style-dots::before {
791791
/* Block: Pullquote -------------------------- */
792792

793793
.editor-styles-wrapper .wp-block-pullquote {
794-
border: none;
794+
border: 0 solid;
795795
color: inherit;
796796
padding: 0;
797797
position: relative;

src/wp-content/themes/twentytwenty/assets/css/editor-style-block.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ hr.wp-block-separator.is-style-dots::before {
795795
/* Block: Pullquote -------------------------- */
796796

797797
.editor-styles-wrapper .wp-block-pullquote {
798-
border: none;
798+
border: 0 solid;
799799
color: inherit;
800800
padding: 0;
801801
position: relative;

0 commit comments

Comments
 (0)