Skip to content

Commit

Permalink
Twenty Seventeen: Resolves default border style visibility for pullqu…
Browse files Browse the repository at this point in the history
…ote 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
  • Loading branch information
karmatosed committed Jun 24, 2024
1 parent d5e0951 commit 9c02226
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9c02226

Please sign in to comment.