Make WordPress Core

Ticket #42001: 42001.patch

File 42001.patch, 915 bytes (added by jaydeep23290, 7 years ago)
  • widgets.js

     
    3838                        selectSidebar = chooser.find('.widgets-chooser-sidebars'),
    3939                        sidebars = $('div.widgets-sortables'),
    4040                        isRTL = !! ( 'undefined' !== typeof isRtl && isRtl );
    41 
     41                $('div.widget').click(function() {
     42                        $('div.widget').css('z-index', '99' );
     43                        $(this).css('z-index', '100' );
     44                        });
    4245                // Handle the widgets containers in the right column.
    4346                $( '#widgets-right .sidebar-name' )
    4447                        /*
     
    123126
    124127                $(document.body).bind('click.widgets-toggle', function(e) {
    125128                        var target = $(e.target),
    126                                 css = { 'z-index': 100 },
     129                                css = {'z-index': 99 },
    127130                                widget, inside, targetWidth, widgetWidth, margin, saveButton, widgetId,
    128131                                toggleBtn = target.closest( '.widget' ).find( '.widget-top button.widget-action' );
    129132