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. Built from https://develop.svn.wordpress.org/trunk@56087 git-svn-id: http://core.svn.wordpress.org/trunk@55599 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9dcce378a0
commit
f6ab80b48c
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-56086';
|
||||
$wp_version = '6.3-alpha-56087';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue