소스 검색

Made the .ck-horizontal-line use `display: flow-root` to get rid of overflow colliding with the type around feature.

Aleksander Nowodzinski 5 년 전
부모
커밋
07736511be
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/ckeditor5-horizontal-line/theme/horizontalline.css

+ 1 - 1
packages/ckeditor5-horizontal-line/theme/horizontalline.css

@@ -6,7 +6,7 @@
 
 .ck-editor__editable .ck-horizontal-line {
 	/* Necessary to render properly next to floated objects, e.g. side image case. */
-	overflow: hidden;
+	display: flow-root;
 }
 
 .ck-content hr {