2015-10-31 21:00:16 +00:00
|
|
|
/*
|
|
|
|
* Component: alert
|
|
|
|
* ----------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
.icon {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2018-03-17 17:07:55 +00:00
|
|
|
|
2015-10-31 21:00:16 +00:00
|
|
|
.close {
|
|
|
|
color: #000;
|
|
|
|
opacity: .2;
|
|
|
|
&: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;
|
2018-02-03 23:45:19 +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;
|
2018-02-03 23:45:19 +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;
|
2018-02-03 23:45:19 +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;
|
2018-02-03 23:45:19 +00:00
|
|
|
border-color: darken(theme-color("info"), 5%);
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|