From 37fa5c1713157deb64d99966b2ec2af7b98e8f62 Mon Sep 17 00:00:00 2001 From: Shubh Mittal Date: Tue, 17 Jun 2025 17:00:52 +0530 Subject: [PATCH] Enhancement: Improve quote styling in editor by adjusting font weights for citations --- .../twentytwenty/assets/css/editor-style-block-rtl.css | 8 ++++++++ .../themes/twentytwenty/assets/css/editor-style-block.css | 8 ++++++++ 2 files changed, 16 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..7962ceec78642 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 @@ -670,6 +670,14 @@ hr.wp-block-separator.is-style-dots::before { line-height: 1.25; } +.editor-styles-wrapper .wp-block-quote cite em { + font-weight: bolder; +} + +.editor-styles-wrapper .wp-block-quote cite strong { + font-weight: 700; +} + .editor-styles-wrapper .wp-block-quote cite { font-style: normal; } 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..ea4147e1fb4f0 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 @@ -674,6 +674,14 @@ hr.wp-block-separator.is-style-dots::before { line-height: 1.25; } +.editor-styles-wrapper .wp-block-quote cite em { + font-weight: bolder; +} + +.editor-styles-wrapper .wp-block-quote cite strong { + font-weight: 700; +} + .editor-styles-wrapper .wp-block-quote cite { font-style: normal; }