mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Twenty Ten: Reflect Heading block text color on front-end.
This changeset fixes an issue where the selected text color of the Heading block was not reflected on front-end. Props umesh84, sabernhardt, audrasjb, pooja1210, darshitrajyaguru97. Fixes #56603. Built from https://develop.svn.wordpress.org/trunk@56080 git-svn-id: http://core.svn.wordpress.org/trunk@55592 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
905cff1733
commit
9395b8dc16
@ -210,7 +210,9 @@ p.has-drop-cap:not(:focus)::first-letter {
|
||||
--------------------------------------------------------------*/
|
||||
|
||||
.has-blue-color,
|
||||
.has-blue-color:visited {
|
||||
.has-blue-color:visited,
|
||||
#content .has-blue-color,
|
||||
#content .has-blue-color:visited {
|
||||
color: #0066cc;
|
||||
}
|
||||
|
||||
@ -220,7 +222,9 @@ p.has-drop-cap:not(:focus)::first-letter {
|
||||
}
|
||||
|
||||
.has-black-color,
|
||||
.has-black-color:visited {
|
||||
.has-black-color:visited,
|
||||
#content .has-black-color,
|
||||
#content .has-black-color:visited {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
@ -230,7 +234,9 @@ p.has-drop-cap:not(:focus)::first-letter {
|
||||
}
|
||||
|
||||
.has-medium-gray-color,
|
||||
.has-medium-gray-color:visited {
|
||||
.has-medium-gray-color:visited,
|
||||
#content .has-medium-gray-color,
|
||||
#content .has-medium-gray-color:visited {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
@ -240,7 +246,9 @@ p.has-drop-cap:not(:focus)::first-letter {
|
||||
}
|
||||
|
||||
.has-light-gray-color,
|
||||
.has-light-gray-color:visited {
|
||||
.has-light-gray-color:visited,
|
||||
#content .has-light-gray-color,
|
||||
#content .has-light-gray-color:visited {
|
||||
color: #f1f1f1;
|
||||
}
|
||||
|
||||
@ -250,7 +258,9 @@ p.has-drop-cap:not(:focus)::first-letter {
|
||||
}
|
||||
|
||||
.has-white-color,
|
||||
.has-white-color:visited {
|
||||
.has-white-color:visited,
|
||||
#content .has-white-color,
|
||||
#content .has-white-color:visited {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-56079';
|
||||
$wp_version = '6.3-alpha-56080';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user