From 16dc8addd72cd58aade5d1dffe777a247302b2f1 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Sun, 9 Jun 2024 10:36:11 +0000 Subject: [PATCH] Twenty Fifteen: Fixes patch miss [58368]. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The latest patch was missing so one inherit wasn't added. Bringing that in with this commit. Props @shailu25. SeeĀ #59802. Built from https://develop.svn.wordpress.org/trunk@58370 git-svn-id: http://core.svn.wordpress.org/trunk@57819 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfifteen/css/blocks.css | 5 +++++ wp-content/themes/twentyfifteen/css/editor-blocks.css | 5 +++++ wp-includes/version.php | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentyfifteen/css/blocks.css b/wp-content/themes/twentyfifteen/css/blocks.css index e0aae3405b..3f0d7c8c11 100644 --- a/wp-content/themes/twentyfifteen/css/blocks.css +++ b/wp-content/themes/twentyfifteen/css/blocks.css @@ -128,6 +128,11 @@ p.has-drop-cap:not(:focus)::first-letter { color: inherit; } +.wp-block-quote.has-text-color cite, +.wp-block-quote.has-background cite { + color: inherit; +} + .wp-block-quote em, .wp-block-quote i { font-style: normal; diff --git a/wp-content/themes/twentyfifteen/css/editor-blocks.css b/wp-content/themes/twentyfifteen/css/editor-blocks.css index 7f1327d258..d00ee34137 100644 --- a/wp-content/themes/twentyfifteen/css/editor-blocks.css +++ b/wp-content/themes/twentyfifteen/css/editor-blocks.css @@ -518,6 +518,11 @@ p.has-drop-cap:not(:focus)::first-letter { text-transform: none; } +.wp-block-quote.has-text-color cite, +.wp-block-quote.has-background cite { + color: inherit; +} + .wp-block-quote em, .wp-block-quote i { font-style: normal; diff --git a/wp-includes/version.php b/wp-includes/version.php index 7755b09606..3593280b09 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-beta1-58369'; +$wp_version = '6.6-beta1-58370'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.