Skip to content

Commit

Permalink
feat: added blocklyToolboxFlyout CSS class to the flyout (google#8386)
Browse files Browse the repository at this point in the history
  • Loading branch information
nullHawk authored Jul 17, 2024
1 parent e1753ae commit 0a1524f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/toolbox/toolbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ export class Toolbox
this.flyout_ = this.createFlyout_();

this.HtmlDiv = this.createDom_(this.workspace_);
dom.insertAfter(this.flyout_.createDom('svg'), svg);
const flyoutDom = this.flyout_.createDom('svg');
dom.addClass(flyoutDom, 'blocklyToolboxFlyout');
dom.insertAfter(flyoutDom, svg);
this.setVisible(true);
this.flyout_.init(workspace);

Expand Down

0 comments on commit 0a1524f

Please sign in to comment.