Make WordPress Core

Ticket #21598: 21598-16.patch

File 21598-16.patch, 3.6 KB (added by lessbloat, 12 years ago)
  • wp-login.php

     
    442442        </p>
    443443<?php do_action('lostpassword_form'); ?>
    444444        <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>
    446446</form>
    447447
    448448<p id="nav">
     
    501501        <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 ! " ? $ % ^ &amp; ).'); ?></p>
    502502
    503503        <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>
    505505</form>
    506506
    507507<p id="nav">
     
    557557        <p id="reg_passmail"><?php _e('A password will be e-mailed to you.') ?></p>
    558558        <br class="clear" />
    559559        <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>
    561561</form>
    562562
    563563<p id="nav">
     
    689689<?php do_action('login_form'); ?>
    690690        <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>
    691691        <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'); ?>" />
    693693<?php   if ( $interim_login ) { ?>
    694694                <input type="hidden" name="interim-login" value="1" />
    695695<?php   } else { ?>
  • wp-includes/css/buttons.css

     
    108108.button.focus,
    109109.button:focus,
    110110.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);
    113113}
    114114
    115115.button.active,
     
    191191.button-primary.focus,
    192192.button-primary:focus {
    193193        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);
    196196}
    197197
    198198.button-primary.active,
  • wp-admin/css/wp-admin.css

     
    64606460}
    64616461
    64626462.login .button-primary {
    6463         font-size: 13px !important;
    6464         padding: .4em .8em;
    64656463        float: right;
    64666464}
    64676465