Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #38 from ckeditor/t/ckeditor5/1151
Browse files Browse the repository at this point in the history
Other: Adjusted blockquote content styles for better compatibility with RTL languages. See ckeditor/ckeditor5#1151.
  • Loading branch information
Reinmar committed Aug 12, 2019
2 parents d93c350 + b6ab8a4 commit c48b703
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion theme/blockquote.css
Expand Up @@ -9,9 +9,15 @@

/* 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%);
}

0 comments on commit c48b703

Please sign in to comment.