-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
After updating to ckeditor-vaadin version 4.1.2 we noticed, that the toolbar does not remain sticky when writing long texts. This causes the toolbar to scroll out of the viewport, which makes editing long texts a tedious task.
I compared the CSS with version 4.0.0 and noticed some missing CSS rules at the div with classes ck ck-editor__top ck-reset_all. In version 4.0.0 is has some inline CSS, which is gone in version 4.1.2.
As a work around I specified the CSS in our project for now:
.ck.ck-editor__top.ck-reset_all {
position: sticky;
top: 0;
box-shadow: darkgrey 0px 1.5px 1px -1px;
z-index: 2;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels