Other: Removed the `.ck-editor-toolbar` class from the toolbar (see ckeditor/ckeditor5-theme-lark#135).
@@ -52,8 +52,6 @@ export default class InlineEditorUIView extends EditorUIView {
this.toolbar.extendTemplate( {
attributes: {
class: [
- 'ck-editor-toolbar',
-
// https://github.com/ckeditor/ckeditor5-editor-inline/issues/11
'ck-toolbar_floating'
]
@@ -33,7 +33,6 @@ describe( 'InlineEditorUIView', () => {
} );
it( 'is given the right CSS classes', () => {
- expect( view.toolbar.element.classList.contains( 'ck-editor-toolbar' ) ).to.be.true;
expect( view.toolbar.element.classList.contains( 'ck-toolbar_floating' ) ).to.be.true;