diff --git src/wp-admin/css/customize-controls.css src/wp-admin/css/customize-controls.css
index ddbf20f..b721dc5 100644
|
|
h3.customize-section-title { |
498 | 498 | } |
499 | 499 | |
500 | 500 | .wp-full-overlay.section-open #customize-controls .wp-full-overlay-sidebar-content { |
501 | | visibility: hidden; |
502 | 501 | overflow-y: hidden; |
503 | 502 | } |
504 | 503 | |
diff --git src/wp-admin/js/customize-widgets.js src/wp-admin/js/customize-widgets.js
index 8aa603a..f1490a5 100644
|
|
|
1270 | 1270 | |
1271 | 1271 | if ( expanded ) { |
1272 | 1272 | |
1273 | | if ( 'undefined' != typeof api.section( self.section ) && ! api.section( self.section ).expanded() ) { |
| 1273 | if ( self.section() && api.section( self.section() ) ) { |
1274 | 1274 | self.expandControlSection(); |
1275 | 1275 | } |
1276 | 1276 | |