Removing time from the center channel on sp (mobile) Liking mention color to search highlight color aswell Adjusting vertical spacing on mobile Removing profile pic from mobile LHS header Updating styles for the RHS Fixing btn-danger
44 строки
761 B
SCSS
44 строки
761 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;
|
|
|
|
.app__body & {
|
|
color: $white;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
&.btn-inactive {
|
|
background: $light-gray;
|
|
border-color: transparent;
|
|
color: $white;
|
|
}
|
|
}
|