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
{{ message }}
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.
Due to the way the modal dialog is structured (opacity: 0 when not visible), it will sometimes cause problems with other things not being clickable as it will be displayed over them even if invisible. This can be easily remedied by changing the default state of the modal dialog (when not visible) to either use a z-index of -1 or similar (might have some problems with tabs using that specific z-index) or set it to display: none and display: block for its two different states.
The text was updated successfully, but these errors were encountered:
Modal dialog display has been now fixed. Original display used width :0 to width: 100%, however this caused some problems with the animation. The new fix uses display: none to display: block to ensure no such problems exist.
Due to the way the modal dialog is structured (
opacity: 0
when not visible), it will sometimes cause problems with other things not being clickable as it will be displayed over them even if invisible. This can be easily remedied by changing the default state of the modal dialog (when not visible) to either use az-index
of-1
or similar (might have some problems with tabs using that specificz-index
) or set it todisplay: none
anddisplay: block
for its two different states.The text was updated successfully, but these errors were encountered: