Improve style for quoted text in RichContent
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful

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:
ilja 2024-08-21 17:57:40 +02:00
parent 8765491399
commit 51a51fe6b8

View file

@ -1,7 +1,9 @@
.RichContent {
blockquote {
margin: 0.2em 0 0.2em 2em;
font-style: italic;
margin: 0.2em 0 0.2em 0.2em;
padding: 0 0 0 1em;
border-width: 0 0 0 0.3em;
border-style: solid;
}
pre {