html_resources/style: Fix elements inside quotes not having the right color
(also forces class=comment to be gray)master
parent
ecefa735b0
commit
6c365a8425
|
@ -158,6 +158,9 @@ span.quote.speech::after {
|
||||||
position: relative;
|
position: relative;
|
||||||
bottom: 0.15em;
|
bottom: 0.15em;
|
||||||
}
|
}
|
||||||
|
span.quote.speech * {
|
||||||
|
color: #303030;
|
||||||
|
}
|
||||||
|
|
||||||
span.quote.non-speech {
|
span.quote.non-speech {
|
||||||
color: #303030;
|
color: #303030;
|
||||||
|
@ -176,6 +179,9 @@ span.quote.non-speech::after {
|
||||||
position: relative;
|
position: relative;
|
||||||
bottom: 0.15em;
|
bottom: 0.15em;
|
||||||
}
|
}
|
||||||
|
span.quote.non-speech * {
|
||||||
|
color: #303030;
|
||||||
|
}
|
||||||
|
|
||||||
/*TODO: Remove and replace with speech/non-speech where appropriate*/
|
/*TODO: Remove and replace with speech/non-speech where appropriate*/
|
||||||
span.quote.thought {
|
span.quote.thought {
|
||||||
|
@ -222,5 +228,5 @@ button.back {
|
||||||
|
|
||||||
.comment {
|
.comment {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
color: gray;
|
color: gray !important;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue