From 6c365a84259a98a3d2c897087d95171fb56d2721 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Tue, 2 Jul 2024 08:44:50 +0200 Subject: [PATCH] html_resources/style: Fix elements inside quotes not having the right color (also forces class=comment to be gray) --- html_resources/style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/html_resources/style.css b/html_resources/style.css index 13b66fa..6506f4b 100644 --- a/html_resources/style.css +++ b/html_resources/style.css @@ -158,6 +158,9 @@ span.quote.speech::after { position: relative; bottom: 0.15em; } +span.quote.speech * { + color: #303030; +} span.quote.non-speech { color: #303030; @@ -176,6 +179,9 @@ span.quote.non-speech::after { position: relative; bottom: 0.15em; } +span.quote.non-speech * { + color: #303030; +} /*TODO: Remove and replace with speech/non-speech where appropriate*/ span.quote.thought { @@ -222,5 +228,5 @@ button.back { .comment { font-style: italic; - color: gray; + color: gray !important; }