Make WordPress Core

Changeset 6922


Ignore:
Timestamp:
02/20/2008 12:19:01 AM (19 years ago)
Author:
ryan
Message:

Login styling updates from mt. fixes #5929

Location:
trunk
Files:
3 edited

Legend:

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

    r6612 r6922  
    1111        background-color: #eaf3fa;
    1212        margin-left: 8px;
    13         -moz-border-radius: 3px;
    14         padding: 16px;
     13        padding: 16px 16px 40px 16px;
    1514        font-weight: bold;
     15        -moz-border-radius: 5px;
     16        -khtml-border-radius: 5px;
     17        -webkit-border-radius: 5px;
     18        border-radius: 5px;
    1619}
    1720
    18 form .forgetmenot { font-weight: normal; float: left; }
     21form .forgetmenot { font-weight: normal; float: left; margin-bottom: 0;}
     22
     23form .submit input {
     24        font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
     25        font-size: 14px;
     26        color: #246;
     27        padding: 4px 6px;
     28        background: #cee1ef;
     29        border: none;
     30        margin-top: -6px;
     31        -moz-border-radius: 2px;
     32        -khtml-border-radius: 2px;     
     33        -webkit-border-radius: 2px;
     34        border-radius: 2px;
     35}
     36
     37form .submit input:hover {
     38        color: #d54e21;
     39}
    1940
    2041form .submit { float: right; }
    2142
    22 form .submit input { padding: 2px; }
    23 
    24 form input { color: #246; }
     43form input { color: #555; }
    2544
    2645form p { margin-bottom: 24px; }
     
    5574}
    5675
     76#login_error {
     77        background-color: #f00;
     78        border-color: #800;
     79        color: #fff;
     80}
     81
    5782#nav { margin: 0 0 0 8px; padding: 16px; }
    5883
  • trunk/wp-login.php

    r6821 r6922  
    237237        </p>
    238238<?php do_action('lostpassword_form'); ?>
    239         <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Get New Password &raquo;'); ?>" tabindex="100" /></p>
    240     <div><br clear="all" /></div>
     239        <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Get New Password'); ?>" tabindex="100" /></p>
    241240</form>
    242241
     
    307306<?php do_action('register_form'); ?>
    308307        <p id="reg_passmail"><?php _e('A password will be e-mailed to you.') ?></p>
    309         <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Register &raquo;'); ?>" tabindex="100" /></p>
    310     <div><br clear="all" /></div>
     308        <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Register'); ?>" tabindex="100" /></p>
    311309</form>
    312310
     
    374372        <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /> <?php _e('Remember Me'); ?></label></p>
    375373        <p class="submit">
    376                 <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log in'); ?> &raquo;" tabindex="100" />
     374                <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log in'); ?>" tabindex="100" />
    377375                <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($redirect_to); ?>" />
    378376                <input type="hidden" name="testcookie" value="1" />
    379   <div><br clear="all" /></div>
    380377        </p>
    381378<?php else : ?>
Note: See TracChangeset for help on using the changeset viewer.