WordPress.org

Make WordPress Core

Changeset 41948


Ignore:
Timestamp:
10/19/17 17:56:56 (4 days ago)
Author:
westonruter
Message:

Customize: Fix rendering issues in theme browsing when opening theme details or performing search in Safari.

Props sayedwp.
See #37661.
Fixes #42052.

Location:
trunk/src/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/customize-controls.css

    r41919 r41948  
    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 ); 
  • trunk/src/wp-admin/js/customize-controls.js

    r41947 r41948  
    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 ) { 
     
    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            } 
Note: See TracChangeset for help on using the changeset viewer.