Commit 879ba497c2 for wordpress.org

commit 879ba497c26be71427609e39d383105dca7bc920
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Mon Nov 24 22:46:34 2025 +0000

    Twenty Nineteen: Ensure that Pullquote block color is reflected on citation text.

    Follow-up to [43808].

    Props nidhidhandhukiya, sainathpoojary, kelvinballoo, ankit-k-gupta, pooja1210, karmatosed, sabernhardt, sandeepdahiya, SergeyBiryukov.
    Fixes #58100.
    Built from https://develop.svn.wordpress.org/trunk@61295


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

diff --git a/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss b/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
index 92910ad63c..037aa391e7 100644
--- a/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
+++ b/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
@@ -436,6 +436,10 @@
 			}
 		}

+		&.has-text-color cite {
+			color: inherit;
+		}
+
 		&.is-style-solid-color {
 			background-color: $color__link;
 			padding-left: 0;
diff --git a/wp-content/themes/twentynineteen/style-editor.css b/wp-content/themes/twentynineteen/style-editor.css
index d62b05b23b..cbc56e1020 100644
--- a/wp-content/themes/twentynineteen/style-editor.css
+++ b/wp-content/themes/twentynineteen/style-editor.css
@@ -1103,6 +1103,12 @@ figcaption,
   color: #767676;
 }

+.wp-block-pullquote.has-text-color .wp-block-pullquote__citation,
+.wp-block-pullquote.has-primary-background-color blockquote p,
+.wp-block-pullquote.has-dark-gray-background-color blockquote p {
+  color: inherit;
+}
+
 .wp-block-pullquote.is-style-solid-color blockquote {
   width: calc(100% - (2 * 1rem));
   max-width: calc( 100% - (2 * 1rem));
diff --git a/wp-content/themes/twentynineteen/style-editor.scss b/wp-content/themes/twentynineteen/style-editor.scss
index 6d57b8ccb7..8af5dddbf5 100644
--- a/wp-content/themes/twentynineteen/style-editor.scss
+++ b/wp-content/themes/twentynineteen/style-editor.scss
@@ -515,6 +515,12 @@ figcaption,
 		color: $color__text-light;
 	}

+	&.has-text-color .wp-block-pullquote__citation,
+	&.has-primary-background-color blockquote p,
+	&.has-dark-gray-background-color blockquote p {
+		color: inherit;
+	}
+
 	&.is-style-solid-color {

 		blockquote {
diff --git a/wp-content/themes/twentynineteen/style-rtl.css b/wp-content/themes/twentynineteen/style-rtl.css
index 1796b73a40..3dfdb10cc5 100644
--- a/wp-content/themes/twentynineteen/style-rtl.css
+++ b/wp-content/themes/twentynineteen/style-rtl.css
@@ -5758,6 +5758,10 @@ body.page .main-navigation {
   margin-top: 0;
 }

+.entry .entry-content .wp-block-pullquote.has-text-color cite {
+  color: inherit;
+}
+
 .entry .entry-content .wp-block-pullquote.is-style-solid-color {
   background-color: #0073aa;
   padding-right: 0;
diff --git a/wp-content/themes/twentynineteen/style.css b/wp-content/themes/twentynineteen/style.css
index 23608b03fd..a8cda59934 100644
--- a/wp-content/themes/twentynineteen/style.css
+++ b/wp-content/themes/twentynineteen/style.css
@@ -5770,6 +5770,10 @@ body.page .main-navigation {
   margin-top: 0;
 }

+.entry .entry-content .wp-block-pullquote.has-text-color cite {
+  color: inherit;
+}
+
 .entry .entry-content .wp-block-pullquote.is-style-solid-color {
   background-color: #0073aa;
   padding-left: 0;
diff --git a/wp-includes/version.php b/wp-includes/version.php
index e788881f3c..1ae1d9a901 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61294';
+$wp_version = '7.0-alpha-61295';

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