Changeset 25840
- Timestamp:
- 10/18/2013 08:41:40 AM (11 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r25839 r25840 64 64 } 65 65 if ( $can_auto_update ) : ?> 66 <p ><?php _e( '→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> 67 67 <?php else : ?> 68 <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>68 <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> 69 69 <?php endif; ?> 70 70 </div> -
trunk/src/wp-admin/css/wp-admin.css
r25839 r25840 5782 5782 } 5783 5783 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 5784 5795 .about-wrap .about-password-meter input { 5785 5796 font-size: 250%;
Note: See TracChangeset
for help on using the changeset viewer.