Fix blockquote styling in comments previews and notifications (#8052)

* Add quote styling to comment preview

* Add quote styling in notification comment
This commit is contained in:
rhymes 2020-05-26 15:17:20 +02:00 committed by GitHub
parent 9c58ebc61e
commit 867a268a62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -496,6 +496,12 @@ a.header-link {
.article-body-image-wrapper img {
max-width: 100%;
}
blockquote {
border-left: calc(0.2vw + 2px) solid $dark-gray;
padding: 0.1% 6% 0.1% 1%;
margin-left: 0.5rem;
}
}
// this css is added to ignore the code under highlight class and use default bg-color and color.

View file

@ -246,6 +246,11 @@
max-width: 100%;
max-height: 400px;
}
blockquote {
border-left: calc(0.2vw + 2px) solid $dark-gray;
padding: 0.1% 6% 0.1% 2%;
margin-left: 0.5rem;
}
}
.comment-actions {
position: relative;