Changeset 36907
- Timestamp:
- 03/09/2016 09:18:53 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/customize-controls.css
r36904 r36907 957 957 .customize-control-background img, 958 958 .customize-control-cropped_image img, 959 .customize-control-site_icon img,960 959 .customize-control-header img { 961 960 width: 100%; -
trunk/src/wp-admin/css/site-icon.css
r33332 r36907 25 25 .site-icon-preview .browser-title { 26 26 left: 109px; 27 width: 72px; 28 white-space: nowrap; 27 29 } 28 30 … … 36 38 margin-top: 5px; 37 39 } 40 41 .customize-control-site_icon .favicon-preview { 42 float: left; 43 margin-right: 12px; 44 margin-bottom: 0; 45 } 46 47 .customize-control-site_icon .app-icon-preview { 48 margin-top: 9px; 49 } -
trunk/src/wp-includes/customize/class-wp-customize-site-icon-control.php
r36698 r36907 62 62 <div class="current"> 63 63 <div class="container"> 64 <div class="attachment-media-view attachment-media-view-{{ data.attachment.type }} {{ data.attachment.orientation }} site-icon-preview"> 65 <strong><?php _e( 'As a browser icon' ); ?></strong> 64 <div class="site-icon-preview"> 66 65 <div class="favicon-preview"> 67 <img src="images/browser.png" class="browser-preview" width="182" height="" alt="" />66 <img src="images/browser.png" class="browser-preview" width="182" alt="<?php esc_attr_e( 'Browser interface preview' ); ?>" /> 68 67 69 68 <div class="favicon"> … … 72 71 <span class="browser-title"><?php bloginfo( 'name' ); ?></span> 73 72 </div> 74 75 <strong><?php _e( 'As an app icon' ); ?></strong> 76 <p class="app-icon-preview"> 77 <img id="preview-app-icon" src="{{ data.attachment.sizes.full.url }}" alt="<?php esc_attr_e( 'Preview as an app icon' ); ?>"/> 78 </p> 73 <img class="app-icon-preview" src="{{ data.attachment.sizes.full.url }}" alt="<?php esc_attr_e( 'Preview as an app icon' ); ?>"/> 79 74 </div> 80 75 </div>
Note: See TracChangeset
for help on using the changeset viewer.