Make WordPress Core

Changeset 25840


Ignore:
Timestamp:
10/18/2013 08:41:40 AM (11 years ago)
Author:
nacin
Message:

Remove rarr from about page text. Use a subtle background instead.

props markjaquith.
see #25603.

Location:
trunk/src/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/about.php

    r25839 r25840  
    6464            }
    6565            if ( $can_auto_update ) : ?>
    66                 <p><?php _e( '&rarr; This site <strong>is</strong> able to apply these updates automatically. Cool!' ); ?></p>
     66                <p class="about-auto-update cool"><?php _e( 'This site <strong>is</strong> able to apply these updates automatically. Cool!' ); ?></p>
    6767            <?php else : ?>
    68                 <p><?php printf( __( '&rarr; This site <strong>is not</strong> able to apply these updates automatically. But we&#8217;ll email %s when there is a new security release.' ), esc_html( get_site_option( 'admin_email' ) ) ); ?></p>
     68                <p class="about-auto-update"><?php printf( __( 'This site <strong>is not</strong> able to apply these updates automatically. But we&#8217;ll email %s when there is a new security release.' ), esc_html( get_site_option( 'admin_email' ) ) ); ?></p>
    6969        <?php endif; ?>
    7070    </div>
  • trunk/src/wp-admin/css/wp-admin.css

    r25839 r25840  
    57825782}
    57835783
     5784.about-wrap .about-auto-update {
     5785    text-align: center;
     5786    background-color: #f9f9ef;
     5787    clear: both;
     5788    padding: 10px;
     5789}
     5790
     5791.about-wrap .about-auto-update.cool {
     5792    background-color: #eff9ef;
     5793}
     5794
    57845795.about-wrap .about-password-meter input {
    57855796    font-size: 250%;
Note: See TracChangeset for help on using the changeset viewer.