Changeset 40671
- Timestamp:
- 05/15/2017 06:50:50 PM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r40653 r40671 711 711 } 712 712 713 /* Remove descender space. */ 713 714 .customize-control .thumbnail-image, 714 715 .customize-control-header .current, 715 716 .customize-control .wp-media-wrapper.wp-video { 716 717 line-height: 0; 718 } 719 720 /* Remove descender space. */ 721 .customize-control-site_icon .favicon-preview .browser-preview { 722 vertical-align: top; 717 723 } 718 724 -
trunk/src/wp-includes/customize/class-wp-customize-header-image-control.php
r39145 r40671 205 205 <?php if ( current_user_can( 'upload_files' ) ): ?> 206 206 <button type="button"<?php echo $visibility; ?> class="button remove" aria-label="<?php esc_attr_e( 'Hide header image' ); ?>"><?php _e( 'Hide image' ); ?></button> 207 <button type="button" class="button new" id="header_image-button" aria-label="<?php esc_attr_e( 'Add new header image' ); ?>"><?php _e( 'Add new image' ); ?></button> 208 <div style="clear:both"></div> 207 <button type="button" class="button new" id="header_image-button" aria-label="<?php esc_attr_e( 'Add new header image' ); ?>"><?php _e( 'Add new image' ); ?></button> 209 208 <?php endif; ?> 210 209 </div> -
trunk/src/wp-includes/customize/class-wp-customize-media-control.php
r37426 r40671 193 193 <button type="button" class="button remove-button">{{ data.button_labels.remove }}</button> 194 194 <button type="button" class="button upload-button control-focus" id="{{ data.settings['default'] }}-button">{{ data.button_labels.change }}</button> 195 <div style="clear:both"></div>196 195 <# } #> 197 196 </div> … … 209 208 <button type="button" class="button upload-button" id="{{ data.settings['default'] }}-button">{{ data.button_labels.select }}</button> 210 209 <# } #> 211 <div style="clear:both"></div>212 210 </div> 213 211 </div> -
trunk/src/wp-includes/customize/class-wp-customize-site-icon-control.php
r40314 r40671 63 63 <div class="attachment-media-view"> 64 64 <# if ( data.attachment.sizes ) { #> 65 <div class="site-icon-preview ">65 <div class="site-icon-preview wp-clearfix"> 66 66 <div class="favicon-preview"> 67 67 <img src="<?php echo esc_url( admin_url( 'images/' . ( is_rtl() ? 'browser-rtl.png' : 'browser.png' ) ) ); ?>" class="browser-preview" width="182" alt="" /> … … 79 79 <button type="button" class="button remove-button"><?php echo $this->button_labels['remove']; ?></button> 80 80 <button type="button" class="button upload-button" id="{{ data.settings['default'] }}-button"><?php echo $this->button_labels['change']; ?></button> 81 <div style="clear:both"></div>82 81 <# } #> 83 82 </div> … … 95 94 <button type="button" class="button upload-button" id="{{ data.settings['default'] }}-button"><?php echo $this->button_labels['select']; ?></button> 96 95 <# } #> 97 <div style="clear:both"></div>98 96 </div> 99 97 </div>
Note: See TracChangeset
for help on using the changeset viewer.