Make WordPress Core

Changeset 8297


Ignore:
Timestamp:
07/09/2008 04:33:31 AM (16 years ago)
Author:
ryan
Message:

Install styling from azaozz. fixes #7266

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/css/install.css

    r7130 r8297  
    3838#logo { margin: 6px 0 14px 0px; border-bottom: none;}
    3939
    40 .step a, .step input { font-size: 2em; }
     40.step {
     41    font-size: 2.2em;
     42}
     43
     44.step input { font-size: 2em; }
    4145
    4246td input { font-size: 1.5em; }
     
    4650.submit input, .button, .button-secondary {
    4751    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;
    5054    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;
    5659    color: #246;
    5760    background: #e5e5e5;
     
    6467.submit input:hover, .button:hover, .button-secondary:hover {
    6568    color: #d54e21;
     69    border-color: #535353;
    6670}
    6771
  • trunk/wp-admin/upgrade.php

    r7979 r8297  
    2626<h2><?php _e('No Upgrade Required'); ?></h2>
    2727<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>
    2929
    3030<?php else :
     
    3838<p><?php _e('Your WordPress database is out-of-date, and must be upgraded before you can continue.'); ?></p>
    3939<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&amp;backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></h2>
     40<p class="step"><a class="button" href="upgrade.php?step=1&amp;backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></p>
    4141<?php
    4242        break;
     
    5353<h2><?php _e('Upgrade Complete'); ?></h2>
    5454    <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>
    5656
    5757<!--
  • trunk/wp-includes/script-loader.php

    r8290 r8297  
    228228    $styles->add( 'widgets', '/wp-admin/css/widgets.css' );
    229229    $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' );
    231231    $styles->add( 'theme-editor', '/wp-admin/css/theme-editor.css' );
    232232    $styles->add( 'press-this', '/wp-admin/css/press-this.css', array(), '20080704' );
Note: See TracChangeset for help on using the changeset viewer.