From e144d4bb6395a95bc7d876033fbc7c0cb9f04111 Mon Sep 17 00:00:00 2001 From: ellatrix Date: Tue, 21 Oct 2025 12:22:33 +0000 Subject: [PATCH] Global styles: inherit all typography styles. This PR syncs the changes initially added to Gutenberg in https://github.com/WordPress/gutenberg/pull/70676. See https://github.com/WordPress/wordpress-develop/pull/9268. See https://core.trac.wordpress.org/ticket/63700. Fixes #63700. Built from https://develop.svn.wordpress.org/trunk@61021 git-svn-id: http://core.svn.wordpress.org/trunk@60357 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.json | 4 ++++ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-includes/theme.json b/wp-includes/theme.json index 85836d6c24..362cfe7d3e 100644 --- a/wp-includes/theme.json +++ b/wp-includes/theme.json @@ -383,6 +383,10 @@ "typography": { "fontSize": "inherit", "fontFamily": "inherit", + "fontStyle": "inherit", + "fontWeight": "inherit", + "letterSpacing": "inherit", + "textTransform": "inherit", "lineHeight": "inherit", "textDecoration": "none" }, diff --git a/wp-includes/version.php b/wp-includes/version.php index abf4efc20f..9b1dbea055 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-61020'; +$wp_version = '6.9-alpha-61021'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.