Changeset 41860
- Timestamp:
- 10/13/2017 09:20:42 PM (7 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r41853 r41860 128 128 } 129 129 130 .outer-section-open .wp-full-overlay.expanded #customize-preview{130 .outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main { 131 131 left: 300px; 132 132 opacity: 0.4; 133 } 134 135 .outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, 136 .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, 137 .adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, 138 .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, 139 .adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main, 140 .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { 141 left: 64%; 133 142 } 134 143 … … 380 389 width: 100%; 381 390 margin-left: -12px; 382 padding: 12px 12px 10px;391 padding: 12px; 383 392 background: #ffffff; 384 393 border-bottom: 1px solid #ddd; … … 507 516 } 508 517 509 #customize-controls .customize-info .customize-section-description, 510 #customize-outer-theme-controls .customize-section-description { 518 #customize-controls .customize-info .customize-section-description { 511 519 margin-bottom: 15px; 512 520 } … … 563 571 #customize-controls .control-section .accordion-section-title:hover, 564 572 #customize-controls .control-section.open .accordion-section-title, 565 #customize-outer-theme-controls .control-section .accordion-section-title:hover,566 #customize-outer-theme-controls .control-section.open .accordion-section-title,567 #customize-outer-theme-controls .control-section .accordion-section-title:focus,568 573 #customize-controls .control-section .accordion-section-title:focus { 569 574 color: #0073aa; … … 1725 1730 #customize-controls .customize-section-title span.customize-action, 1726 1731 #customize-controls .control-section-themes .accordion-section-title span.customize-action, 1727 #customize-controls .customize-section-title span.customize-action, 1728 #customize-outer-theme-controls .customize-section-title span.customize-action { 1732 #customize-controls .customize-section-title span.customize-action { 1729 1733 font-size: 13px; 1730 1734 display: block; … … 2792 2796 } 2793 2797 2798 @media screen and ( max-width: 1200px ) { 2799 .outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, 2800 .adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main, 2801 .adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main { 2802 left: 67%; 2803 } 2804 } 2805 2794 2806 @media screen and ( max-width: 640px ) { 2795 2807 #customize-controls { … … 2838 2850 } 2839 2851 2852 .preview-only #customize-save-button-wrapper { 2853 margin-top: -46px; 2854 } 2855 2840 2856 .customize-controls-preview-toggle .preview:before, 2841 2857 .customize-controls-preview-toggle .controls:before { -
trunk/src/wp-admin/js/customize-controls.js
r41845 r41860 6789 6789 'previewerAlive', 6790 6790 'editShortcutVisibility', 6791 'changesetLocked' 6791 'changesetLocked', 6792 'previewedDevice' 6792 6793 ], function( name ) { 6793 6794 api.state.create( name ); … … 8318 8319 }()); 8319 8320 8320 // Previewed device bindings. 8321 api.previewedDevice = new api.Value();8321 // Previewed device bindings. (The api.previewedDevice property is how this Value was first introduced, but since it has moved to api.state.) 8322 api.previewedDevice = api.state( 'previewedDevice' ); 8322 8323 8323 8324 // Set the default device. -
trunk/src/wp-admin/js/customize-nav-menus.js
r41832 r41860 682 682 683 683 this.itemSectionHeight(); 684 685 if ( api.section.has( 'publish_settings' ) ) { 686 api.section( 'publish_settings' ).collapse(); 687 } 684 688 685 689 $( 'body' ).addClass( 'adding-menu-items' ); -
trunk/src/wp-admin/js/customize-widgets.js
r41726 r41860 331 331 } ); 332 332 333 if ( api.section.has( 'publish_settings' ) ) { 334 api.section( 'publish_settings' ).collapse(); 335 } 336 333 337 $( 'body' ).addClass( 'adding-widget' ); 334 338
Note: See TracChangeset
for help on using the changeset viewer.