Twenty Twenty-One: Ensure custom text color is reflected in the Editor for Quote block.
This changes removes an hardcoded CSS color value for the Quote block in Twenty Twenty-One's editor stylesheet. This ensures custom text color is fully reflected in the Editor for Quote block. Props jyolsna, evildon, kajalgohel, audrasjb. Fixes #55989. Built from https://develop.svn.wordpress.org/trunk@53517 git-svn-id: http://core.svn.wordpress.org/trunk@53106 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bac638e610
commit
4947604b66
|
@ -1561,7 +1561,7 @@ pre.wp-block-preformatted {
|
|||
}
|
||||
|
||||
.wp-block-quote .wp-block-quote__citation {
|
||||
color: var(--global--color-primary);
|
||||
color: currentColor;
|
||||
font-size: var(--global--font-size-xs);
|
||||
font-style: var(--quote--font-style-cite);
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
}
|
||||
|
||||
.wp-block-quote__citation {
|
||||
color: var(--global--color-primary);
|
||||
color: currentColor;
|
||||
font-size: var(--global--font-size-xs);
|
||||
font-style: var(--quote--font-style-cite);
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-53516';
|
||||
$wp_version = '6.1-alpha-53517';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue