mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
56 lines
996 B
SCSS
56 lines
996 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-default {
|
|
background: alpha-color($black, .7);
|
|
color: $white;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
background: alpha-color($black, .8);
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
&.btn-danger {
|
|
color: $white;
|
|
|
|
.app__body & {
|
|
color: $white;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
&.btn-inactive {
|
|
background: $light-gray;
|
|
border-color: transparent;
|
|
color: $white;
|
|
}
|
|
}
|