richtext-content: add style for blockquote

This commit is contained in:
Felix Niklas 2016-05-12 15:20:48 +02:00
parent b82e08bfae
commit 561d8163ef

View file

@ -4430,12 +4430,6 @@ footer {
p { p {
margin: 0; margin: 0;
} }
blockquote,
pre {
margin: 0px;
padding: 8px 12px 8px 12px;
}
} }
.ticket-article-item.state--folde-out .textBubble { .ticket-article-item.state--folde-out .textBubble {
@ -8126,11 +8120,17 @@ output {
} }
.richtext-content { .richtext-content {
p, table, pre { p,
table,
pre,
blockquote {
margin-bottom: 16px; margin-bottom: 16px;
} }
& > p, & > table, & > pre { & > p,
& > table,
& > pre,
& > blockquote {
&:first-child { &:first-child {
margin-top: 6px; margin-top: 6px;
} }
@ -8167,6 +8167,11 @@ output {
} }
} }
blockquote {
padding: 8px 12px;
border-left: 5px solid #eee;
}
code { code {
border: none; border: none;
background: hsl(0,0%,97%); background: hsl(0,0%,97%);
@ -8174,7 +8179,7 @@ output {
} }
pre { pre {
padding: 15px; padding: 12px 15px;
font-size: 13px; font-size: 13px;
line-height: 1.45; line-height: 1.45;
background: hsl(0,0%,97%); background: hsl(0,0%,97%);