mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
24 lines
539 B
CSS
24 lines
539 B
CSS
/*
|
|
* Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
*/
|
|
|
|
.ck-content blockquote {
|
|
/* See #12 */
|
|
overflow: hidden;
|
|
|
|
/* https://github.com/ckeditor/ckeditor5-block-quote/issues/15 */
|
|
padding-right: 1.5em;
|
|
padding-left: 1.5em;
|
|
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
font-style: italic;
|
|
border-left: solid 5px hsl(0, 0%, 80%);
|
|
}
|
|
|
|
.ck-content[dir="rtl"] blockquote {
|
|
border-left: 0;
|
|
border-right: solid 5px hsl(0, 0%, 80%);
|
|
}
|