Ticket #21598: 21598-17.patch
File 21598-17.patch, 3.8 KB (added by , 12 years ago) |
---|
-
wp-login.php
442 442 </p> 443 443 <?php do_action('lostpassword_form'); ?> 444 444 <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" /> 445 <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button -primary" value="<?php esc_attr_e('Get New Password'); ?>" /></p>445 <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Get New Password'); ?>" /></p> 446 446 </form> 447 447 448 448 <p id="nav"> … … 501 501 <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).'); ?></p> 502 502 503 503 <br class="clear" /> 504 <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button -primary" value="<?php esc_attr_e('Reset Password'); ?>" /></p>504 <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Reset Password'); ?>" /></p> 505 505 </form> 506 506 507 507 <p id="nav"> … … 557 557 <p id="reg_passmail"><?php _e('A password will be e-mailed to you.') ?></p> 558 558 <br class="clear" /> 559 559 <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" /> 560 <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button -primary" value="<?php esc_attr_e('Register'); ?>" /></p>560 <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Register'); ?>" /></p> 561 561 </form> 562 562 563 563 <p id="nav"> … … 689 689 <?php do_action('login_form'); ?> 690 690 <p class="forgetmenot"><label for="rememberme"><input name="rememberme" type="checkbox" id="rememberme" value="forever" <?php checked( $rememberme ); ?> /> <?php esc_attr_e('Remember Me'); ?></label></p> 691 691 <p class="submit"> 692 <input type="submit" name="wp-submit" id="wp-submit" class="button -primary" value="<?php esc_attr_e('Log In'); ?>" />692 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Log In'); ?>" /> 693 693 <?php if ( $interim_login ) { ?> 694 694 <input type="hidden" name="interim-login" value="1" /> 695 695 <?php } else { ?> -
wp-includes/css/buttons.css
108 108 .button.focus, 109 109 .button:focus, 110 110 .button-secondary:focus { 111 -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);112 box-shadow: 0 1px 2px rgba(0,0,0,0.1);111 -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2); 112 box-shadow: 1px 1px 1px rgba(0,0,0,.2); 113 113 } 114 114 115 115 .button.active, … … 191 191 .button-primary.focus, 192 192 .button-primary:focus { 193 193 border-color: #0e3950; 194 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 0 1px 2px rgba(0,0,0,0.1);195 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 0 1px 2px rgba(0,0,0,0.1);194 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,0.4); 195 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,0.4); 196 196 } 197 197 198 198 .button-primary.active, -
wp-admin/css/wp-admin.css
876 876 width: 200px; 877 877 } 878 878 879 .tablenav #changeit, 880 .tablenav #delete_all { 881 margin-top: 1px; 882 } 883 879 884 #wpcontent option { 880 885 padding: 2px; 881 886 } … … 6460 6465 } 6461 6466 6462 6467 .login .button-primary { 6463 font-size: 13px !important;6464 padding: .4em .8em;6465 6468 float: right; 6466 6469 } 6467 6470