mirror of https://github.com/ColorlibHQ/AdminLTE
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.
47 lines
650 B
47 lines
650 B
/*
|
|
* Component: Alert
|
|
* ----------------
|
|
*/
|
|
|
|
.alert {
|
|
.icon {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.close {
|
|
color: $black;
|
|
opacity: .2;
|
|
|
|
&:hover {
|
|
opacity: .5;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: $white;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
//Alert Variants
|
|
.alert-success {
|
|
@extend .bg-success;
|
|
border-color: darken(theme-color('success'), 5%);
|
|
}
|
|
|
|
.alert-danger,
|
|
.alert-error {
|
|
@extend .bg-danger;
|
|
border-color: darken(theme-color('danger'), 5%);
|
|
}
|
|
|
|
.alert-warning {
|
|
@extend .bg-warning;
|
|
border-color: darken(theme-color('warning'), 5%);
|
|
}
|
|
|
|
.alert-info {
|
|
@extend .bg-info;
|
|
border-color: darken(theme-color('info'), 5%);
|
|
}
|