Changeset 6922
- Timestamp:
- 02/20/2008 12:19:01 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/login.css
r6612 r6922 11 11 background-color: #eaf3fa; 12 12 margin-left: 8px; 13 -moz-border-radius: 3px; 14 padding: 16px; 13 padding: 16px 16px 40px 16px; 15 14 font-weight: bold; 15 -moz-border-radius: 5px; 16 -khtml-border-radius: 5px; 17 -webkit-border-radius: 5px; 18 border-radius: 5px; 16 19 } 17 20 18 form .forgetmenot { font-weight: normal; float: left; } 21 form .forgetmenot { font-weight: normal; float: left; margin-bottom: 0;} 22 23 form .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 37 form .submit input:hover { 38 color: #d54e21; 39 } 19 40 20 41 form .submit { float: right; } 21 42 22 form .submit input { padding: 2px; } 23 24 form input { color: #246; } 43 form input { color: #555; } 25 44 26 45 form p { margin-bottom: 24px; } … … 55 74 } 56 75 76 #login_error { 77 background-color: #f00; 78 border-color: #800; 79 color: #fff; 80 } 81 57 82 #nav { margin: 0 0 0 8px; padding: 16px; } 58 83 -
trunk/wp-login.php
r6821 r6922 237 237 </p> 238 238 <?php do_action('lostpassword_form'); ?> 239 <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Get New Password »'); ?>" 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> 241 240 </form> 242 241 … … 307 306 <?php do_action('register_form'); ?> 308 307 <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 »'); ?>" 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> 311 309 </form> 312 310 … … 374 372 <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /> <?php _e('Remember Me'); ?></label></p> 375 373 <p class="submit"> 376 <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log in'); ?> »" tabindex="100" />374 <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log in'); ?>" tabindex="100" /> 377 375 <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($redirect_to); ?>" /> 378 376 <input type="hidden" name="testcookie" value="1" /> 379 <div><br clear="all" /></div>380 377 </p> 381 378 <?php else : ?>
Note: See TracChangeset
for help on using the changeset viewer.