Files
mattermost/webapp/sass/components/_buttons.scss
2016-03-24 18:12:57 +05:00

34 lines
589 B
SCSS

@charset 'UTF-8';
.btn {
@include single-transition(all, .25s, ease-in);
@include border-radius($border-rad);
&.btn-primary {
background: $primary-color;
border-color: transparent;
&:hover,
&:focus,
&:active {
background: $primary-color--hover;
}
}
&.btn-danger {
color: $white;
&:hover,
&:focus,
&:active {
color: $white;
}
}
&.btn-inactive {
background: $light-gray;
border-color: transparent;
color: $white;
}
}