Changeset 41802
- Timestamp:
- 10/09/2017 11:00:39 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r41771 r41802 39 39 margin-top: 0; 40 40 } 41 42 #customize-save-button-wrapper .save:focus, #publish-settings:focus { 43 box-shadow: 0 1px 0 #0073aa, 0 0 2px 1px #33b3db; /* This is default box shadow for focus */ 44 } 45 41 46 #customize-save-button-wrapper .save.has-next-sibling { 42 47 border-radius: 3px 0 0 3px; … … 47 52 top: 0; 48 53 bottom: 0; 49 left: -301px;54 left: 0; 50 55 visibility: hidden; 51 56 overflow-x: hidden; 52 57 overflow-y: auto; 53 width: 300px;58 width: 100%; 54 59 margin: 0; 55 z-index: 4;60 z-index: -1; 56 61 background: #eee; 57 62 transition: left .18s; 58 63 border-right: 1px solid #ddd; 64 border-left: 1px solid #ddd; 59 65 height: 100%; 60 66 } … … 74 80 .outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { 75 81 visibility: visible; 76 left: 0;82 left: 100%; 77 83 transition: left .18s; 78 84 } … … 131 137 overflow-y: auto; 132 138 overflow-x: hidden; 139 } 140 141 .outer-section-open #customize-controls .wp-full-overlay-sidebar-content { 142 background: #eee; 133 143 } 134 144 … … 2829 2839 } 2830 2840 2841 body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content { 2842 left: -100%; 2843 } 2844 2845 body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content { 2846 left: 0; 2847 } 2848 2831 2849 #available-widgets .customize-section-title, 2832 2850 #available-menu-items .customize-section-title { -
trunk/src/wp-admin/customize.php
r41677 r41802 163 163 <span class="screen-reader-text"><?php _e( 'Close the Customizer and go back to the previous page' ); ?></span> 164 164 </a> 165 </div> 166 167 <div id="customize-sidebar-outer-content"> 168 <div id="customize-outer-theme-controls"> 169 <ul class="customize-outer-pane-parent"><?php // Outer panel and sections are not implemented, but its here as a placeholder to avoid any side-effect in api.Section. ?></ul> 170 </div> 165 171 </div> 166 172 … … 218 224 </form> 219 225 <div id="customize-preview" class="wp-full-overlay-main"></div> 220 <div id="customize-sidebar-outer-content">221 <div id="customize-outer-theme-controls">222 <ul class="customize-outer-pane-parent"><?php // Outer panel and sections are not implemented, but its here as a placeholder to avoid any side-effect in api.Section. ?></ul>223 </div>224 </div>225 226 <?php 226 227 -
trunk/src/wp-includes/class-wp-customize-manager.php
r41797 r41802 3771 3771 <span class="screen-reader-text"><?php _e( '(opens in a new window)' ); ?></span> 3772 3772 </a> 3773 <input id="{{ elementPrefix }}customize-preview-link-input" readonly class="preview-control-element" data-component="input">3773 <input id="{{ elementPrefix }}customize-preview-link-input" readonly tabindex="-1" class="preview-control-element" data-component="input"> 3774 3774 <button class="customize-copy-preview-link preview-control-element button button-secondary" data-component="button" data-copy-text="<?php esc_attr_e( 'Copy' ); ?>" data-copied-text="<?php esc_attr_e( 'Copied' ); ?>" ><?php esc_html_e( 'Copy' ); ?></button> 3775 3775 </div>
Note: See TracChangeset
for help on using the changeset viewer.