Twenty Sixteen: Twenty Ten: Reflect Quote block text color on the entire block.

This changeset fixes an issue where the selected text color for the Quote block was not reflected on all the elements of the block.

Props nidhidhandhukiya, sabernhardt, audrasjb, shailu25, anilvaza.
Fixes #57204.




git-svn-id: https://develop.svn.wordpress.org/trunk@56087 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras 2023-06-28 07:58:12 +00:00
parent 01a8b01c98
commit 44f9c35d74
2 changed files with 8 additions and 0 deletions

View File

@ -94,6 +94,10 @@ p.has-drop-cap:not(:focus)::first-letter {
line-height: 1.75;
}
.wp-block-quote.has-text-color cite {
color: inherit;
}
.wp-block-quote cite:before {
content: "\2014\00a0";
}

View File

@ -325,6 +325,10 @@ Description: Used to style blocks in the editor.
line-height: 1.75;
}
.wp-block-quote.has-text-color .wp-block-quote__citation {
color: inherit;
}
.wp-block-quote__citation:before {
content: "\2014\00a0";
}