From 7d6af24cdf8d3aa21ee464f530e48e4970575308 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Tue, 27 Jun 2023 22:40:45 +0000 Subject: [PATCH] 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 --- src/wp-content/themes/twentyten/blocks.css | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/wp-content/themes/twentyten/blocks.css b/src/wp-content/themes/twentyten/blocks.css index fc751d61ea658..fb53e7be63ec8 100644 --- a/src/wp-content/themes/twentyten/blocks.css +++ b/src/wp-content/themes/twentyten/blocks.css @@ -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; }