2019-07-18 14:22:11 +00:00
|
|
|
//
|
|
|
|
// Component: Alert
|
|
|
|
//
|
2015-10-31 21:00:16 +00:00
|
|
|
|
|
|
|
.alert {
|
|
|
|
.icon {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2018-03-17 17:07:55 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
.close {
|
2019-06-28 08:02:07 +00:00
|
|
|
color: $black;
|
2015-10-31 21:00:16 +00:00
|
|
|
opacity: .2;
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
&:hover {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
}
|
2018-03-17 17:07:55 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
a {
|
2018-03-17 17:07:55 +00:00
|
|
|
color: $white;
|
2015-10-31 21:00:16 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Alert Variants
|
|
|
|
.alert-success {
|
2018-03-17 17:07:55 +00:00
|
|
|
@extend .bg-success;
|
2019-06-28 08:02:07 +00:00
|
|
|
border-color: darken(theme-color('success'), 5%);
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-danger,
|
|
|
|
.alert-error {
|
2018-03-17 17:07:55 +00:00
|
|
|
@extend .bg-danger;
|
2019-06-28 08:02:07 +00:00
|
|
|
border-color: darken(theme-color('danger'), 5%);
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-warning {
|
2018-03-17 17:07:55 +00:00
|
|
|
@extend .bg-warning;
|
2019-06-28 08:02:07 +00:00
|
|
|
border-color: darken(theme-color('warning'), 5%);
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-info {
|
2018-03-17 17:07:55 +00:00
|
|
|
@extend .bg-info;
|
2019-06-28 08:02:07 +00:00
|
|
|
border-color: darken(theme-color('info'), 5%);
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|
2019-07-18 14:22:11 +00:00
|
|
|
|
|
|
|
.alert-primary {
|
|
|
|
@extend .bg-primary;
|
|
|
|
border-color: darken(theme-color('primary'), 5%);
|
|
|
|
}
|