MDL-82255 editor_tiny: Style blockquote in editor

This commit is contained in:
raortegar 2024-08-28 20:03:14 +02:00
parent f714dbee87
commit c5ef86c3bf

View File

@ -10,4 +10,18 @@ body.mce-content-body a[data-mce-selected="inline-boundary"] {
body.mce-content-body a {
color: #0f6cbf;
}
/** */
/** blockquote */
.mce-content-body:not([dir=rtl]) blockquote {
margin: 0 0.5rem 1rem;
padding-left: 1rem;
color: #495057;
border-left: 5px solid #8f959e;
}
.mce-content-body[dir=rtl] blockquote {
margin: 0 0.5rem 1rem;
padding-right: 1rem;
color: #495057;
border-right: 5px solid #8f959e;
}
/** */