Files
mattermost/webapp/sass/components/_buttons.scss
Asaad Mahmood e0fca16b27 PLT-3010 - Updating system console (#3146)
* Updating system console

* Updating system console stuff

* Updating ldap settings
2016-06-02 12:33:52 -07:00

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;
}
}