Skip to content

Commit b734293

Browse files
committed
Merge branch 't/11198'
2 parents b94d536 + 78867c5 commit b734293

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ CKEditor 4 Changelog
1010
Fixed Issues:
1111

1212
* [#11159](http://dev.ckeditor.com/ticket/11159): [Enhanced Image](http://ckeditor.com/addon/image2): Fixed buggy discovery of image dimensions in IE9 and IE10.
13+
* [#11198](http://dev.ckeditor.com/ticket/11198): Widgets: Drag handler is not fully visible when inline widget is in a heading.
1314

1415
## CKEditor 4.3
1516

plugins/widget/plugin.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@
4545
'width:' + DRAG_HANDLER_SIZE + 'px;' +
4646
'height:0;' +
4747
'opacity:0.75;' +
48-
'transition:height 0s 0.2s' + // Delay hiding drag handler.
48+
'transition:height 0s 0.2s;' + // Delay hiding drag handler.
49+
// Prevent drag handler from being misplaced (#11198).
50+
'line-height:0' +
4951
'}' +
5052
'.cke_widget_wrapper:hover>.cke_widget_drag_handler_container{' +
5153
'height:' + DRAG_HANDLER_SIZE + 'px;' +

0 commit comments

Comments
 (0)