mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00: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. git-svn-id: https://develop.svn.wordpress.org/trunk@56080 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e527271f2c
commit
7d6af24cdf
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user