diff --git src/wp-admin/css/customize-controls.css src/wp-admin/css/customize-controls.css
index 12347f1630..e1a6d27122 100644
|
|
p.customize-section-description { |
2317 | 2317 | z-index: -1; |
2318 | 2318 | } |
2319 | 2319 | |
| 2320 | .wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content { |
| 2321 | overflow: visible; |
| 2322 | } |
| 2323 | |
2320 | 2324 | .wp-customizer .theme-overlay .theme-backdrop { |
2321 | 2325 | background: rgba( 238, 238, 238, 0.75 ); |
2322 | 2326 | position: fixed; |
diff --git src/wp-admin/js/customize-controls.js src/wp-admin/js/customize-controls.js
index 7b275b4d60..458d93accb 100644
|
|
|
3065 | 3065 | .addClass( 'in-themes-panel' ) |
3066 | 3066 | .delay( 200 ).find( '.customize-themes-full-container' ).addClass( 'animate' ); |
3067 | 3067 | |
| 3068 | _.delay( function() { |
| 3069 | overlay.addClass( 'themes-panel-expanded' ); |
| 3070 | }, 200 ); |
| 3071 | |
3068 | 3072 | // Automatically open the installed themes section (except on small screens). |
3069 | 3073 | if ( 600 < window.innerWidth ) { |
3070 | 3074 | api.section( 'installed_themes' ).expand(); |
3071 | 3075 | } |
3072 | 3076 | } else { |
3073 | 3077 | overlay |
3074 | | .removeClass( 'in-themes-panel' ) |
| 3078 | .removeClass( 'in-themes-panel themes-panel-expanded' ) |
3075 | 3079 | .find( '.customize-themes-full-container' ).removeClass( 'animate' ); |
3076 | 3080 | } |
3077 | 3081 | }, |