2015-10-31 21:00:16 +00:00
|
|
|
/*
|
|
|
|
* Component: alert
|
|
|
|
* ----------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
@include border-radius(3px);
|
|
|
|
h4 {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: #000;
|
|
|
|
opacity: .2;
|
|
|
|
&:hover {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Alert Variants
|
|
|
|
.alert-success {
|
|
|
|
@extend .bg-green;
|
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 {
|
|
|
|
@extend .bg-red;
|
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 {
|
|
|
|
@extend .bg-yellow;
|
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 {
|
|
|
|
@extend .bg-aqua;
|
2018-02-03 23:45:19 +00:00
|
|
|
border-color: darken(theme-color("info"), 5%);
|
2015-10-31 21:00:16 +00:00
|
|
|
}
|