Skip to content

Commit

Permalink
Twenty Ten: Reflect Heading block text color on front-end.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
audrasjb committed Jun 27, 2023
1 parent e527271 commit 7d6af24
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions src/wp-content/themes/twentyten/blocks.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand All @@ -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;
}

Expand All @@ -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;
}

Expand All @@ -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;
}

Expand Down

0 comments on commit 7d6af24

Please sign in to comment.