Skip to content

Commit

Permalink
refact: melhoria no estilo de dropdowns e balões
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelino.braga committed Jun 11, 2024
1 parent 227a025 commit d475aaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/editor/ui/Balloon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class Balloon {
render() {
this.ballonMenu = document.createElement('div')
this.ballonMenu.contentEditable = 'false'
this.ballonMenu.className = 'balloon-menu ex-hidden'
this.ballonMenu.className = 'balloon-menu ex-reset-all ex-hidden'

this.ballonPanel = this.ballonMenu.appendChild(document.createElement('div'))

Expand Down
2 changes: 1 addition & 1 deletion src/editor/ui/Dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class Dropdown implements Tool {
this.config = { ...this.config, ...config }
this.editor = editor
this.dropdownContainer = document.createElement('div')
this.dropdownContainer.className = 'ex-dropdown-container'
this.dropdownContainer.className = 'ex-dropdown-container ex-reset-all'
this.dropdownContainer.contentEditable = 'false'

this.dropdownContentContainer = document.createElement('div')
Expand Down

0 comments on commit d475aaa

Please sign in to comment.