open-consul/ui-v2/app/styles/components/buttons.scss
John Cowen c7d89f364d
UI: CSS refactor () + Fullscreen Layout ()
* Begin refactoring CSS into component folders. Moved most
components into layout/skin folders, left out a couple of ones I want
to think about more.
* Adjust grays based on recent Structure changes 
* Switch to fullscreen layout for lists and detail, left aligned forms ()
* Specifically use the 'actions_close' label, not just the :last-child (actions-group)
* Replace some non-var-ed colours in vaults code skin, plus prefixing (black and white)
2018-08-29 12:11:58 +01:00

17 lines
330 B
SCSS

@import './buttons/index';
button[type='submit'],
a.type-create {
@extend %primary-button;
}
button[type='reset'],
button[type='button']:not(.copy-btn):not(.type-delete),
html.template-error div > a {
@extend %secondary-button;
}
button.type-delete {
@extend %dangerous-button;
}
button.copy-btn {
@extend %copy-button;
}