From 95f6808e033e7fd12e945556550d23d8c42f47c0 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Mon, 12 Aug 2024 13:44:15 +0000 Subject: [PATCH] Twenty Seventeen: Fixes Pullquote block text color not changing on front. The Pullquote block text color was not changing on the front. This overrides the inlined styles. Props iamjaydip, laurelfulford, sabernhardt. Fixes #46080. Built from https://develop.svn.wordpress.org/trunk@58886 git-svn-id: http://core.svn.wordpress.org/trunk@58282 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../themes/twentyseventeen/assets/css/editor-blocks.css | 4 ++++ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css b/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css index 34a4749db7..1a4902fbbd 100644 --- a/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css +++ b/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css @@ -649,6 +649,10 @@ html[lang="th"] .edit-post-visual-editor * { border: 0 solid; } +figure.wp-block-pullquote blockquote { + color: inherit; +} + .wp-block-pullquote.alignleft blockquote > .editor-rich-text p, .wp-block-pullquote.alignright blockquote > .editor-rich-text p { font-size: 20px; diff --git a/wp-includes/version.php b/wp-includes/version.php index 55686af520..818c313c37 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58885'; +$wp_version = '6.7-alpha-58886'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.