You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now a closed modal is hidden in the UI with opacity: 0 and pointer-events: none. While this seems to hide the modal and make it's children unreachable for user interaction, the modal is still in the middle of the page and some interaction is still possible. I have discovered that the resize element of a textarea overlays all other content and can be interacted with.
Setting visibility: hidden on a modal's first .container and visibility: visible on .container.open seems to fix the problem.
Right now a closed modal is hidden in the UI with
opacity: 0andpointer-events: none. While this seems to hide the modal and make it's children unreachable for user interaction, the modal is still in the middle of the page and some interaction is still possible. I have discovered that the resize element of atextareaoverlays all other content and can be interacted with.Setting
visibility: hiddenon a modal's first.containerandvisibility: visibleon.container.openseems to fix the problem.Tested on MacOS Chrome 96