Changeset 8297
- Timestamp:
- 07/09/2008 04:33:31 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/install.css
r7130 r8297 38 38 #logo { margin: 6px 0 14px 0px; border-bottom: none;} 39 39 40 .step a, .step input { font-size: 2em; } 40 .step { 41 font-size: 2.2em; 42 } 43 44 .step input { font-size: 2em; } 41 45 42 46 td input { font-size: 1.5em; } … … 46 50 .submit input, .button, .button-secondary { 47 51 font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; 48 padding: 6px;49 border: none;52 padding: 5px 7px 7px; 53 border: 1px solid #a3a3a3; 50 54 margin-left: 0; 51 font-size: 13px !important; 52 -moz-border-radius: 2px; 53 -khtml-border-radius: 2px; 54 -webkit-border-radius: 2px; 55 border-radius: 2px; 55 -moz-border-radius: 3px; 56 -khtml-border-radius: 3px; 57 -webkit-border-radius: 3px; 58 border-radius: 3px; 56 59 color: #246; 57 60 background: #e5e5e5; … … 64 67 .submit input:hover, .button:hover, .button-secondary:hover { 65 68 color: #d54e21; 69 border-color: #535353; 66 70 } 67 71 -
trunk/wp-admin/upgrade.php
r7979 r8297 26 26 <h2><?php _e('No Upgrade Required'); ?></h2> 27 27 <p><?php _e('Your WordPress database is already up-to-date!'); ?></p> 28 < h2 class="step"><a href="<?php echo get_option('home'); ?>/"><?php _e('Continue'); ?></a></h2>28 <p class="step"><a class="button" href="<?php echo get_option('home'); ?>/"><?php _e('Continue'); ?></a></p> 29 29 30 30 <?php else : … … 38 38 <p><?php _e('Your WordPress database is out-of-date, and must be upgraded before you can continue.'); ?></p> 39 39 <p><?php _e('The upgrade process may take a while, so please be patient.'); ?></p> 40 < h2 class="step"><a href="upgrade.php?step=1&backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></h2>40 <p class="step"><a class="button" href="upgrade.php?step=1&backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></p> 41 41 <?php 42 42 break; … … 53 53 <h2><?php _e('Upgrade Complete'); ?></h2> 54 54 <p><?php _e('Your WordPress database has been successfully upgraded!'); ?></p> 55 < h2 class="step"><a href="<?php echo $backto; ?>"><?php _e('Continue'); ?></a></h2>55 <p class="step"><a class="button" href="<?php echo $backto; ?>"><?php _e('Continue'); ?></a></p> 56 56 57 57 <!-- -
trunk/wp-includes/script-loader.php
r8290 r8297 228 228 $styles->add( 'widgets', '/wp-admin/css/widgets.css' ); 229 229 $styles->add( 'dashboard', '/wp-admin/css/dashboard.css' ); 230 $styles->add( 'install', '/wp-admin/css/install.css' );230 $styles->add( 'install', '/wp-admin/css/install.css', array(), '20080708' ); 231 231 $styles->add( 'theme-editor', '/wp-admin/css/theme-editor.css' ); 232 232 $styles->add( 'press-this', '/wp-admin/css/press-this.css', array(), '20080704' );
Note: See TracChangeset
for help on using the changeset viewer.