mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-04-30 11:09:30 +08:00
Improve style for quoted text in RichContent
Previously quoted text (e.g. in Markdown `> Some text`) was italic When two different quotes were made, there was no destinction between the two, making it look like one quote This is confusing Now we have a vertical line in front of the quote When two different pieces of text are quoted, it is now clear because the lines are separated This vertical line is a typical way of visualising quoted text, so it should be easy to understand what it is
This commit is contained in:
parent
8765491399
commit
51a51fe6b8
1 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,9 @@
|
||||||
.RichContent {
|
.RichContent {
|
||||||
blockquote {
|
blockquote {
|
||||||
margin: 0.2em 0 0.2em 2em;
|
margin: 0.2em 0 0.2em 0.2em;
|
||||||
font-style: italic;
|
padding: 0 0 0 1em;
|
||||||
|
border-width: 0 0 0 0.3em;
|
||||||
|
border-style: solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
|
|
Loading…
Reference in a new issue