Describe the bug
When you click on a toolbar item the tooltip remains visible overlaying the menu below it. I have found this to be an issue for "Headings", "Insert table" and "More".
To Reproduce
Steps to reproduce the behavior:
- Go to the toolbar
- Click on a menu item
- The tooltip overlays menu
Expected behavior
I would like the tooltip to either open above the menu items or clear when a menu is open.
Screenshots
Desktop (please complete the following information):
Patch
I have patched the issue with the below CSS but feel this is worth looking into.
/* Hides the tooltip when popup is open */
.toastui-editor-defaultUI-toolbar:has(+ .toastui-editor-popup[style*="display: block;"]) .toastui-editor-tooltip {
display: none !important;
}
/* Hides tooltip when the internal dropdown is visible */
.toastui-editor-defaultUI-toolbar:has(.toastui-editor-dropdown-toolbar:not([style*="display: none"])) .toastui-editor-tooltip {
display: none !important;
}
Describe the bug
When you click on a toolbar item the tooltip remains visible overlaying the menu below it. I have found this to be an issue for "Headings", "Insert table" and "More".
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I would like the tooltip to either open above the menu items or clear when a menu is open.
Screenshots
Desktop (please complete the following information):
Patch
I have patched the issue with the below CSS but feel this is worth looking into.