Add somewhat better blockquote styling

Quotes are now "quoted" and also have a different background.
This commit is contained in:
Joshua Goins
2023-11-03 17:34:52 -04:00
parent e3cf85aa8c
commit dc6b539ddf
3 changed files with 18 additions and 0 deletions

View File

@@ -67,6 +67,18 @@ table td {
border: 1px solid black;
padding: 3px;
}
blockquote {
margin: 0;
}
blockquote table {
width: 100%;
border-width: 0;
background-color:" + Kirigami.Theme.alternateBackgroundColor + ";
}
blockquote td {
width: 100%;
padding: " + Kirigami.Units.largeSpacing + ";
}
pre {
white-space: pre-wrap
}