From b996b5391c7184f11add8106bd8acb277a16f12c Mon Sep 17 00:00:00 2001 From: Rishabh Gupta Date: Tue, 12 Aug 2025 20:10:26 +0530 Subject: [PATCH 1/2] Twenty Twenty: Fix font inconsistency in Latest Posts block editor --- .../themes/twentytwenty/assets/css/editor-style-block-rtl.css | 4 ++++ .../themes/twentytwenty/assets/css/editor-style-block.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css b/src/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css index 141b9d9f86a4c..47760c131a294 100644 --- a/src/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css +++ b/src/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css @@ -1064,6 +1064,10 @@ hr.wp-block-separator.is-style-dots::before { margin-top: 15px; } +.editor-styles-wrapper .wp-block-latest-posts__post-full-content p { + font-family: inherit; +} + .wp-block-latest-posts__post-full-content > p:first-child { margin-top: 1em; } diff --git a/src/wp-content/themes/twentytwenty/assets/css/editor-style-block.css b/src/wp-content/themes/twentytwenty/assets/css/editor-style-block.css index 862a51cc2b8e1..6a10e0033d7d3 100644 --- a/src/wp-content/themes/twentytwenty/assets/css/editor-style-block.css +++ b/src/wp-content/themes/twentytwenty/assets/css/editor-style-block.css @@ -1068,6 +1068,10 @@ hr.wp-block-separator.is-style-dots::before { margin-top: 15px; } +.editor-styles-wrapper .wp-block-latest-posts__post-full-content p { + font-family: inherit; +} + .wp-block-latest-posts__post-full-content > p:first-child { margin-top: 1em; } From f2e8e28ca5225cd2fc9aa4773b3ea9528ca95f7c Mon Sep 17 00:00:00 2001 From: Rishabh Gupta Date: Wed, 13 Aug 2025 18:49:58 +0530 Subject: [PATCH 2/2] Trigger pipeline