mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-04-30 11:09:30 +08:00
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:
parent
51a51fe6b8
commit
a9367d444a
1 changed files with 4 additions and 0 deletions
|
@ -1,9 +1,13 @@
|
||||||
|
@import './../../_variables.scss';
|
||||||
|
|
||||||
.RichContent {
|
.RichContent {
|
||||||
blockquote {
|
blockquote {
|
||||||
margin: 0.2em 0 0.2em 0.2em;
|
margin: 0.2em 0 0.2em 0.2em;
|
||||||
padding: 0 0 0 1em;
|
padding: 0 0 0 1em;
|
||||||
border-width: 0 0 0 0.3em;
|
border-width: 0 0 0 0.3em;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
|
color: $fallback--faint;
|
||||||
|
color: var(--faint, $fallback--faint);
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
|
|
Loading…
Reference in a new issue