open-consul/ui-v2/app/styles/components/buttons.scss
John Cowen 10fe22c9b4
ui: Add Optgroups and selectedItems to multiple select dropdown and use (#8476)
* ui: Switch selects to use more HTML-like approach for optgroups

* Add KV comparator

* Use new option/optgroup approach for sort/select

* Fix up tests for new order of menu items
2020-08-11 18:02:51 +01:00

20 lines
511 B
SCSS

button[type='submit'],
a.type-create {
@extend %primary-button;
}
// TODO: Once we move action-groups to use aria menu we can get rid of
// some of this and just use not(aria-haspopup)
button[type='reset'],
header .actions button[type='button']:not(.copy-btn),
button.type-cancel,
html.template-error div > a {
@extend %secondary-button;
}
.with-confirmation .type-delete,
%app-view-content form button[type='button'].type-delete {
@extend %dangerous-button;
}
button.copy-btn {
@extend %copy-button;
}