Theme Customizer: Remove small screenshot from theme title bar. see #19910.

git-svn-id: https://develop.svn.wordpress.org/trunk@20393 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2012-04-07 00:33:36 +00:00
parent f26e53d4d9
commit dfe7dd824e
2 changed files with 0 additions and 21 deletions

View File

@ -60,24 +60,6 @@ body {
margin-top: 45px;
}
#customize-info .customize-section-title:after {
display: none;
}
#customize-info.open .customize-section-title:after {
display: block;
}
#customize-info .customize-section-title .theme-screenshot {
float: right;
width: auto;
height: 53px;
margin: -7px -13px 0 15px;
}
#customize-info.open .customize-section-title .theme-screenshot {
display: none;
}
#customize-info .theme-name {
font-size: 16px;
font-weight: bold;

View File

@ -54,9 +54,6 @@ do_action( 'customize_controls_print_scripts' );
<div id="customize-info" class="customize-section">
<div class="customize-section-title">
<?php if ( $screenshot ) : ?>
<img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" />
<?php endif; ?>
<strong class="theme-name"><?php echo $theme['Name']; ?></strong>
<span class="theme-by"><?php printf( __( 'By %s' ), $theme['Author'] ); ?></span>
</div>