https://bugzilla.wikimedia.org/show_bug.cgi?id=53493
--- Comment #1 from Michael Dale <[email protected]> --- line 730 of jquery.ui.dialog.js seems to be the culprit: if ($(event.target).zIndex() < $.ui.dialog.overlay.maxZ) { Our event.target zindex is 3 while $.ui.dialog.overlay.maxZ is 1001 Its unfortunate z-index does not stack for child elements, since the dialog box its-self is in range. seems to work fine if we just comment out the respective z-indexes and relay on the dom order which appears to be fine in testing. https://gerrit.wikimedia.org/r/81570 -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
