Remove rarr from about page text. Use a subtle background instead.
props markjaquith. see #25603. Built from https://develop.svn.wordpress.org/trunk@25840 git-svn-id: http://core.svn.wordpress.org/trunk@25840 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b13c7791a9
commit
b0eab438ad
|
@ -63,9 +63,9 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
|
||||||
$can_auto_update = $upgrader->should_update( 'core', $future_minor_update, ABSPATH );
|
$can_auto_update = $upgrader->should_update( 'core', $future_minor_update, ABSPATH );
|
||||||
}
|
}
|
||||||
if ( $can_auto_update ) : ?>
|
if ( $can_auto_update ) : ?>
|
||||||
<p><?php _e( '→ This site <strong>is</strong> able to apply these updates automatically. Cool!' ); ?></p>
|
<p class="about-auto-update cool"><?php _e( 'This site <strong>is</strong> able to apply these updates automatically. Cool!' ); ?></p>
|
||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
<p><?php printf( __( '→ This site <strong>is not</strong> able to apply these updates automatically. But we’ll email %s when there is a new security release.' ), esc_html( get_site_option( 'admin_email' ) ) ); ?></p>
|
<p class="about-auto-update"><?php printf( __( 'This site <strong>is not</strong> able to apply these updates automatically. But we’ll email %s when there is a new security release.' ), esc_html( get_site_option( 'admin_email' ) ) ); ?></p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5781,6 +5781,17 @@ h2 .nav-tab {
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.about-wrap .about-auto-update {
|
||||||
|
text-align: center;
|
||||||
|
background-color: #f9f9ef;
|
||||||
|
clear: both;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about-wrap .about-auto-update.cool {
|
||||||
|
background-color: #eff9ef;
|
||||||
|
}
|
||||||
|
|
||||||
.about-wrap .about-password-meter input {
|
.about-wrap .about-password-meter input {
|
||||||
font-size: 250%;
|
font-size: 250%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue