Ticket #21368: 21368.19.diff
File 21368.19.diff, 2.7 KB (added by , 8 years ago) |
---|
-
wp-admin/includes/dashboard.php
1239 1239 <div class="welcome-panel-column-container"> 1240 1240 <div class="welcome-panel-column"> 1241 1241 <h4><?php _e( 'Get Started' ); ?></h4> 1242 <p><?php _e( 'First, tweak the look of your site:' ); ?></p>1243 1242 <a class="button-primary welcome-button load-customize hide-if-no-customize" href="<?php echo wp_customize_url(); ?>"><?php _e( 'Customize Your Site' ); ?></a> 1244 1243 <a class="button-primary welcome-button hide-if-customize" href="<?php echo admin_url( 'themes.php' ); ?>"><?php _e( 'Customize Your Site' ); ?></a> 1245 1244 <?php if ( current_user_can( 'install_themes' ) || ( current_user_can( 'switch_themes' ) && count( wp_get_themes( array( 'allowed' => true ) ) ) > 1 ) ) : ?> … … 1264 1263 </ul> 1265 1264 </div> 1266 1265 <div class="welcome-panel-column welcome-panel-last"> 1267 <h4><?php _e( ' Learn How To' ); ?></h4>1266 <h4><?php _e( 'More Actions' ); ?></h4> 1268 1267 <ul> 1269 <li><?php printf( '<a id="wp350_add_images" href="%s">' . __( 'Add image/media' ) . '</a>', admin_url( 'media-new.php' )); ?></li>1270 <li><?php printf( '<a id="wp350_widgets" href="%s">' . __( 'Add/remove widgets' ) . '</a>', admin_url( 'widgets.php' ) ); ?></li>1271 <li><?php printf( ' <a id="wp350_edit_menu" href="%s">' . __( 'Edit your navigation menu' ) . '</a>', admin_url( 'nav-menus.php' ) ); ?></li>1268 <li><?php printf( '<a href="%s">' . __( 'Learn more about getting started' ) . '</a>', 'http://codex.wordpress.org/First_Steps_With_WordPress' ); ?></li> 1269 <li><?php printf( '<a href="%s">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li> 1270 <li><?php printf( 'Manage <a href="%s">' . __( 'widgets' ) . '</a> or <a href="%s">' . __( 'menus' ) . '</a>', admin_url( 'widgets.php' ), admin_url( 'nav-menus.php' ) ); ?></li> 1272 1271 </ul> 1273 1272 </div> 1274 1273 </div> -
wp-admin/css/wp-admin.css
2190 2190 .welcome-panel h3 { 2191 2191 margin: 0; 2192 2192 font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif; 2193 font-size: 32px;2193 font-size: 21px; 2194 2194 font-weight: normal; 2195 2195 line-height: 1.2; 2196 2196 } … … 2200 2200 } 2201 2201 2202 2202 .welcome-panel .about-description { 2203 font-size: 1 8px;2203 font-size: 16px; 2204 2204 margin: 0; 2205 2205 } 2206 2206 … … 2227 2227 } 2228 2228 2229 2229 .welcome-button { 2230 margin: -9px 0 3px; 2231 padding: 1em 3em; 2232 font: normal 15px/1 sans-serif; 2230 height: 15px; 2231 margin: 10px 0 3px; 2232 padding: 0.95em 2.7em 0.85em; 2233 font: normal 14px/1 sans-serif; 2233 2234 } 2234 2235 2235 2236 .welcome-panel-content {