Changeset 39153
- Timestamp:
- 11/07/2016 09:46:43 PM (7 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r39149 r39153 191 191 background-color: #fff; 192 192 border-bottom: 1px solid #eee; 193 border-left: 4px solid #fff; 194 } 195 196 #customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title { 197 color: #555; 198 background-color: #fff; 193 199 border-left: 4px solid #fff; 194 200 } … … 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; -
trunk/src/wp-admin/js/customize-controls.js
r39149 r39153 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' ) ) { … … 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 },
Note: See TracChangeset
for help on using the changeset viewer.