Skip to content

Commit

Permalink
Adding CSS rule for Markdown Blockquotes
Browse files Browse the repository at this point in the history
Using a vertical bar next to the text to indicate a blockquote.
Using lighter text color as well (similar to github's blockquotes).

resolves nextcloud#2064

Signed-off-by: Sebastian Bachmann <hello@reox.at>
  • Loading branch information
reox committed Jun 24, 2020
1 parent f047ee9 commit 6aeeaa4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/css/markdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,9 @@ table {
padding: 3px;
}
}

blockquote {
padding-left: 10px;
border-left: 3px solid var(--color-border-dark);
color: var(--color-text-lighter);
}

0 comments on commit 6aeeaa4

Please sign in to comment.