Commit 489d3907bb for wordpress.org

commit 489d3907bb1f1f8690ab1fa452f17238e77e84d7
Author: Tammie Lister <tammie@automattic.com>
Date:   Mon Jun 30 13:00:30 2025 +0000

    Twenty Twenty-Four: Fixes Latest Comment Link Color in Sidebar.

    This sets the link color to work for dark areas when 51205 set to white for any widget area. This was not good for Primary and Footer Widget Areas.

    Props sabernhardt, dhruvang21, ravigadhiyawp, sandeepdahiya.
    Fixes #63520.

    Built from https://develop.svn.wordpress.org/trunk@60368


    git-svn-id: http://core.svn.wordpress.org/trunk@59704 1a063a9b-81f0-0310-95a4-ce76da25c4cd

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 38dc1594b7..ae84724d91 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '6.9-alpha-60367';
+$wp_version = '6.9-alpha-60368';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.