AdminLTE/build/scss/_alerts.scss

48 lines
701 B
SCSS
Raw Normal View History

2015-10-31 22:00:16 +01: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-04 00:45:19 +01:00
border-color: darken(theme-color("success"), 5%);
2015-10-31 22:00:16 +01:00
}
.alert-danger,
.alert-error {
@extend .bg-red;
2018-02-04 00:45:19 +01:00
border-color: darken(theme-color("danger"), 5%);
2015-10-31 22:00:16 +01:00
}
.alert-warning {
@extend .bg-yellow;
2018-02-04 00:45:19 +01:00
border-color: darken(theme-color("warning"), 5%);
2015-10-31 22:00:16 +01:00
}
.alert-info {
@extend .bg-aqua;
2018-02-04 00:45:19 +01:00
border-color: darken(theme-color("info"), 5%);
2015-10-31 22:00:16 +01:00
}