Make WordPress Core

Ticket #42052: 42052.6.diff

File 42052.6.diff, 1.4 KB (added by sayedwp, 7 years ago)
  • src/wp-admin/css/customize-controls.css

    diff --git src/wp-admin/css/customize-controls.css src/wp-admin/css/customize-controls.css
    index 12347f1630..e1a6d27122 100644
    p.customize-section-description { 
    23172317        z-index: -1;
    23182318}
    23192319
     2320.wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content {
     2321        overflow: visible;
     2322}
     2323
    23202324.wp-customizer .theme-overlay .theme-backdrop {
    23212325        background: rgba( 238, 238, 238, 0.75 );
    23222326        position: fixed;
  • src/wp-admin/js/customize-controls.js

    diff --git src/wp-admin/js/customize-controls.js src/wp-admin/js/customize-controls.js
    index 7b275b4d60..458d93accb 100644
     
    30653065                                        .addClass( 'in-themes-panel' )
    30663066                                        .delay( 200 ).find( '.customize-themes-full-container' ).addClass( 'animate' );
    30673067
     3068                                _.delay( function() {
     3069                                        overlay.addClass( 'themes-panel-expanded' );
     3070                                }, 200 );
     3071
    30683072                                // Automatically open the installed themes section (except on small screens).
    30693073                                if ( 600 < window.innerWidth ) {
    30703074                                        api.section( 'installed_themes' ).expand();
    30713075                                }
    30723076                        } else {
    30733077                                overlay
    3074                                         .removeClass( 'in-themes-panel' )
     3078                                        .removeClass( 'in-themes-panel themes-panel-expanded' )
    30753079                                        .find( '.customize-themes-full-container' ).removeClass( 'animate' );
    30763080                        }
    30773081                },