Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #113 from ckeditor/t/109
Browse files Browse the repository at this point in the history
Fix: The arrow of the toolbar's balloon should inherit the background color. Closes #109.
  • Loading branch information
oskarwrobel authored May 11, 2017
2 parents 5ace9a0 + c50c4eb commit 4322b04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/imagetoolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ export default class ImageToolbar extends Plugin {
Template.extend( panel.template, {
attributes: {
class: [
'ck-toolbar-container'
'ck-toolbar-container',
'ck-editor-toolbar-container'
]
}
} );
Expand Down
1 change: 1 addition & 0 deletions tests/imagetoolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ describe( 'ImageToolbar', () => {

it( 'should set css classes', () => {
expect( panel.element.classList.contains( 'ck-toolbar-container' ) ).to.be.true;
expect( panel.element.classList.contains( 'ck-editor-toolbar-container' ) ).to.be.true;
expect( panel.content.get( 0 ).element.classList.contains( 'ck-editor-toolbar' ) ).to.be.true;
} );

Expand Down

0 comments on commit 4322b04

Please sign in to comment.