Make WordPress Core

Ticket #27314: 27314.diff

File 27314.diff, 65.1 KB (added by afercia, 8 years ago)
  • src/wp-admin/css/customize-controls.css

     
    12041204 * Widgets and Menus common styles
    12051205 */
    12061206
    1207 /* higher specificity than .wp-core-ui .button-secondary */
     1207/* higher specificity than .wp-core-ui .button */
    12081208#customize-theme-controls .add-new-widget,
    12091209#customize-theme-controls .add-new-menu-item {
    12101210        cursor: pointer;
  • src/wp-admin/css/ie.css

     
    221221}
    222222
    223223#wpbody-content input.button,
    224 #wpbody-content input.button-primary,
    225 #wpbody-content input.button-secondary {
     224#wpbody-content input.button-primary {
    226225        overflow: visible;
    227226}
    228227
     
    447446        display: block;
    448447}
    449448
    450 .tablenav .button-secondary,
    451 .nav .button-secondary {
     449.tablenav .button,
     450.nav .button {
    452451        padding-top: 2px;
    453452        padding-bottom: 2px;
    454453}
     
    507506        border-collapse: collapse;
    508507}
    509508
    510 .tablenav a.button-secondary {
     509.tablenav a.button {
    511510        display: inline-block;
    512511        padding: 2px 5px;
    513512}
  • src/wp-admin/css/install.css

     
    443443        margin-right: 15px;
    444444}
    445445
    446 .button-secondary.hide-if-no-js,
     446.button.hide-if-no-js,
    447447.hide-if-no-js {
    448448        display: none;
    449449}
  • src/wp-admin/css/list-tables.css

     
    656656        margin-left: 2px;
    657657}
    658658
     659.tablenav a.button,
    659660.tablenav a.button-secondary {
    660661        display: block;
    661662        margin: 3px 8px 0 0;
  • src/wp-admin/css/themes.css

     
    114114        margin-right: 3px;
    115115}
    116116
    117 .theme-browser .theme .theme-actions .button-secondary {
     117.theme-browser .theme .theme-actions .button {
    118118        float: none;
    119119        margin-left: 3px;
    120120}
  • src/wp-admin/custom-background.php

     
    242242<td>
    243243<form method="post">
    244244<?php wp_nonce_field('custom-background-remove', '_wpnonce-custom-background-remove'); ?>
    245 <?php submit_button( __( 'Remove Background Image' ), 'button', 'remove-background', false ); ?><br/>
     245<?php submit_button( __( 'Remove Background Image' ), '', 'remove-background', false ); ?><br/>
    246246<?php _e('This will remove the background image. You will not be able to restore any customizations.') ?>
    247247</form>
    248248</td>
     
    256256<td>
    257257<form method="post">
    258258<?php wp_nonce_field('custom-background-reset', '_wpnonce-custom-background-reset'); ?>
    259 <?php submit_button( __( 'Restore Original Image' ), 'button', 'reset-background', false ); ?><br/>
     259<?php submit_button( __( 'Restore Original Image' ), '', 'reset-background', false ); ?><br/>
    260260<?php _e('This will restore the original background image. You will not be able to restore any customizations.') ?>
    261261</form>
    262262</td>
     
    272272                <input type="file" id="upload" name="import" />
    273273                <input type="hidden" name="action" value="save" />
    274274                <?php wp_nonce_field( 'custom-background-upload', '_wpnonce-custom-background-upload' ); ?>
    275                 <?php submit_button( __( 'Upload' ), 'button', 'submit', false ); ?>
     275                <?php submit_button( __( 'Upload' ), '', 'submit', false ); ?>
    276276        </p>
    277277        <p>
    278278                <label for="choose-from-library-link"><?php _e( 'Or choose an image from your media library:' ); ?></label><br />
  • src/wp-admin/custom-header.php

     
    576576                <input type="file" id="upload" name="import" />
    577577                <input type="hidden" name="action" value="save" />
    578578                <?php wp_nonce_field( 'custom-header-upload', '_wpnonce-custom-header-upload' ); ?>
    579                 <?php submit_button( __( 'Upload' ), 'button', 'submit', false ); ?>
     579                <?php submit_button( __( 'Upload' ), '', 'submit', false ); ?>
    580580        </p>
    581581        <?php
    582582                $modal_update_href = esc_url( add_query_arg( array(
     
    634634<th scope="row"><?php _e( 'Remove Image' ); ?></th>
    635635<td>
    636636        <p><?php _e( 'This will remove the header image. You will not be able to restore any customizations.' ) ?></p>
    637         <?php submit_button( __( 'Remove Header Image' ), 'button', 'removeheader', false ); ?>
     637        <?php submit_button( __( 'Remove Header Image' ), '', 'removeheader', false ); ?>
    638638</td>
    639639</tr>
    640640        <?php endif;
     
    645645<th scope="row"><?php _e( 'Reset Image' ); ?></th>
    646646<td>
    647647        <p><?php _e( 'This will restore the original header image. You will not be able to restore any customizations.' ) ?></p>
    648         <?php submit_button( __( 'Restore Original Header Image' ), 'button', 'resetheader', false ); ?>
     648        <?php submit_button( __( 'Restore Original Header Image' ), '', 'resetheader', false ); ?>
    649649</td>
    650650</tr>
    651651        <?php endif; ?>
     
    823823        <?php submit_button( __( 'Crop and Publish' ), 'primary', 'submit', false ); ?>
    824824        <?php
    825825        if ( isset( $oitar ) && 1 == $oitar && ( current_theme_supports( 'custom-header', 'flex-height' ) || current_theme_supports( 'custom-header', 'flex-width' ) ) )
    826                 submit_button( __( 'Skip Cropping, Publish Image as Is' ), 'secondary', 'skip-cropping', false );
     826                submit_button( __( 'Skip Cropping, Publish Image as Is' ), '', 'skip-cropping', false );
    827827        ?>
    828828        </p>
    829829</form>
  • src/wp-admin/customize.php

     
    168168                                <?php endforeach; ?>
    169169                        </div>
    170170                        <?php endif; ?>
    171                         <button type="button" class="collapse-sidebar button-secondary" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
     171                        <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
    172172                                <span class="collapse-sidebar-arrow"></span>
    173173                                <span class="collapse-sidebar-label"><?php _e( 'Collapse' ); ?></span>
    174174                        </button>
  • src/wp-admin/includes/class-wp-comments-list-table.php

     
    351351                         * @since 3.5.0
    352352                         */
    353353                        do_action( 'restrict_manage_comments' );
    354                         submit_button( __( 'Filter' ), 'button', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
     354                        submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
    355355                }
    356356
    357357                if ( ( 'spam' === $comment_status || 'trash' === $comment_status ) && current_user_can( 'moderate_comments' ) ) {
  • src/wp-admin/includes/class-wp-links-list-table.php

     
    112112
    113113                        echo '<label class="screen-reader-text" for="cat_id">' . __( 'Filter by category' ) . '</label>';
    114114                        wp_dropdown_categories( $dropdown_options );
    115                         submit_button( __( 'Filter' ), 'button', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
     115                        submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
    116116?>
    117117                </div>
    118118<?php
  • src/wp-admin/includes/class-wp-list-table.php

     
    361361<p class="search-box">
    362362        <label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php echo $text; ?>:</label>
    363363        <input type="search" id="<?php echo esc_attr( $input_id ); ?>" name="s" value="<?php _admin_search_query(); ?>" />
    364         <?php submit_button( $text, 'button', '', false, array( 'id' => 'search-submit' ) ); ?>
     364        <?php submit_button( $text, '', '', false, array( 'id' => 'search-submit' ) ); ?>
    365365</p>
    366366<?php
    367367        }
  • src/wp-admin/includes/class-wp-media-list-table.php

     
    174174                        /** This action is documented in wp-admin/includes/class-wp-posts-list-table.php */
    175175                        do_action( 'restrict_manage_posts', $this->screen->post_type );
    176176
    177                         submit_button( __( 'Filter' ), 'button', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
     177                        submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
    178178                }
    179179
    180180                if ( $this->is_trash && current_user_can( 'edit_others_posts' ) ) {
  • src/wp-admin/includes/class-wp-plugin-install-list-table.php

     
    488488                                                        }
    489489
    490490                                                        $action_links[] = sprintf(
    491                                                                 '<a href="%1$s" class="button activate-now button-secondary" aria-label="%2$s">%3$s</a>',
     491                                                                '<a href="%1$s" class="button activate-now" aria-label="%2$s">%3$s</a>',
    492492                                                                esc_url( $activate_url ),
    493493                                                                esc_attr( sprintf( $button_label, $plugin['name'] ) ),
    494494                                                                $button_text
  • src/wp-admin/includes/class-wp-plugins-list-table.php

     
    367367                <p class="search-box">
    368368                        <label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php echo $text; ?>:</label>
    369369                        <input type="search" id="<?php echo esc_attr( $input_id ); ?>" class="wp-filter-search" name="s" value="<?php _admin_search_query(); ?>" placeholder="<?php esc_attr_e( 'Search installed plugins...' ); ?>"/>
    370                         <?php submit_button( $text, 'button hide-if-js', '', false, array( 'id' => 'search-submit' ) ); ?>
     370                        <?php submit_button( $text, 'hide-if-js', '', false, array( 'id' => 'search-submit' ) ); ?>
    371371                </p>
    372372                <?php
    373373        }
     
    496496                echo '<div class="alignleft actions">';
    497497
    498498                if ( 'recently_activated' == $status ) {
    499                         submit_button( __( 'Clear List' ), 'button', 'clear-recent-list', false );
     499                        submit_button( __( 'Clear List' ), '', 'clear-recent-list', false );
    500500                } elseif ( 'top' === $which && 'mustuse' === $status ) {
    501501                        /* translators: %s: mu-plugins directory name */
    502502                        echo '<p>' . sprintf( __( 'Files in the %s directory are executed automatically.' ),
  • src/wp-admin/includes/class-wp-posts-list-table.php

     
    479479                         */
    480480                        do_action( 'restrict_manage_posts', $this->screen->post_type, $which );
    481481
    482                         submit_button( __( 'Filter' ), 'button', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
     482                        submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
    483483                }
    484484
    485485                if ( $this->is_trash && current_user_can( get_post_type_object( $this->screen->post_type )->cap->edit_others_posts ) ) {
     
    17131713                }
    17141714        ?>
    17151715                <p class="submit inline-edit-save">
    1716                         <button type="button" class="button-secondary cancel alignleft"><?php _e( 'Cancel' ); ?></button>
     1716                        <button type="button" class="button cancel alignleft"><?php _e( 'Cancel' ); ?></button>
    17171717                        <?php if ( ! $bulk ) {
    17181718                                wp_nonce_field( 'inlineeditnonce', '_inline_edit', false );
    17191719                                ?>
    1720                                 <button type="button" class="button-primary save alignright"><?php _e( 'Update' ); ?></button>
     1720                                <button type="button" class="button button-primary save alignright"><?php _e( 'Update' ); ?></button>
    17211721                                <span class="spinner"></span>
    17221722                        <?php } else {
    1723                                 submit_button( __( 'Update' ), 'button-primary alignright', 'bulk_edit', false );
     1723                                submit_button( __( 'Update' ), 'primary alignright', 'bulk_edit', false );
    17241724                        } ?>
    17251725                        <input type="hidden" name="post_view" value="<?php echo esc_attr( $m ); ?>" />
    17261726                        <input type="hidden" name="screen" value="<?php echo esc_attr( $screen->id ); ?>" />
  • src/wp-admin/includes/class-wp-terms-list-table.php

     
    619619        ?>
    620620
    621621                <p class="inline-edit-save submit">
    622                         <button type="button" class="cancel button-secondary alignleft"><?php _e( 'Cancel' ); ?></button>
    623                         <button type="button" class="save button-primary alignright"><?php echo $tax->labels->update_item; ?></button>
     622                        <button type="button" class="cancel button alignleft"><?php _e( 'Cancel' ); ?></button>
     623                        <button type="button" class="save button button-primary alignright"><?php echo $tax->labels->update_item; ?></button>
    624624                        <span class="spinner"></span>
    625625                        <span class="error" style="display:none;"></span>
    626626                        <?php wp_nonce_field( 'taxinlineeditnonce', '_inline_edit', false ); ?>
  • src/wp-admin/includes/class-wp-theme-install-list-table.php

     
    329329                <div id="theme-installer" class="wp-full-overlay expanded">
    330330                        <div class="wp-full-overlay-sidebar">
    331331                                <div class="wp-full-overlay-header">
    332                                         <a href="#" class="close-full-overlay button-secondary"><?php _e( 'Close' ); ?></a>
     332                                        <a href="#" class="close-full-overlay button"><?php _e( 'Close' ); ?></a>
    333333                                        <span class="theme-install"></span>
    334334                                </div>
    335335                                <div class="wp-full-overlay-sidebar-content">
     
    336336                                        <div class="install-theme-info"></div>
    337337                                </div>
    338338                                <div class="wp-full-overlay-footer">
    339                                         <button type="button" class="collapse-sidebar button-secondary" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
     339                                        <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
    340340                                                <span class="collapse-sidebar-arrow"></span>
    341341                                                <span class="collapse-sidebar-label"><?php _e( 'Collapse' ); ?></span>
    342342                                        </button>
     
    398398                <div class="install-theme-info"><?php
    399399                        switch ( $status ) {
    400400                                case 'update_available':
    401                                         echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
     401                                        echo '<a class="theme-install button button-primary" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
    402402                                        break;
    403403                                case 'newer_installed':
    404404                                case 'latest_installed':
     
    406406                                        break;
    407407                                case 'install':
    408408                                default:
    409                                         echo '<a class="theme-install button-primary" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '">' . __( 'Install' ) . '</a>';
     409                                        echo '<a class="theme-install button button-primary" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '">' . __( 'Install' ) . '</a>';
    410410                                        break;
    411411                        } ?>
    412412                        <h3 class="theme-name"><?php echo $name; ?></h3>
  • src/wp-admin/includes/class-wp-users-list-table.php

     
    267267                        <?php wp_dropdown_roles(); ?>
    268268                </select>
    269269        <?php
    270                         submit_button( __( 'Change' ), 'button', 'changeit', false );
     270                        submit_button( __( 'Change' ), '', 'changeit', false );
    271271                endif;
    272272
    273273                /**
  • src/wp-admin/includes/dashboard.php

     
    427427                <p>
    428428                        <label class="screen-reader-text" for="search-users"><?php _e( 'Search Users' ); ?></label>
    429429                        <input type="search" name="s" value="" size="30" autocomplete="off" id="search-users"/>
    430                         <?php submit_button( __( 'Search Users' ), 'button', false, false, array( 'id' => 'submit_users' ) ); ?>
     430                        <?php submit_button( __( 'Search Users' ), '', false, false, array( 'id' => 'submit_users' ) ); ?>
    431431                </p>
    432432        </form>
    433433
     
    435435                <p>
    436436                        <label class="screen-reader-text" for="search-sites"><?php _e( 'Search Sites' ); ?></label>
    437437                        <input type="search" name="s" value="" size="30" autocomplete="off" id="search-sites"/>
    438                         <?php submit_button( __( 'Search Sites' ), 'button', false, false, array( 'id' => 'submit_sites' ) ); ?>
     438                        <?php submit_button( __( 'Search Sites' ), '', false, false, array( 'id' => 'submit_sites' ) ); ?>
    439439                </p>
    440440        </form>
    441441<?php
  • src/wp-admin/includes/file.php

     
    12611261?>
    12621262        <p class="request-filesystem-credentials-action-buttons">
    12631263                <button class="button cancel-button" data-js-action="close" type="button"><?php _e( 'Cancel' ); ?></button>
    1264                 <?php submit_button( __( 'Proceed' ), 'button', 'upgrade', false ); ?>
     1264                <?php submit_button( __( 'Proceed' ), '', 'upgrade', false ); ?>
    12651265        </p>
    12661266</div>
    12671267</form>
  • src/wp-admin/includes/media.php

     
    14801480        );
    14811481
    14821482        if ( $r['send'] ) {
    1483                 $r['send'] = get_submit_button( __( 'Insert into Post' ), 'button', "send[$attachment_id]", false );
     1483                $r['send'] = get_submit_button( __( 'Insert into Post' ), '', "send[$attachment_id]", false );
    14841484        }
    14851485
    14861486        $delete = empty( $r['delete'] ) ? '' : $r['delete'];
     
    20312031?></div>
    20322032
    20332033<p class="savebutton ml-submit">
    2034 <?php submit_button( __( 'Save all changes' ), 'button', 'save', false ); ?>
     2034<?php submit_button( __( 'Save all changes' ), '', 'save', false ); ?>
    20352035</p>
    20362036</form>
    20372037<?php
     
    22422242</div>
    22432243
    22442244<p class="ml-submit">
    2245 <?php submit_button( __( 'Save all changes' ), 'button savebutton', 'save', false, array( 'id' => 'save-all', 'style' => 'display: none;' ) ); ?>
     2245<?php submit_button( __( 'Save all changes' ), 'savebutton', 'save', false, array( 'id' => 'save-all', 'style' => 'display: none;' ) ); ?>
    22462246<input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
    22472247<input type="hidden" name="type" value="<?php echo esc_attr( $GLOBALS['type'] ); ?>" />
    22482248<input type="hidden" name="tab" value="<?php echo esc_attr( $GLOBALS['tab'] ); ?>" />
     
    23822382<p id="media-search" class="search-box">
    23832383        <label class="screen-reader-text" for="media-search-input"><?php _e('Search Media');?>:</label>
    23842384        <input type="search" id="media-search-input" name="s" value="<?php the_search_query(); ?>" />
    2385         <?php submit_button( __( 'Search Media' ), 'button', '', false ); ?>
     2385        <?php submit_button( __( 'Search Media' ), '', '', false ); ?>
    23862386</p>
    23872387
    23882388<ul class="subsubsub">
     
    24792479</select>
    24802480<?php } ?>
    24812481
    2482 <?php submit_button( __( 'Filter &#187;' ), 'button', 'post-query-submit', false ); ?>
     2482<?php submit_button( __( 'Filter &#187;' ), '', 'post-query-submit', false ); ?>
    24832483
    24842484</div>
    24852485
     
    25092509<?php echo get_media_items(null, $errors); ?>
    25102510</div>
    25112511<p class="ml-submit">
    2512 <?php submit_button( __( 'Save all changes' ), 'button savebutton', 'save', false ); ?>
     2512<?php submit_button( __( 'Save all changes' ), 'savebutton', 'save', false ); ?>
    25132513<input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
    25142514</p>
    25152515</form>
     
    26122612                <tr class="not-image">
    26132613                        <td></td>
    26142614                        <td>
    2615                                 ' . get_submit_button( __( 'Insert into Post' ), 'button', 'insertonlybutton', false ) . '
     2615                                ' . get_submit_button( __( 'Insert into Post' ), '', 'insertonlybutton', false ) . '
    26162616                        </td>
    26172617                </tr>
    26182618        </tbody></table>
  • src/wp-admin/includes/meta-boxes.php

     
    3232
    3333<?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
    3434<div style="display:none;">
    35 <?php submit_button( __( 'Save' ), 'button', 'save' ); ?>
     35<?php submit_button( __( 'Save' ), '', 'save' ); ?>
    3636</div>
    3737
    3838<div id="minor-publishing-actions">
     
    290290
    291291<?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
    292292<div style="display:none;">
    293 <?php submit_button( __( 'Save' ), 'button', 'save' ); ?>
     293<?php submit_button( __( 'Save' ), '', 'save' ); ?>
    294294</div>
    295295
    296296
     
    875875
    876876<?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
    877877<div style="display:none;">
    878 <?php submit_button( __( 'Save' ), 'button', 'save', false ); ?>
     878<?php submit_button( __( 'Save' ), '', 'save', false ); ?>
    879879</div>
    880880
    881881<div id="minor-publishing-actions">
  • src/wp-admin/includes/nav-menu.php

     
    284284
    285285                <p class="button-controls wp-clearfix">
    286286                        <span class="add-to-menu">
    287                                 <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e('Add to Menu'); ?>" name="add-custom-menu-item" id="submit-customlinkdiv" />
     287                                <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button submit-add-to-menu right" value="<?php esc_attr_e('Add to Menu'); ?>" name="add-custom-menu-item" id="submit-customlinkdiv" />
    288288                                <span class="spinner"></span>
    289289                        </span>
    290290                </p>
     
    450450                                <label for="quick-search-posttype-<?php echo $post_type_name; ?>" class="screen-reader-text"><?php _e( 'Search' ); ?></label>
    451451                                <input type="search" class="quick-search" value="<?php echo $searched; ?>" name="quick-search-posttype-<?php echo $post_type_name; ?>" id="quick-search-posttype-<?php echo $post_type_name; ?>" />
    452452                                <span class="spinner"></span>
    453                                 <?php submit_button( __( 'Search' ), 'button-small quick-search-submit button-secondary hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-posttype-' . $post_type_name ) ); ?>
     453                                <?php submit_button( __( 'Search' ), 'small quick-search-submit hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-posttype-' . $post_type_name ) ); ?>
    454454                        </p>
    455455
    456456                        <ul id="<?php echo $post_type_name; ?>-search-checklist" data-wp-lists="list:<?php echo $post_type_name?>" class="categorychecklist form-no-clear">
     
    572572                        </span>
    573573
    574574                        <span class="add-to-menu">
    575                                 <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-post-type-menu-item" id="<?php echo esc_attr( 'submit-posttype-' . $post_type_name ); ?>" />
     575                                <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-post-type-menu-item" id="<?php echo esc_attr( 'submit-posttype-' . $post_type_name ); ?>" />
    576576                                <span class="spinner"></span>
    577577                        </span>
    578578                </p>
     
    739739                                <label for="quick-search-taxonomy-<?php echo $taxonomy_name; ?>" class="screen-reader-text"><?php _e( 'Search' ); ?></label>
    740740                                <input type="search" class="quick-search" value="<?php echo $searched; ?>" name="quick-search-taxonomy-<?php echo $taxonomy_name; ?>" id="quick-search-taxonomy-<?php echo $taxonomy_name; ?>" />
    741741                                <span class="spinner"></span>
    742                                 <?php submit_button( __( 'Search' ), 'button-small quick-search-submit button-secondary hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-taxonomy-' . $taxonomy_name ) ); ?>
     742                                <?php submit_button( __( 'Search' ), 'small quick-search-submit hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-taxonomy-' . $taxonomy_name ) ); ?>
    743743                        </p>
    744744
    745745                        <ul id="<?php echo $taxonomy_name; ?>-search-checklist" data-wp-lists="list:<?php echo $taxonomy_name?>" class="categorychecklist form-no-clear">
     
    770770                        </span>
    771771
    772772                        <span class="add-to-menu">
    773                                 <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-taxonomy-menu-item" id="<?php echo esc_attr( 'submit-taxonomy-' . $taxonomy_name ); ?>" />
     773                                <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-taxonomy-menu-item" id="<?php echo esc_attr( 'submit-taxonomy-' . $taxonomy_name ); ?>" />
    774774                                <span class="spinner"></span>
    775775                        </span>
    776776                </p>
  • src/wp-admin/includes/plugin-install.php

     
    265265                <label><span class="screen-reader-text"><?php _e( 'Search Plugins' ); ?></span>
    266266                        <input type="search" name="s" value="<?php echo esc_attr( $term ) ?>" class="wp-filter-search" placeholder="<?php esc_attr_e( 'Search Plugins' ); ?>" />
    267267                </label>
    268                 <?php submit_button( __( 'Search Plugins' ), 'button hide-if-js', false, false, array( 'id' => 'search-submit' ) ); ?>
     268                <?php submit_button( __( 'Search Plugins' ), 'hide-if-js', false, false, array( 'id' => 'search-submit' ) ); ?>
    269269        </form><?php
    270270}
    271271
     
    281281                <?php wp_nonce_field( 'plugin-upload' ); ?>
    282282                <label class="screen-reader-text" for="pluginzip"><?php _e( 'Plugin zip file' ); ?></label>
    283283                <input type="file" id="pluginzip" name="pluginzip" />
    284                 <?php submit_button( __( 'Install Now' ), 'button', 'install-plugin-submit', false ); ?>
     284                <?php submit_button( __( 'Install Now' ), '', 'install-plugin-submit', false ); ?>
    285285        </form>
    286286</div>
    287287<?php
  • src/wp-admin/includes/template.php

     
    423423        </div>
    424424
    425425        <p id="replysubmit" class="submit">
    426         <a href="#comments-form" class="save button-primary alignright">
     426        <a href="#comments-form" class="save button button-primary alignright">
    427427        <span id="addbtn" style="display:none;"><?php _e('Add Comment'); ?></span>
    428428        <span id="savebtn" style="display:none;"><?php _e('Update Comment'); ?></span>
    429429        <span id="replybtn" style="display:none;"><?php _e('Submit Reply'); ?></span></a>
    430         <a href="#comments-form" class="cancel button-secondary alignleft"><?php _e('Cancel'); ?></a>
     430        <a href="#comments-form" class="cancel button alignleft"><?php _e('Cancel'); ?></a>
    431431        <span class="waiting spinner"></span>
    432432        <span class="error" style="display:none;"></span>
    433433        </p>
     
    657657
    658658<tr><td colspan="2">
    659659<div class="submit">
    660 <?php submit_button( __( 'Add Custom Field' ), 'secondary', 'addmeta', false, array( 'id' => 'newmeta-submit', 'data-wp-lists' => 'add:the-list:newmeta' ) ); ?>
     660<?php submit_button( __( 'Add Custom Field' ), '', 'addmeta', false, array( 'id' => 'newmeta-submit', 'data-wp-lists' => 'add:the-list:newmeta' ) ); ?>
    661661</div>
    662662<?php wp_nonce_field( 'add-meta', '_ajax_nonce-add-meta', false ); ?>
    663663</td></tr>
     
    15131513                        <div id="find-posts-response"></div>
    15141514                </div>
    15151515                <div class="find-box-buttons">
    1516                         <?php submit_button( __( 'Select' ), 'button-primary alignright', 'find-posts-submit', false ); ?>
     1516                        <?php submit_button( __( 'Select' ), 'primary alignright', 'find-posts-submit', false ); ?>
    15171517                        <div class="clear"></div>
    15181518                </div>
    15191519        </div>
     
    19141914                        continue;
    19151915                $classes[] = in_array( $t, $button_shorthand ) ? 'button-' . $t : $t;
    19161916        }
    1917         $class = implode( ' ', array_unique( $classes ) );
     1917        // Remove empty items, remove duplicate items, and finally build a string.
     1918        $class = implode( ' ', array_unique( array_filter( $classes ) ) );
    19181919
    19191920        if ( 'delete' === $type )
    1920                 $class = 'button-secondary delete';
     1921                $class = 'button delete';
    19211922
    19221923        $text = $text ? $text : __( 'Save Changes' );
    19231924
  • src/wp-admin/includes/theme-install.php

     
    8585        <label class="screen-reader-text" for="s"><?php _e('Search by keyword'); ?></label>
    8686        <?php endif; ?>
    8787        <input type="search" name="s" id="s" size="30" value="<?php echo esc_attr($term) ?>" autofocus="autofocus" />
    88         <?php submit_button( __( 'Search' ), 'button', 'search', false ); ?>
     88        <?php submit_button( __( 'Search' ), '', 'search', false ); ?>
    8989</form>
    9090<?php
    9191}
     
    130130
    131131</div>
    132132<br class="clear" />
    133 <?php submit_button( __( 'Find Themes' ), 'button', 'search' ); ?>
     133<?php submit_button( __( 'Find Themes' ), '', 'search' ); ?>
    134134</form>
    135135<?php
    136136}
     
    145145        <?php wp_nonce_field( 'theme-upload' ); ?>
    146146        <label class="screen-reader-text" for="themezip"><?php _e( 'Theme zip file' ); ?></label>
    147147        <input type="file" id="themezip" name="themezip" />
    148         <?php submit_button( __( 'Install Now' ), 'button', 'install-theme-submit', false ); ?>
     148        <?php submit_button( __( 'Install Now' ), '', 'install-theme-submit', false ); ?>
    149149</form>
    150150        <?php
    151151}
  • src/wp-admin/includes/widgets.php

     
    254254                <a class="widget-control-close" href="#close"><?php _e('Close'); ?></a>
    255255                </div>
    256256                <div class="alignright<?php if ( 'noform' === $has_form ) echo ' widget-control-noform'; ?>">
    257                         <?php submit_button( __( 'Save' ), 'button-primary widget-control-save right', 'savewidget', false, array( 'id' => 'widget-' . esc_attr( $id_format ) . '-savewidget' ) ); ?>
     257                        <?php submit_button( __( 'Save' ), 'primary widget-control-save right', 'savewidget', false, array( 'id' => 'widget-' . esc_attr( $id_format ) . '-savewidget' ) ); ?>
    258258                        <span class="spinner"></span>
    259259                </div>
    260260                <br class="clear" />
     
    278278 */
    279279function wp_widgets_access_body_class($classes) {
    280280        return "$classes widgets_access ";
    281 }
    282  No newline at end of file
     281}
  • src/wp-admin/install.php

     
    141141                                <div class="">
    142142                                        <?php $initial_password = isset( $_POST['admin_password'] ) ? stripslashes( $_POST['admin_password'] ) : wp_generate_password( 18 ); ?>
    143143                                        <input type="password" name="admin_password" id="pass1" class="regular-text" autocomplete="off" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" aria-describedby="pass-strength-result" />
    144                                         <button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-start-masked="<?php echo (int) isset( $_POST['admin_password'] ); ?>" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
     144                                        <button type="button" class="button wp-hide-pw hide-if-no-js" data-start-masked="<?php echo (int) isset( $_POST['admin_password'] ); ?>" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
    145145                                                <span class="dashicons dashicons-hidden"></span>
    146146                                                <span class="text"><?php _e( 'Hide' ); ?></span>
    147147                                        </button>
  • src/wp-admin/js/customize-widgets.js

     
    835835                        $saveBtn = this.container.find( '.widget-control-save' );
    836836                        $saveBtn.val( l10n.saveBtnLabel );
    837837                        $saveBtn.attr( 'title', l10n.saveBtnTooltip );
    838                         $saveBtn.removeClass( 'button-primary' ).addClass( 'button-secondary' );
     838                        $saveBtn.removeClass( 'button-primary' );
    839839                        $saveBtn.on( 'click', function( e ) {
    840840                                e.preventDefault();
    841841                                self.updateWidget( { disable_form: true } ); // @todo disable_form is unused?
  • src/wp-admin/js/updates.js

     
    11051105                                $message.siblings( '.preview' ).replaceWith( function () {
    11061106                                        return $( '<a>' )
    11071107                                                .attr( 'href', response.customizeUrl )
    1108                                                 .addClass( 'button button-secondary load-customize' )
     1108                                                .addClass( 'button load-customize' )
    11091109                                                .text( wp.updates.l10n.livePreview );
    11101110                                } );
    11111111                        }
  • src/wp-admin/js/widgets.js

     
    354354                        if ( $target.hasClass('button-primary') ) {
    355355                                self.addWidget( chooser );
    356356                                self.closeChooser();
    357                         } else if ( $target.hasClass('button-secondary') ) {
     357                        } else if ( $target.hasClass( 'widgets-chooser-cancel' ) ) {
    358358                                self.closeChooser();
    359359                        }
    360360                }).on( 'keyup.widgets-chooser', function( event ) {
    361361                        if ( event.which === $.ui.keyCode.ENTER ) {
    362                                 if ( $( event.target ).hasClass('button-secondary') ) {
     362                                if ( $( event.target ).hasClass( 'widgets-chooser-cancel' ) ) {
    363363                                        // Close instead of adding when pressing Enter on the Cancel button
    364364                                        self.closeChooser();
    365365                                } else {
  • src/wp-admin/nav-menus.php

     
    713713                                        </option>
    714714                                <?php endforeach; ?>
    715715                        </select>
    716                         <span class="submit-btn"><input type="submit" class="button-secondary" value="<?php esc_attr_e( 'Select' ); ?>"></span>
     716                        <span class="submit-btn"><input type="submit" class="button" value="<?php esc_attr_e( 'Select' ); ?>"></span>
    717717                        <span class="add-new-menu-action">
    718718                                <?php printf( __( 'or <a href="%s">create a new menu</a>.' ), esc_url( add_query_arg( array( 'action' => 'edit', 'menu' => 0 ), admin_url( 'nav-menus.php' ) ) ) ); ?>
    719719                        </span><!-- /add-new-menu-action -->
  • src/wp-admin/network/themes.php

     
    161161                                                wp_nonce_field( 'bulk-themes' );
    162162
    163163                                                if ( 1 == $themes_to_delete ) {
    164                                                         submit_button( __( 'Yes, delete this theme' ), 'button', 'submit', false );
     164                                                        submit_button( __( 'Yes, delete this theme' ), '', 'submit', false );
    165165                                                } else {
    166                                                         submit_button( __( 'Yes, delete these themes' ), 'button', 'submit', false );
     166                                                        submit_button( __( 'Yes, delete these themes' ), '', 'submit', false );
    167167                                                }
    168168                                        ?>
    169169                                </form>
     
    171171                                $referer = wp_get_referer();
    172172                                ?>
    173173                                <form method="post" action="<?php echo $referer ? esc_url( $referer ) : ''; ?>" style="display:inline;">
    174                                         <?php submit_button( __( 'No, return me to the theme list' ), 'button', 'submit', false ); ?>
     174                                        <?php submit_button( __( 'No, return me to the theme list' ), '', 'submit', false ); ?>
    175175                                </form>
    176176                        </div>
    177177                                <?php
  • src/wp-admin/plugin-editor.php

     
    224224        }
    225225?>
    226226                </select>
    227                 <?php submit_button( __( 'Select' ), 'button', 'Submit', false ); ?>
     227                <?php submit_button( __( 'Select' ), '', 'Submit', false ); ?>
    228228        </form>
    229229</div>
    230230<br class="clear" />
  • src/wp-admin/plugins.php

     
    327327                                                }
    328328                                        ?>
    329329                                        <?php wp_nonce_field('bulk-plugins') ?>
    330                                         <?php submit_button( $data_to_delete ? __( 'Yes, delete these files and data' ) : __( 'Yes, delete these files' ), 'button', 'submit', false ); ?>
     330                                        <?php submit_button( $data_to_delete ? __( 'Yes, delete these files and data' ) : __( 'Yes, delete these files' ), '', 'submit', false ); ?>
    331331                                </form>
    332332                                <?php
    333333                                $referer = wp_get_referer();
    334334                                ?>
    335335                                <form method="post" action="<?php echo $referer ? esc_url( $referer ) : ''; ?>" style="display:inline;">
    336                                         <?php submit_button( __( 'No, return me to the plugin list' ), 'button', 'submit', false ); ?>
     336                                        <?php submit_button( __( 'No, return me to the plugin list' ), '', 'submit', false ); ?>
    337337                                </form>
    338338                        </div>
    339339                                <?php
  • src/wp-admin/theme-editor.php

     
    182182}
    183183?>
    184184                </select>
    185                 <?php submit_button( __( 'Select' ), 'button', 'Submit', false ); ?>
     185                <?php submit_button( __( 'Select' ), '', 'Submit', false ); ?>
    186186        </form>
    187187</div>
    188188<br class="clear" />
  • src/wp-admin/theme-install.php

     
    174174                                <label for="wporg-username-input"><?php _e( 'Your WordPress.org username:' ); ?></label>
    175175                                <input type="hidden" id="wporg-username-nonce" name="_wpnonce" value="<?php echo esc_attr( wp_create_nonce( $action ) ); ?>" />
    176176                                <input type="search" id="wporg-username-input" value="<?php echo esc_attr( $user ); ?>" />
    177                                 <input type="button" class="button button-secondary favorites-form-submit" value="<?php esc_attr_e( 'Get Favorites' ); ?>" />
     177                                <input type="button" class="button favorites-form-submit" value="<?php esc_attr_e( 'Get Favorites' ); ?>" />
    178178                        </p>
    179179                </div>
    180180
     
    262262                                <a class="button button-primary activate" href="{{ data.activate_url }}" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _e( 'Activate' ); ?></a>
    263263                        <# } #>
    264264                        <# if ( data.customize_url ) { #>
    265                                 <a class="button button-secondary load-customize" href="{{ data.customize_url }}"><?php _e( 'Live Preview' ); ?></a>
     265                                <a class="button load-customize" href="{{ data.customize_url }}"><?php _e( 'Live Preview' ); ?></a>
    266266                        <# } else { #>
    267                                 <button class="button-secondary preview install-theme-preview"><?php _e( 'Preview' ); ?></button>
     267                                <button class="button preview install-theme-preview"><?php _e( 'Preview' ); ?></button>
    268268                        <# } #>
    269269                <# } else { #>
    270270                        <?php
     
    272272                        $aria_label = sprintf( __( 'Install %s' ), '{{ data.name }}' );
    273273                        ?>
    274274                        <a class="button button-primary theme-install" data-name="{{ data.name }}" data-slug="{{ data.id }}" href="{{ data.install_url }}" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _e( 'Install' ); ?></a>
    275                         <button class="button-secondary preview install-theme-preview"><?php _e( 'Preview' ); ?></button>
     275                        <button class="button preview install-theme-preview"><?php _e( 'Preview' ); ?></button>
    276276                <# } #>
    277277        </div>
    278278
     
    325325                                </div>
    326326                        </div>
    327327                        <div class="wp-full-overlay-footer">
    328                                 <button type="button" class="collapse-sidebar button-secondary" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
     328                                <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
    329329                                        <span class="collapse-sidebar-arrow"></span>
    330330                                        <span class="collapse-sidebar-label"><?php _e( 'Collapse' ); ?></span>
    331331                                </button>
  • src/wp-admin/themes.php

     
    200200                                $submenu[$item[2]] = array_values($submenu[$item[2]]); // Re-index.
    201201                                $menu_hook = get_plugin_page_hook($submenu[$item[2]][0][2], $item[2]);
    202202                                if ( file_exists(WP_PLUGIN_DIR . "/{$submenu[$item[2]][0][2]}") || !empty($menu_hook))
    203                                         $current_theme_actions[] = "<a class='button button-secondary$class' href='admin.php?page={$submenu[$item[2]][0][2]}'>{$item[0]}</a>";
     203                                        $current_theme_actions[] = "<a class='button$class' href='admin.php?page={$submenu[$item[2]][0][2]}'>{$item[0]}</a>";
    204204                                else
    205                                         $current_theme_actions[] = "<a class='button button-secondary$class' href='{$submenu[$item[2]][0][2]}'>{$item[0]}</a>";
     205                                        $current_theme_actions[] = "<a class='button$class' href='{$submenu[$item[2]][0][2]}'>{$item[0]}</a>";
    206206                        } elseif ( ! empty( $item[2] ) && current_user_can( $item[1] ) ) {
    207207                                $menu_file = $item[2];
    208208
    209209                                if ( current_user_can( 'customize' ) ) {
    210210                                        if ( 'custom-header' === $menu_file ) {
    211                                                 $current_theme_actions[] = "<a class='button button-secondary hide-if-no-customize$class' href='customize.php?autofocus[control]=header_image'>{$item[0]}</a>";
     211                                                $current_theme_actions[] = "<a class='button hide-if-no-customize$class' href='customize.php?autofocus[control]=header_image'>{$item[0]}</a>";
    212212                                        } elseif ( 'custom-background' === $menu_file ) {
    213                                                 $current_theme_actions[] = "<a class='button button-secondary hide-if-no-customize$class' href='customize.php?autofocus[control]=background_image'>{$item[0]}</a>";
     213                                                $current_theme_actions[] = "<a class='button hide-if-no-customize$class' href='customize.php?autofocus[control]=background_image'>{$item[0]}</a>";
    214214                                        }
    215215                                }
    216216
     
    219219                                }
    220220
    221221                                if ( file_exists( ABSPATH . "wp-admin/$menu_file" ) ) {
    222                                         $current_theme_actions[] = "<a class='button button-secondary$class' href='{$item[2]}'>{$item[0]}</a>";
     222                                        $current_theme_actions[] = "<a class='button$class' href='{$item[2]}'>{$item[0]}</a>";
    223223                                } else {
    224                                         $current_theme_actions[] = "<a class='button button-secondary$class' href='themes.php?page={$item[2]}'>{$item[0]}</a>";
     224                                        $current_theme_actions[] = "<a class='button$class' href='themes.php?page={$item[2]}'>{$item[0]}</a>";
    225225                                }
    226226                        }
    227227                }
     
    281281                /* translators: %s: Theme name */
    282282                $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' );
    283283                ?>
    284                 <a class="button button-secondary activate" href="<?php echo $theme['actions']['activate']; ?>" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _e( 'Activate' ); ?></a>
     284                <a class="button activate" href="<?php echo $theme['actions']['activate']; ?>" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _e( 'Activate' ); ?></a>
    285285                <?php if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) { ?>
    286286                        <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme['actions']['customize']; ?>"><?php _e( 'Live Preview' ); ?></a>
    287287                <?php } ?>
     
    333333                                ), admin_url( 'themes.php' ) );
    334334                                $delete_url = wp_nonce_url( $delete_url, 'delete-theme_' . $stylesheet );
    335335                                ?>
    336                                 <td><a href="<?php echo esc_url( $delete_url ); ?>" class="button button-secondary delete-theme"><?php _e( 'Delete' ); ?></a></td>
     336                                <td><a href="<?php echo esc_url( $delete_url ); ?>" class="button delete-theme"><?php _e( 'Delete' ); ?></a></td>
    337337                                <?php
    338338                        }
    339339
     
    348348                                        ), admin_url( 'update.php' ) );
    349349                                        $install_url = wp_nonce_url( $install_url, 'install-theme_' . $parent_theme_name );
    350350                                        ?>
    351                                         <td><a href="<?php echo esc_url( $install_url ); ?>" class="button button-secondary install-theme"><?php _e( 'Install Parent Theme' ); ?></a></td>
     351                                        <td><a href="<?php echo esc_url( $install_url ); ?>" class="button install-theme"><?php _e( 'Install Parent Theme' ); ?></a></td>
    352352                                        <?php
    353353                                }
    354354                        }
     
    410410                        /* translators: %s: Theme name */
    411411                        $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' );
    412412                        ?>
    413                         <a class="button button-secondary activate" href="{{{ data.actions.activate }}}" aria-label="<?php echo $aria_label; ?>"><?php _e( 'Activate' ); ?></a>
     413                        <a class="button activate" href="{{{ data.actions.activate }}}" aria-label="<?php echo $aria_label; ?>"><?php _e( 'Activate' ); ?></a>
    414414                        <a class="button button-primary load-customize hide-if-no-customize" href="{{{ data.actions.customize }}}"><?php _e( 'Live Preview' ); ?></a>
    415415                <# } #>
    416416        </div>
     
    469469                                $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' );
    470470                                ?>
    471471                                <# if ( data.actions.activate ) { #>
    472                                         <a href="{{{ data.actions.activate }}}" class="button button-secondary activate" aria-label="<?php echo $aria_label; ?>"><?php _e( 'Activate' ); ?></a>
     472                                        <a href="{{{ data.actions.activate }}}" class="button activate" aria-label="<?php echo $aria_label; ?>"><?php _e( 'Activate' ); ?></a>
    473473                                <# } #>
    474474                                <a href="{{{ data.actions.customize }}}" class="button button-primary load-customize hide-if-no-customize"><?php _e( 'Live Preview' ); ?></a>
    475475                        </div>
    476476
    477477                        <# if ( ! data.active && data.actions['delete'] ) { #>
    478                                 <a href="{{{ data.actions['delete'] }}}" class="button button-secondary delete-theme"><?php _e( 'Delete' ); ?></a>
     478                                <a href="{{{ data.actions['delete'] }}}" class="button delete-theme"><?php _e( 'Delete' ); ?></a>
    479479                        <# } #>
    480480                </div>
    481481        </div>
  • src/wp-admin/tools.php

     
    4949
    5050                <p class="pressthis-bookmarklet-wrapper">
    5151                        <a class="pressthis-bookmarklet" onclick="return false;" href="<?php echo htmlspecialchars( get_shortcut_link() ); ?>"><span><?php _e( 'Press This' ); ?></span></a>
    52                         <button type="button" class="button button-secondary pressthis-js-toggle js-show-pressthis-code-wrap" aria-expanded="false" aria-controls="pressthis-code-wrap">
     52                        <button type="button" class="button pressthis-js-toggle js-show-pressthis-code-wrap" aria-expanded="false" aria-controls="pressthis-code-wrap">
    5353                                <span class="dashicons dashicons-clipboard"></span>
    5454                                <span class="screen-reader-text"><?php _e( 'Copy &#8220;Press This&#8221; bookmarklet code' ) ?></span>
    5555                        </button>
     
    6868                <p><?php _e( 'Follow the link to open Press This. Then add it to your device&#8217;s bookmarks or home screen.' ); ?></p>
    6969
    7070                <p>
    71                         <a class="button button-secondary" href="<?php echo htmlspecialchars( admin_url( 'press-this.php' ) ); ?>"><?php _e( 'Open Press This' ) ?></a>
     71                        <a class="button" href="<?php echo htmlspecialchars( admin_url( 'press-this.php' ) ); ?>"><?php _e( 'Open Press This' ) ?></a>
    7272                </p>
    7373                <script>
    7474                        jQuery( document ).ready( function( $ ) {
  • src/wp-admin/update-core.php

     
    9292        echo '<input name="locale" value="'. esc_attr($update->locale) .'" type="hidden"/>';
    9393        if ( $show_buttons ) {
    9494                if ( $first_pass ) {
    95                         submit_button( $submit, $current ? 'button' : 'primary regular', 'upgrade', false );
     95                        submit_button( $submit, $current ? '' : 'primary regular', 'upgrade', false );
    9696                        $first_pass = false;
    9797                } else {
    98                         submit_button( $submit, 'button', 'upgrade', false );
     98                        submit_button( $submit, '', 'upgrade', false );
    9999                }
    100100                echo '&nbsp;<a href="' . esc_url( $update->download ) . '" class="button">' . $download . '</a>&nbsp;';
    101101        }
    102102        if ( 'en_US' != $update->locale )
    103103                if ( !isset( $update->dismissed ) || !$update->dismissed )
    104                         submit_button( __('Hide this update'), 'button', 'dismiss', false );
     104                        submit_button( __( 'Hide this update' ), '', 'dismiss', false );
    105105                else
    106                         submit_button( __('Bring back this update'), 'button', 'undismiss', false );
     106                        submit_button( __( 'Bring back this update' ), '', 'undismiss', false );
    107107        echo '</p>';
    108108        if ( 'en_US' != $update->locale && ( !isset($wp_local_package) || $wp_local_package != $update->locale ) )
    109109            echo '<p class="hint">'.__('This localized version contains both the translation and various other localization fixes. You can skip upgrading if you want to keep your current translation.').'</p>';
  • src/wp-admin/user-edit.php

     
    505505        <th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
    506506        <td>
    507507                <input class="hidden" value=" " /><!-- #24364 workaround -->
    508                 <button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Generate Password' ); ?></button>
     508                <button type="button" class="button wp-generate-pw hide-if-no-js"><?php _e( 'Generate Password' ); ?></button>
    509509                <div class="wp-pwd hide-if-js">
    510510                        <span class="password-input-wrapper">
    511511                                <input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" />
    512512                        </span>
    513                         <button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
     513                        <button type="button" class="button wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
    514514                                <span class="dashicons dashicons-hidden"></span>
    515515                                <span class="text"><?php _e( 'Hide' ); ?></span>
    516516                        </button>
    517                         <button type="button" class="button button-secondary wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change' ); ?>">
     517                        <button type="button" class="button wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change' ); ?>">
    518518                                <span class="text"><?php _e( 'Cancel' ); ?></span>
    519519                        </button>
    520520                        <div style="display:none" id="pass-strength-result" aria-live="polite"></div>
     
    544544        <tr class="user-sessions-wrap hide-if-no-js">
    545545                <th><?php _e( 'Sessions' ); ?></th>
    546546                <td aria-live="assertive">
    547                         <div class="destroy-sessions"><button type="button" disabled class="button button-secondary"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
     547                        <div class="destroy-sessions"><button type="button" disabled class="button"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
    548548                        <p class="description">
    549549                                <?php _e( 'You are only logged in at this location.' ); ?>
    550550                        </p>
     
    554554        <tr class="user-sessions-wrap hide-if-no-js">
    555555                <th><?php _e( 'Sessions' ); ?></th>
    556556                <td aria-live="assertive">
    557                         <div class="destroy-sessions"><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
     557                        <div class="destroy-sessions"><button type="button" class="button" id="destroy-sessions"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
    558558                        <p class="description">
    559559                                <?php _e( 'Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.' ); ?>
    560560                        </p>
     
    564564        <tr class="user-sessions-wrap hide-if-no-js">
    565565                <th><?php _e( 'Sessions' ); ?></th>
    566566                <td>
    567                         <p><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out Everywhere' ); ?></button></p>
     567                        <p><button type="button" class="button" id="destroy-sessions"><?php _e( 'Log Out Everywhere' ); ?></button></p>
    568568                        <p class="description">
    569569                                <?php
    570570                                /* translators: 1: User's display name. */
  • src/wp-admin/user-new.php

     
    421421                </th>
    422422                <td>
    423423                        <input class="hidden" value=" " /><!-- #24364 workaround -->
    424                         <button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Show password' ); ?></button>
     424                        <button type="button" class="button wp-generate-pw hide-if-no-js"><?php _e( 'Show password' ); ?></button>
    425425                        <div class="wp-pwd hide-if-js">
    426426                                <?php $initial_password = wp_generate_password( 24 ); ?>
    427427                                <span class="password-input-wrapper">
    428428                                        <input type="password" name="pass1" id="pass1" class="regular-text" autocomplete="off" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" aria-describedby="pass-strength-result" />
    429429                                </span>
    430                                 <button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
     430                                <button type="button" class="button wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>">
    431431                                        <span class="dashicons dashicons-hidden"></span>
    432432                                        <span class="text"><?php _e( 'Hide' ); ?></span>
    433433                                </button>
    434                                 <button type="button" class="button button-secondary wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change' ); ?>">
     434                                <button type="button" class="button wp-cancel-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Cancel password change' ); ?>">
    435435                                        <span class="text"><?php _e( 'Cancel' ); ?></span>
    436436                                </button>
    437437                                <div style="display:none" id="pass-strength-result" aria-live="polite"></div>
  • src/wp-admin/widgets.php

     
    315315        <a href="widgets.php" class="button alignleft"><?php _e('Cancel'); ?></a>
    316316<?php
    317317        } else {
    318                 submit_button( __( 'Delete' ), 'button alignleft', 'removewidget', false );
     318                submit_button( __( 'Delete' ), 'alignleft', 'removewidget', false );
    319319        }
    320         submit_button( __( 'Save Widget' ), 'button-primary alignright', 'savewidget', false ); ?>
     320        submit_button( __( 'Save Widget' ), 'primary alignright', 'savewidget', false ); ?>
    321321        <input type="hidden" name="widget-id" class="widget-id" value="<?php echo esc_attr($widget_id); ?>" />
    322322        <input type="hidden" name="id_base" class="id_base" value="<?php echo esc_attr($id_base); ?>" />
    323323        <input type="hidden" name="multi_number" class="multi_number" value="<?php echo esc_attr($multi_number); ?>" />
     
    500500<div class="widgets-chooser">
    501501        <ul class="widgets-chooser-sidebars"></ul>
    502502        <div class="widgets-chooser-actions">
    503                 <button class="button-secondary"><?php _e( 'Cancel' ); ?></button>
    504                 <button class="button-primary"><?php _e( 'Add Widget' ); ?></button>
     503                <button class="button widgets-chooser-cancel"><?php _e( 'Cancel' ); ?></button>
     504                <button class="button button-primary widgets-chooser-add"><?php _e( 'Add Widget' ); ?></button>
    505505        </div>
    506506</div>
    507507
  • src/wp-includes/class-wp-customize-nav-menus.php

     
    914914                                        </p>
    915915                                        <p class="button-controls">
    916916                                                <span class="add-to-menu">
    917                                                         <input type="submit" class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-custom-menu-item" id="custom-menu-item-submit">
     917                                                        <input type="submit" class="button submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-custom-menu-item" id="custom-menu-item-submit">
    918918                                                        <span class="spinner"></span>
    919919                                                </span>
    920920                                        </p>
  • src/wp-includes/class-wp-customize-widgets.php

     
    712712                                        <% }); %>
    713713                                </ul>
    714714                                <div class="move-widget-actions">
    715                                         <button class="move-widget-btn button-secondary" type="button">{btn}</button>
     715                                        <button class="move-widget-btn button" type="button">{btn}</button>
    716716                                </div>
    717717                        </div>'
    718718                );
  • src/wp-includes/customize/class-wp-customize-nav-menu-control.php

     
    4848         */
    4949        public function content_template() {
    5050                ?>
    51                 <button type="button" class="button-secondary add-new-menu-item" aria-label="<?php esc_attr_e( 'Add or remove menu items' ); ?>" aria-expanded="false" aria-controls="available-menu-items">
     51                <button type="button" class="button add-new-menu-item" aria-label="<?php esc_attr_e( 'Add or remove menu items' ); ?>" aria-expanded="false" aria-controls="available-menu-items">
    5252                        <?php _e( 'Add Items' ); ?>
    5353                </button>
    5454                <button type="button" class="button-link reorder-toggle" aria-label="<?php esc_attr_e( 'Reorder menu items' ); ?>" aria-describedby="reorder-items-desc-{{ data.menu_id }}">
  • src/wp-includes/customize/class-wp-customize-new-menu-section.php

     
    3636        protected function render() {
    3737                ?>
    3838                <li id="accordion-section-<?php echo esc_attr( $this->id ); ?>" class="accordion-section-new-menu">
    39                         <button type="button" class="button-secondary add-new-menu-item add-menu-toggle" aria-expanded="false">
     39                        <button type="button" class="button add-new-menu-item add-menu-toggle" aria-expanded="false">
    4040                                <?php echo esc_html( $this->title ); ?>
    4141                        </button>
    4242                        <ul class="new-menu-section-content"></ul>
  • src/wp-includes/customize/class-wp-widget-area-customize-control.php

     
    5757        public function render_content() {
    5858                $id = 'reorder-widgets-desc-' . str_replace( array( '[', ']' ), array( '-', '' ), $this->id );
    5959                ?>
    60                 <button type="button" class="button-secondary add-new-widget" aria-expanded="false" aria-controls="available-widgets">
     60                <button type="button" class="button add-new-widget" aria-expanded="false" aria-controls="available-widgets">
    6161                        <?php _e( 'Add a Widget' ); ?>
    6262                </button>
    6363                <button type="button" class="button-link reorder-toggle" aria-label="<?php esc_attr_e( 'Reorder widgets' ); ?>" aria-describedby="<?php echo esc_attr( $id ); ?>">
  • src/wp-includes/general-template.php

     
    481481                        ' . $login_form_middle . '
    482482                        ' . ( $args['remember'] ? '<p class="login-remember"><label><input name="rememberme" type="checkbox" id="' . esc_attr( $args['id_remember'] ) . '" value="forever"' . ( $args['value_remember'] ? ' checked="checked"' : '' ) . ' /> ' . esc_html( $args['label_remember'] ) . '</label></p>' : '' ) . '
    483483                        <p class="login-submit">
    484                                 <input type="submit" name="wp-submit" id="' . esc_attr( $args['id_submit'] ) . '" class="button-primary" value="' . esc_attr( $args['label_log_in'] ) . '" />
     484                                <input type="submit" name="wp-submit" id="' . esc_attr( $args['id_submit'] ) . '" class="button button-primary" value="' . esc_attr( $args['label_log_in'] ) . '" />
    485485                                <input type="hidden" name="redirect_to" value="' . esc_url( $args['redirect'] ) . '" />
    486486                        </p>
    487487                        ' . $login_form_bottom . '
  • tests/qunit/fixtures/customize-menus.js

     
    378378        'panel': 'nav_menus',
    379379        'type': 'new_menu',
    380380        'title': 'Add a Menu',
    381         'content': '<li id="accordion-section-add_menu" class="accordion-section-new-menu">\n\t\t\t<button type="button" class="button-secondary add-new-menu-item add-menu-toggle" aria-expanded="false">\n\t\t\t\tAdd a Menu\t\t\t<\/button>\n\t\t\t<ul class="new-menu-section-content"><\/ul>\n\t\t<\/li>',
     381        'content': '<li id="accordion-section-add_menu" class="accordion-section-new-menu">\n\t\t\t<button type="button" class="button add-new-menu-item add-menu-toggle" aria-expanded="false">\n\t\t\t\tAdd a Menu\t\t\t<\/button>\n\t\t\t<ul class="new-menu-section-content"><\/ul>\n\t\t<\/li>',
    382382        'active': true,
    383383        'instanceNumber': 16,
    384384        'customizeAction': 'Customizing &#9656; Menus'
  • tests/qunit/fixtures/customize-widgets.js

     
    5656        },
    5757        'tpl': {
    5858                'widgetReorderNav': '<div class="widget-reorder-nav"><span class="move-widget" tabindex="0">Move to another area&hellip;</span><span class="move-widget-down" tabindex="0">Move down</span><span class="move-widget-up" tabindex="0">Move up</span></div>',
    59                 'moveWidgetArea': '<div class="move-widget-area"> <p class="description">Select an area to move this widget into:</p> <ul class="widget-area-select"> <% _.each( sidebars, function ( sidebar ){ %> <li class="" data-id="<%- sidebar.id %>" title="<%- sidebar.description %>" tabindex="0"><%- sidebar.name %></li> <% }); %> </ul> <div class="move-widget-actions"> <button class="move-widget-btn button-secondary" type="button">Move</button> </div> </div>'
     59                'moveWidgetArea': '<div class="move-widget-area"> <p class="description">Select an area to move this widget into:</p> <ul class="widget-area-select"> <% _.each( sidebars, function ( sidebar ){ %> <li class="" data-id="<%- sidebar.id %>" title="<%- sidebar.description %>" tabindex="0"><%- sidebar.name %></li> <% }); %> </ul> <div class="move-widget-actions"> <button class="move-widget-btn button" type="button">Move</button> </div> </div>'
    6060        }
    6161};
    6262
     
    130130        'priority': 99,
    131131        'active': true,
    132132        'section': 'sidebar-widgets-sidebar-1',
    133         'content': '<li id="customize-control-sidebars_widgets-sidebar-1" class="customize-control customize-control-sidebar_widgets"> <span class="button-secondary add-new-widget" tabindex="0">    Add a Widget  <\/span> <span class="reorder-toggle" tabindex="0"> <span class="reorder">Reorder<\/span> <span class="reorder-done">Done<\/span> <\/span> <\/li>',
     133        'content': '<li id="customize-control-sidebars_widgets-sidebar-1" class="customize-control customize-control-sidebar_widgets"> <span class="button add-new-widget" tabindex="0">    Add a Widget  <\/span> <span class="reorder-toggle" tabindex="0"> <span class="reorder">Reorder<\/span> <span class="reorder-done">Done<\/span> <\/span> <\/li>',
    134134        'label': '',
    135135        'description': '',
    136136        'instanceNumber': 1,
  • tests/qunit/index.html

     
    144144
    145145                <!-- Templates for Customizer Menus -->
    146146                <script type="text/html" id="tmpl-customize-control-nav_menu-content">
    147                                         <button type="button" class="button-secondary add-new-menu-item" aria-label="Add or remove menu items" aria-expanded="false" aria-controls="available-menu-items">
     147                                        <button type="button" class="button add-new-menu-item" aria-label="Add or remove menu items" aria-expanded="false" aria-controls="available-menu-items">
    148148                        Add Items               </button>
    149149                <button type="button" class="not-a-button reorder-toggle" aria-label="Reorder menu items" aria-describedby="reorder-items-desc-{{ data.menu_id }}">
    150150                        <span class="reorder">Reorder</span>
     
    359359                                        </p>
    360360                                        <p class="button-controls">
    361361                                                <span class="add-to-menu">
    362                                                         <input type="submit" class="button-secondary submit-add-to-menu right" value="Add to Menu" name="add-custom-menu-item" id="custom-menu-item-submit">
     362                                                        <input type="submit" class="button submit-add-to-menu right" value="Add to Menu" name="add-custom-menu-item" id="custom-menu-item-submit">
    363363                                                        <span class="spinner"></span>
    364364                                                </span>
    365365                                        </p>