Make text faint for blockquotes

In code review it was decided that faint text for blockquotes should be used.
I copied how it was done in other places to faint text.

When making a theme for *oma-fe, there's a check for how readable things remain.
I'm unsure how that exactly works, but timestamps for a status is also faint,
so by using the same way of doing this, this should also be taken into account
for the theming engine.
This commit is contained in:
ilja 2024-10-12 14:39:33 +02:00
parent 51a51fe6b8
commit a9367d444a

View file

@ -1,9 +1,13 @@
@import './../../_variables.scss';
.RichContent {
blockquote {
margin: 0.2em 0 0.2em 0.2em;
padding: 0 0 0 1em;
border-width: 0 0 0 0.3em;
border-style: solid;
color: $fallback--faint;
color: var(--faint, $fallback--faint);
}
pre {