Changes between Initial Version and Version 1 of Ticket #23370, comment 17
- Timestamp:
- 04/24/2013 02:24:40 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23370, comment 17
initial v1 1 1 This is causing a z-index conflict in /wp-includes/css/jquery-ui-dialog.css: 2 2 {{{ 3 3 .ui-widget-overlay { 4 4 z-index: 300001; 5 5 }}} 6 6 is over 7 7 {{{ 8 8 .ui-front { 9 9 z-index: 100; 10 10 }}} 11 11 A 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 {{{ 13 13 var msg = '<div>hello</div>'; 14 14 jQuery(msg).dialog({ draggable: false, resizable: false, modal: true }); 15 15 }}} 16 16 The close button and the form are behind the overlay.