From d57f7d44eaf7331ff298528226db179157cc7c16 Mon Sep 17 00:00:00 2001 From: Tim Fischbach Date: Thu, 11 Jul 2024 17:42:56 +0200 Subject: [PATCH] Also apply quote mark font family and color to text block quotes REDMINE-20782 --- .../package/src/contentElements/textBlock/TextBlock.module.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entry_types/scrolled/package/src/contentElements/textBlock/TextBlock.module.css b/entry_types/scrolled/package/src/contentElements/textBlock/TextBlock.module.css index fd904080a..ba90900bc 100644 --- a/entry_types/scrolled/package/src/contentElements/textBlock/TextBlock.module.css +++ b/entry_types/scrolled/package/src/contentElements/textBlock/TextBlock.module.css @@ -61,7 +61,9 @@ .text blockquote::before, .text blockquote::after { + font-family: var(--theme-quote-mark-font-family); font-weight: var(--theme-quote-mark-font-weight, bold); + color: var(--theme-quote-mark-color); opacity: var(--theme-quote-mark-opacity, 0.5); width: var(--theme-quote-mark-width); }