Changeset 20108
- Timestamp:
- 03/04/2012 02:40:18 AM (13 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/css/customize-controls.dev.css
r20106 r20108 65 65 } 66 66 67 #customize-controls .theme-name { 67 #customize-info { 68 margin-top: 45px; 69 } 70 71 #customize-info .customize-section-title:after { 72 display: none; 73 } 74 #customize-info.open .customize-section-title:after { 75 display: block; 76 } 77 78 #customize-info .customize-section-title .theme-screenshot { 79 float: right; 80 width: auto; 81 height: 53px; 82 margin: -7px -13px 0 15px; 83 } 84 85 #customize-info.open .customize-section-title .theme-screenshot { 86 display: none; 87 } 88 89 #customize-info .theme-name { 68 90 font-size: 16px; 69 91 font-weight: bold; … … 72 94 } 73 95 74 #customize- controls.theme-screenshot {96 #customize-info .theme-screenshot { 75 97 width: 258px; 76 98 border: 1px solid #ccc; 77 99 } 78 100 101 #customize-info .theme-description { 102 margin-top: 1em; 103 color: #777; 104 line-height: 20px; 105 } 106 79 107 #customize-controls .submit { 80 108 text-align: center; 81 }82 83 #customize-info {84 padding-top: 55px;85 109 } 86 110 -
trunk/wp-includes/customize-controls.php
r20106 r20108 53 53 <div id="customize-info" class="customize-section"> 54 54 <div class="customize-section-title"> 55 <?php if ( $screenshot ) : ?> 56 <img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" /> 57 <?php endif; ?> 55 58 <strong class="theme-name"><?php echo $theme['Name']; ?></strong> 56 59 <span class="theme-by"><?php printf( __( 'By %s' ), $theme['Author'] ); ?></span> … … 59 62 <?php if ( $screenshot ) : ?> 60 63 <img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" /> 64 <?php endif; ?> 65 66 <?php if ( $theme->description ): ?> 67 <div class="theme-description"><?php echo $theme->description; ?></div> 61 68 <?php endif; ?> 62 69 </div>
Note: See TracChangeset
for help on using the changeset viewer.