blockquote.css 551 B

1234567891011121314151617181920212223
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. .ck-content blockquote {
  6. /* See #12 */
  7. overflow: hidden;
  8. /* https://github.com/ckeditor/ckeditor5-block-quote/issues/15 */
  9. padding-right: 1.5em;
  10. padding-left: 1.5em;
  11. margin-left: 0;
  12. margin-right: 0;
  13. font-style: italic;
  14. border-left: solid 5px hsl(0, 0%, 80%);
  15. }
  16. .ck-content[dir="rtl"] blockquote {
  17. border-left: 0;
  18. border-right: solid 5px hsl(0, 0%, 80%);
  19. }