0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Change blockquote border color to accent color (#21780)

REF
https://linear.app/ghost/issue/PLG-291/add-support-for-blockquote-border-in-darkmode
- The border color was invisible in dark mode. Instead of adding a white
border for dark mode, it now uses the accent color. This matches link
and buttoncolors in comments, and makes it stand out more.
This commit is contained in:
Sanne de Vries 2024-12-02 16:45:58 +01:00 committed by GitHub
parent 940914609f
commit 5c3e26351a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,7 +36,7 @@ body {
/* Blockquotes */
.gh-comment-content blockquote {
border-left: 3px solid rgba(13,13,13,.1);
border-left: 3px solid var(--gh-accent-color);
padding-left: 1rem;
margin: 0 0 1.2rem;
}