AdminLTE/build/scss/plugins/_sweetalert2.scss
REJack 66f15c4f3d
added notification plugins aka toasts (sweetalert2 & toastr)
- added sweetalert2 & toastr to package.json & build/npm/Plugins.js
- added plugin related scss fixes and created files per plugin
- updated "Modals" demo page to "Modals & Alerts" & renamed link on all demo files
- rebuild dist files
2019-06-16 11:20:59 +02:00

37 lines
666 B
SCSS

/*
* 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;
}
}
}