diff --git a/src/wp-admin/css/customize-controls.css b/src/wp-admin/css/customize-controls.css
index 27def3f..15927a6 100644
a
|
b
|
body { |
193 | 193 | border-left: 4px solid #fff; |
194 | 194 | } |
195 | 195 | |
| 196 | #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { |
| 197 | color: #555; |
| 198 | background-color: #fff; |
| 199 | border-left: 4px solid #fff; |
| 200 | } |
| 201 | |
196 | 202 | #customize-theme-controls .accordion-section-title:after { |
197 | 203 | content: "\f345"; |
198 | 204 | color: #a0a5aa; |
… |
… |
p.customize-section-description { |
1189 | 1195 | margin: 0 0 15px; |
1190 | 1196 | } |
1191 | 1197 | |
| 1198 | #customize-controls .customize-themes-panel .accordion-section-title:hover, |
1192 | 1199 | #customize-controls .customize-themes-panel .accordion-section-title { |
1193 | 1200 | margin: 15px -8px; |
1194 | 1201 | } |
diff --git a/src/wp-admin/js/customize-controls.js b/src/wp-admin/js/customize-controls.js
index 8ca8318..25145a1 100644
a
|
b
|
|
1267 | 1267 | |
1268 | 1268 | overlay.addClass( 'in-themes-panel' ); |
1269 | 1269 | section.addClass( 'current-panel' ); |
| 1270 | _.delay( panel.renderScreenshots, 10 ); // Wait for the controls |
| 1271 | panel.$customizeSidebar.on( 'scroll.customize-themes-section', _.throttle( panel.renderScreenshots, 300 ) ); |
1270 | 1272 | |
1271 | 1273 | } else if ( ! expanded && section.hasClass( 'current-panel' ) ) { |
1272 | 1274 | panel._animateChangeExpanded( function() { |
… |
… |
|
1283 | 1285 | |
1284 | 1286 | overlay.removeClass( 'in-themes-panel' ); |
1285 | 1287 | section.removeClass( 'current-panel' ); |
| 1288 | panel.$customizeSidebar.off( 'scroll.customize-themes-section' ); |
1286 | 1289 | } |
1287 | 1290 | }, |
1288 | 1291 | |