Selaa lähdekoodia

Merge pull request #32 from ckeditor/t/ckeditor5-theme-lark/135

Other: Removed the `.ck-editor-toolbar` class from the toolbar (see ckeditor/ckeditor5-theme-lark#135).
Aleksander Nowodzinski 7 vuotta sitten
vanhempi
commit
5476035bb2

+ 0 - 2
packages/ckeditor5-editor-inline/src/inlineeditoruiview.js

@@ -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'
 				]

+ 0 - 1
packages/ckeditor5-editor-inline/tests/inlineeditoruiview.js

@@ -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;
 			} );