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.
37 lines
670 B
37 lines
670 B
/*
|
|
* Plugin: SweetAlert2
|
|
* -------------------
|
|
*/
|
|
|
|
// Icon Colors
|
|
.swal2-icon {
|
|
&.swal2-info {
|
|
color: $info;
|
|
border-color: ligthen($info, 20%);
|
|
}
|
|
&.swal2-warning {
|
|
color: $warning;
|
|
border-color: ligthen($warning, 20%);
|
|
}
|
|
&.swal2-error {
|
|
color: $danger;
|
|
border-color: ligthen($danger, 20%);
|
|
}
|
|
&.swal2-question {
|
|
color: $secondary;
|
|
border-color: ligthen($secondary, 20%);
|
|
}
|
|
&.swal2-success {
|
|
color: $success;
|
|
border-color: ligthen($success, 20%);
|
|
|
|
.swal2-success-ring {
|
|
border-color: ligthen($success, 20%);
|
|
}
|
|
[class^="swal2-success-line"] {
|
|
background-color: $success;
|
|
}
|
|
}
|
|
|
|
}
|