html_resources/style: Fix elements inside quotes not having the right color

(also forces class=comment to be gray)
master
BodgeMaster 2024-07-02 08:44:50 +02:00
parent ecefa735b0
commit 6c365a8425
1 changed files with 7 additions and 1 deletions

View File

@ -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;
}