Make WordPress Core


Ignore:
Timestamp:
09/08/2012 04:58:34 AM (12 years ago)
Author:
koopersmith
Message:

New button styles.

Using the new buttons:

  • Button classes are now stackable.
  • All buttons should use a base class of "button".
  • Buttons default to the gray style (formerly "button-secondary"). Buttons can add a style by adding additional classes. To make a primary button, add the "button-primary" class.
  • Buttons can be rendered in various sizes. In addition to the default size, you can add "button-large", "button-small", or "button-tiny".

For backwards compatibility reasons, "button-primary" and "button-secondary" both work as standalone classes.

get_submit_button() has been adjusted to handle shorthand button classes (i.e. button classes can be passed without the "button-" prefix).

props lessbloat, helenyhou, trepmal, nacin. see #21598.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-users-list-table.php

    r21413 r21789  
    146146            <?php wp_dropdown_roles(); ?>
    147147        </select>
    148         <?php submit_button( __( 'Change' ), 'secondary', 'changeit', false ); ?>
     148        <?php submit_button( __( 'Change' ), 'small', 'changeit', false ); ?>
    149149    </div>
    150150<?php
Note: See TracChangeset for help on using the changeset viewer.