Skip to content

Commit

Permalink
fix: remove redundant blocklyNonSelectable class and integrate non-se…
Browse files Browse the repository at this point in the history
…lectability into existing classes google#8328
  • Loading branch information
dakshkanaujia committed Jul 25, 2024
1 parent d30e14d commit 555327a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/toolbox/separator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ Css.register(`
}
.blocklyToolboxDiv[layout="h"] .blocklyTreeSeparator {
user-select: none;
border-right: solid #e5e5e5 1px;
border-bottom: none;
height: auto;
Expand Down
2 changes: 0 additions & 2 deletions core/toolbox/toolbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,6 @@ export class Toolbox
const toolboxContainer = document.createElement('div');
toolboxContainer.setAttribute('layout', this.isHorizontal() ? 'h' : 'v');
dom.addClass(toolboxContainer, 'blocklyToolboxDiv');
// blocklyNonSelectable was redundant, its functionality was transferred to more relevant classes
// dom.addClass(toolboxContainer, 'blocklyNonSelectable');
toolboxContainer.setAttribute('dir', this.RTL ? 'RTL' : 'LTR');
return toolboxContainer;
}
Expand Down

0 comments on commit 555327a

Please sign in to comment.