When using Markdown format, one can easily end up with texts rendered as
<blockquote>
|
<p>Something</p>
|
</blockquote>
|
It appears that Boost does not have any default styling for such blocks, the Clean theme does have it.
On our hq.moodle.com we have the following custom SCSS added:
blockquote {
|
background: #f9f9f9;
|
border-left: 10px solid #ccc;
|
margin: 1.5em 10px;
|
padding: 0.5em 10px;
|
quotes: "\201C""\201D""\2018""\2019";
|
}
|
blockquote:before {
|
color: #ccc;
|
content: open-quote;
|
font-size: 4em;
|
line-height: 0.1em;
|
margin-right: 0.25em;
|
vertical-align: -0.4em;
|
}
|
blockquote p {
|
display: inline;
|
}
|
- has a non-specific relationship to
-
MDL-45662 Please allow blockquote to be chosen from the styles menu
- Closed
- will be (partly) resolved by
-
MDL-64760 Allow inline editing and blockquotes in forum
- Closed
- will help resolve
-
MDLSITE-5853 Theme regressions after 3.7 update
- Open