You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AdminLTE/build/scss/_alerts.scss

46 lines
647 B

/*
* Component: alert
* ----------------
*/
.alert {
.icon {
margin-right: 10px;
}
7 years ago
.close {
color: #000;
opacity: .2;
&:hover {
opacity: .5;
}
}
7 years ago
a {
7 years ago
color: $white;
text-decoration: underline;
}
}
//Alert Variants
.alert-success {
7 years ago
@extend .bg-success;
7 years ago
border-color: darken(theme-color("success"), 5%);
}
.alert-danger,
.alert-error {
7 years ago
@extend .bg-danger;
7 years ago
border-color: darken(theme-color("danger"), 5%);
}
.alert-warning {
7 years ago
@extend .bg-warning;
7 years ago
border-color: darken(theme-color("warning"), 5%);
}
.alert-info {
7 years ago
@extend .bg-info;
7 years ago
border-color: darken(theme-color("info"), 5%);
}