Make WordPress Core

Changeset 8309


Ignore:
Timestamp:
07/10/2008 04:59:17 PM (17 years ago)
Author:
ryan
Message:

Fix font sizes in the install/upgrade screens. Props azaozz. fixes #7276

Location:
trunk/wp-admin
Files:
3 edited

Legend:

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

    r8297 r8309  
    88    width: 700px;
    99    padding: 1em 2em;
     10    -moz-border-radius: 12px;
     11    -khtml-border-radius: 12px;
    1012    -webkit-border-radius: 12px;
    11     font-size: 62.5%;
     13    border-radius: 12px;
    1214}
    1315
     
    2628p, li {
    2729    padding-bottom: 2px;
    28     font-size: 1.3em;
    29     line-height: 1.8em;
     30    font-size: 13px;
     31    line-height: 18px;
    3032}
    3133
    3234code {
    33     font-size: 1.3em;
     35    font-size: 13px;
    3436}
    3537
     
    3941
    4042.step {
    41     font-size: 2.2em;
     43    margin: 20px 0 15px;
    4244}
    4345
    44 .step input { font-size: 2em; }
     46.step input {
     47    font-size: 18px;
     48}
    4549
    46 td input { font-size: 1.5em; }
     50a.button {
     51    font-size: 18px;
     52}
    4753
    4854.step, th { text-align: left; padding: 0; }
     
    8086    padding: 10px;
    8187    border-bottom: 8px solid #fff;
     88    font-size: 12px;
    8289}
    8390
    8491.form-table th {
    85     font-size: 12px;
     92    font-size: 13px;
    8693    text-align: left;
    87     padding: 12px 10px 10px 10px;
     94    padding: 16px 10px 10px 10px;
    8895    border-bottom: 8px solid #fff;
    8996    width: 110px;
     
    105112}
    106113
     114.form-table input {
     115    line-height: 20px;
     116    font-size: 15px;
     117    padding: 2px;
     118}
     119
    107120h1 {
    108121    border-bottom: 1px solid #dadada;
     
    121134#error-page p {
    122135    font-size: 14px;
    123     line-height: 1.6em;
     136    line-height: 16px;
     137    margin: 25px 0 20px;
    124138}
    125139
    126140#error-page code {
    127     font-size: 1em;
     141    font-size: 15px;
    128142}
  • trunk/wp-admin/install.php

    r8202 r8309  
    5555        </tr>
    5656    </table>
    57     <input type="submit" name="Submit" value="<?php _e('Install WordPress'); ?>" class="button" />
     57    <p class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress'); ?>" class="button" /></p>
    5858</form>
    5959
     
    9999</table>
    100100
    101 <p><a href="../wp-login.php" class="button"><?php _e('Log In'); ?></a>
     101<p class="step"><a href="../wp-login.php" class="button"><?php _e('Log In'); ?></a></p>
    102102
    103103<?php
  • trunk/wp-admin/setup-config.php

    r8238 r8309  
    6363<p>In all likelihood, these items were supplied to you by your ISP. If you do not have this information, then you will need to contact them before you can continue. If you&#8217;re all ready&hellip;</p>
    6464
    65 <p><a href="setup-config.php?step=1" class="button">Let&#8217;s go!</a></p>
     65<p class="step"><a href="setup-config.php?step=1" class="button">Let&#8217;s go!</a></p>
    6666<?php
    6767    break;
     
    9999        </tr>
    100100    </table>
    101     <h2 class="step">
    102     <input name="submit" type="submit" value="Submit" class="button" />
    103     </h2>
     101    <p class="step"><input name="submit" type="submit" value="Submit" class="button" /></p>
    104102</form>
    105103<?php
     
    155153<p>All right sparky! You've made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to&hellip;</p>
    156154
    157 <p><a href="install.php" class="button">Run the install</a></p>
     155<p class="step"><a href="install.php" class="button">Run the install</a></p>
    158156<?php
    159157    break;
Note: See TracChangeset for help on using the changeset viewer.