horizontalline.css 431 B

1234567891011121314151617
  1. /*
  2. * 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-editor__editable .ck-horizontal-line {
  6. /* Necessary to render properly next to floated objects, e.g. side image case. */
  7. display: flow-root;
  8. }
  9. .ck-content hr {
  10. border-width: 1px 0 0;
  11. border-style: solid;
  12. border-color: hsl(0, 0%, 37%);
  13. margin: 0;
  14. }