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

git-svn-id: http://svn.automattic.com/wordpress/trunk@8309 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-07-10 16:59:17 +00:00
parent 6960418d18
commit 0728ecb254
3 changed files with 30 additions and 18 deletions

View File

@ -7,8 +7,10 @@ body {
margin: 2em auto 0 auto;
width: 700px;
padding: 1em 2em;
-moz-border-radius: 12px;
-khtml-border-radius: 12px;
-webkit-border-radius: 12px;
font-size: 62.5%;
border-radius: 12px;
}
a { color: #2583ad; text-decoration: none; }
@ -25,12 +27,12 @@ h2 { font-size: 16px; }
p, li {
padding-bottom: 2px;
font-size: 1.3em;
line-height: 1.8em;
font-size: 13px;
line-height: 18px;
}
code {
font-size: 1.3em;
font-size: 13px;
}
ul, ol { padding: 5px 5px 5px 22px; }
@ -38,12 +40,16 @@ ul, ol { padding: 5px 5px 5px 22px; }
#logo { margin: 6px 0 14px 0px; border-bottom: none;}
.step {
font-size: 2.2em;
margin: 20px 0 15px;
}
.step input { font-size: 2em; }
.step input {
font-size: 18px;
}
td input { font-size: 1.5em; }
a.button {
font-size: 18px;
}
.step, th { text-align: left; padding: 0; }
@ -79,12 +85,13 @@ td input { font-size: 1.5em; }
margin-bottom: 9px;
padding: 10px;
border-bottom: 8px solid #fff;
font-size: 12px;
}
.form-table th {
font-size: 12px;
font-size: 13px;
text-align: left;
padding: 12px 10px 10px 10px;
padding: 16px 10px 10px 10px;
border-bottom: 8px solid #fff;
width: 110px;
vertical-align: top;
@ -104,6 +111,12 @@ td input { font-size: 1.5em; }
font-size: 11px;
}
.form-table input {
line-height: 20px;
font-size: 15px;
padding: 2px;
}
h1 {
border-bottom: 1px solid #dadada;
clear: both;
@ -120,9 +133,10 @@ h1 {
#error-page p {
font-size: 14px;
line-height: 1.6em;
line-height: 16px;
margin: 25px 0 20px;
}
#error-page code {
font-size: 1em;
font-size: 15px;
}

View File

@ -54,7 +54,7 @@ switch($step) {
<td colspan="2"><label><input type="checkbox" name="blog_public" value="1" checked="checked" /> <?php _e('Allow my blog to appear in search engines like Google and Technorati.'); ?></label></td>
</tr>
</table>
<input type="submit" name="Submit" value="<?php _e('Install WordPress'); ?>" class="button" />
<p class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress'); ?>" class="button" /></p>
</form>
<?php
@ -98,7 +98,7 @@ switch($step) {
</tr>
</table>
<p><a href="../wp-login.php" class="button"><?php _e('Log In'); ?></a>
<p class="step"><a href="../wp-login.php" class="button"><?php _e('Log In'); ?></a></p>
<?php
break;

View File

@ -62,7 +62,7 @@ switch($step) {
<p><strong>If for any reason this automatic file creation doesn't work, don't worry. All this does is fill in the database information to a configuration file. You may also simply open <code>wp-config-sample.php</code> in a text editor, fill in your information, and save it as <code>wp-config.php</code>. </strong></p>
<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>
<p><a href="setup-config.php?step=1" class="button">Let&#8217;s go!</a></p>
<p class="step"><a href="setup-config.php?step=1" class="button">Let&#8217;s go!</a></p>
<?php
break;
@ -98,9 +98,7 @@ switch($step) {
<td>If you want to run multiple WordPress installations in a single database, change this.</td>
</tr>
</table>
<h2 class="step">
<input name="submit" type="submit" value="Submit" class="button" />
</h2>
<p class="step"><input name="submit" type="submit" value="Submit" class="button" /></p>
</form>
<?php
break;
@ -154,7 +152,7 @@ switch($step) {
?>
<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>
<p><a href="install.php" class="button">Run the install</a></p>
<p class="step"><a href="install.php" class="button">Run the install</a></p>
<?php
break;
}