colorize: add support for blockquote and pre

This commit is contained in:
Kazhnuz 2018-10-15 10:16:20 +02:00
parent 6859972112
commit 9542b30ab7
2 changed files with 10 additions and 0 deletions

View File

@ -848,5 +848,9 @@ a, a:hover, a:active {
.text-success { .text-success {
color: #75b82d; } color: #75b82d; }
/* Clear-Typography overrides */
mark { mark {
background-color: #fac694; } background-color: #fac694; }
blockquote, pre {
border-color: #7951c0; }

View File

@ -196,6 +196,12 @@ a, a:hover, a:active {
&-success { @include text-color($color-success); } &-success { @include text-color($color-success); }
} }
/* Clear-Typography overrides */
mark { mark {
background-color: lighten($color-mark, 30%) background-color: lighten($color-mark, 30%)
} }
blockquote, pre {
border-color: $color-primary;
}