2019-08-14 09:48:44 +00:00
|
|
|
.status-bar {
|
|
|
|
@include flex;
|
2019-10-20 08:04:19 +00:00
|
|
|
flex-direction: column;
|
2019-08-14 09:48:44 +00:00
|
|
|
@include flex-align($x: center, $y: middle);
|
|
|
|
background: lighten($warning-color, 36%);
|
|
|
|
// @include elegant-card();
|
|
|
|
@include margin($zero);
|
|
|
|
@include padding($space-normal $space-smaller);
|
|
|
|
|
|
|
|
.message {
|
|
|
|
font-weight: $font-weight-medium;
|
|
|
|
margin-bottom: $zero;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
@include margin($space-smaller $zero $zero);
|
|
|
|
padding: $space-small $space-normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.danger {
|
|
|
|
background: lighten($alert-color, 30%);
|
|
|
|
|
|
|
|
.button {
|
2019-11-01 08:14:03 +00:00
|
|
|
// Default and disabled states
|
|
|
|
&,
|
|
|
|
&.disabled, &[disabled],
|
|
|
|
&.disabled:hover, &[disabled]:hover,
|
|
|
|
&.disabled:focus, &[disabled]:focus {
|
|
|
|
background-color: $alert-color;
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &:focus {
|
|
|
|
background-color: darken($alert-color, 7%);
|
|
|
|
color: $color-white;
|
|
|
|
}
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.warning {
|
|
|
|
background: lighten($warning-color, 36%);
|
|
|
|
}
|
|
|
|
}
|