Make WordPress Core

Ticket #42001: 42001.4.diff

File 42001.4.diff, 1.2 KB (added by SergeyBiryukov, 5 years ago)
  • src/js/_enqueues/admin/widgets.js

     
    127127                });
    128128
    129129                $(document.body).bind('click.widgets-toggle', function(e) {
    130                         var target = $(e.target),
    131                                 css = { 'z-index': 100 },
     130                        var target = $(e.target), css = {},
    132131                                widget, inside, targetWidth, widgetWidth, margin, saveButton, widgetId,
    133132                                toggleBtn = target.closest( '.widget' ).find( '.widget-top button.widget-action' );
    134133
     
    212211                        handle: '> .widget-top > .widget-title',
    213212                        distance: 2,
    214213                        helper: 'clone',
    215                         zIndex: 100,
     214                        zIndex: 101,
    216215                        containment: '#wpwrap',
    217216                        refreshPositions: true,
    218217                        start: function( event, ui ) {
  • src/wp-admin/css/widgets.css

     
    66        box-sizing: border-box;
    77}
    88
     9.widget.open {
     10        z-index: 99;
     11}
     12.widget.open:focus-within {
     13        z-index: 100;
     14}
     15
    916.widget-top {
    1017        font-size: 13px;
    1118        font-weight: 600;