We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1753ae commit 0a1524fCopy full SHA for 0a1524f
core/toolbox/toolbox.ts
@@ -143,7 +143,9 @@ export class Toolbox
143
this.flyout_ = this.createFlyout_();
144
145
this.HtmlDiv = this.createDom_(this.workspace_);
146
- dom.insertAfter(this.flyout_.createDom('svg'), svg);
+ const flyoutDom = this.flyout_.createDom('svg');
147
+ dom.addClass(flyoutDom, 'blocklyToolboxFlyout');
148
+ dom.insertAfter(flyoutDom, svg);
149
this.setVisible(true);
150
this.flyout_.init(workspace);
151
0 commit comments