From 6ba1ca6ede8f1afad7094237f0e9ae6e6049ff7d Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Tue, 4 Jul 2023 13:38:56 +0000 Subject: [PATCH] Twenty Twenty-Three: Allow changing Site Title font size in Marigold and Whisper styles. This changeset moves font styling from link element to site title (or post title) block in Marigold and Whisper style variations, which allows to change Site Title block font size. Props ryelle, shuvoaftab, sabernhardt, alvitazwar052, shailu25, poena, audrasjb. Fixes #57971. git-svn-id: https://develop.svn.wordpress.org/trunk@56131 602fd350-edb4-49c9-b593-d223f7449a82 --- .../themes/twentytwentythree/styles/marigold.json | 10 ++-------- .../themes/twentytwentythree/styles/whisper.json | 7 +++---- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/src/wp-content/themes/twentytwentythree/styles/marigold.json b/src/wp-content/themes/twentytwentythree/styles/marigold.json index 31fc120ce6..4ad7ef40ad 100644 --- a/src/wp-content/themes/twentytwentythree/styles/marigold.json +++ b/src/wp-content/themes/twentytwentythree/styles/marigold.json @@ -153,7 +153,6 @@ "elements": { "link": { "typography": { - "fontSize": "var(--wp--preset--font-size--large)", "textDecoration": "none" }, "color": { @@ -168,6 +167,7 @@ } }, "typography": { + "fontSize": "var(--wp--preset--font-size--large)", "fontWeight": "600" } }, @@ -203,14 +203,8 @@ } }, "core/site-title": { - "elements": { - "link": { - "typography": { - "fontSize": "var(--wp--preset--font-size--normal)" - } - } - }, "typography": { + "fontSize": "var(--wp--preset--font-size--normal)", "textTransform": "lowercase" } } diff --git a/src/wp-content/themes/twentytwentythree/styles/whisper.json b/src/wp-content/themes/twentytwentythree/styles/whisper.json index d35267d0ce..c93b7f4b08 100644 --- a/src/wp-content/themes/twentytwentythree/styles/whisper.json +++ b/src/wp-content/themes/twentytwentythree/styles/whisper.json @@ -288,16 +288,15 @@ } }, "typography": { - "fontFamily": "var(--wp--preset--font-family--dm-sans)", - "fontSize": "var(--wp--preset--font-size--large)", - "fontWeight": "700", - "letterSpacing": "-0.01em", "textDecoration": "none" } } }, "typography": { + "fontFamily": "var(--wp--preset--font-family--dm-sans)", "fontSize": "var(--wp--preset--font-size--large)", + "fontWeight": "700", + "letterSpacing": "-0.01em", "lineHeight": "1.4", "textTransform": "capitalize" }