NOTE: If you edit this file, you should make sure that the CSS rules for buttons in the following files are updated.
* jquery-ui-dialog.css * editor.css
WordPress-style Buttons ======================= Create a button by adding the `.button` class to an element. For backward compatibility, we support several other classes (such as `.button-secondary`), but these will *not* work with the stackable classes described below.
Button Styles ------------- To display a primary button style, add the `.button-primary` class to a button.
Button Sizes ------------ Adjust a button's size by adding the `.button-large` or `.button-small` class.
Button States ------------- Lock the state of a button by adding the name of the pseudoclass as an actual class (e.g. `.hover` for `:hover`).
/* Remove the dotted border on :focus and the extra padding in Firefox */ .wp-core-ui button::-moz-focus-inner, .wp-core-ui input[type="reset"]::-moz-focus-inner, .wp-core-ui input[type="button"]::-moz-focus-inner, .wp-core-ui input[type="submit"]::-moz-focus-inner { border-width: 0; border-style: none; padding: 0; }