Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #23370, comment 17


Ignore:
Timestamp:
04/24/2013 02:24:40 AM (12 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23370, comment 17

    initial v1  
    11This is causing a z-index conflict in /wp-includes/css/jquery-ui-dialog.css:
    2 
     2{{{
    33.ui-widget-overlay {
    44 z-index: 300001;
    5 
     5}}}
    66is over
    7 
     7{{{
    88.ui-front {
    99 z-index: 100;
    10 
     10}}}
    1111A new dialog has its shadow in front of it, you can't click 'close'. For example, try this on a wp-admin page:
    12 
     12{{{
    1313var msg = '<div>hello</div>';
    1414jQuery(msg).dialog({ draggable: false, resizable: false, modal: true });
    15 
     15}}}
    1616The close button and the form are behind the overlay.