Skip to content

Commit 6cf8e0f

Browse files
committed
fix(editor): table resizing tool misalignment in non-iframe mode
1 parent e71a3fe commit 6cf8e0f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

packages/default/scss/editor/_layout.scss

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@
5050
visibility: hidden;
5151
}
5252

53+
// Resizable tables
54+
.k-editor-resize-wrap-element {
55+
display: inline-block;
56+
position: relative;
57+
}
58+
5359
.k-editor-resize-handle {
5460
width: $kendo-editor-resize-handle-size;
5561
height: $kendo-editor-resize-handle-size;

packages/fluent/scss/editor/_layout.scss

+6
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@
6161
visibility: hidden;
6262
}
6363

64+
// Resizable tables
65+
.k-editor-resize-wrap-element {
66+
display: inline-block;
67+
position: relative;
68+
}
69+
6470
.k-editor-resize-handle {
6571
width: var( --kendo-editor-resize-handle-size, #{$kendo-editor-resize-handle-size} );
6672
height: var( --kendo-editor-resize-handle-size, #{$kendo-editor-resize-handle-size} );

0 commit comments

Comments
 (0)