From 606f4a28678da692152b2bbfa21a845e70a50b5c Mon Sep 17 00:00:00 2001 From: audrasjb Date: Mon, 7 Jul 2025 20:09:27 +0000 Subject: [PATCH] Twenty Fourteen: Fixes Latest Comment Link Color in Content Sidebar. The white link text had worked against the dark background of the Primary and Footer widget areas, but not against the light background in the Content Sidebar. Therefore, r60368 excludes the Content Sidebar from that ruleset. Reviewed by audrasjb. Merges [60368] to the 6.8 branch. Props sabernhardt, dhruvang21, ravigadhiyawp, sandeepdahiya. Fixes #63520. Built from https://develop.svn.wordpress.org/branches/6.8@60425 git-svn-id: http://core.svn.wordpress.org/branches/6.8@59761 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfourteen/css/blocks.css | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyfourteen/css/blocks.css b/wp-content/themes/twentyfourteen/css/blocks.css index 4d001f5289..102d5e2508 100644 --- a/wp-content/themes/twentyfourteen/css/blocks.css +++ b/wp-content/themes/twentyfourteen/css/blocks.css @@ -368,7 +368,7 @@ p.has-drop-cap:not(:focus)::first-letter { color: #41a62a; } -.widget-area .wp-block-latest-comments__comment-meta a { +.widget-area:where(:not(.content-sidebar)) .wp-block-latest-comments__comment-meta a { color: #fff; } diff --git a/wp-includes/version.php b/wp-includes/version.php index ec564df656..7729ee235e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8.2-alpha-60423'; +$wp_version = '6.8.2-alpha-60425'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.