_toastr.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Plugin: Toastr
  3. * --------------
  4. */
  5. // Background to FontAwesome Icons
  6. // #toast-container > .toast {
  7. // background-image: none !important;
  8. // }
  9. // #toast-container > .toast .toast-message:before {
  10. // font-family: 'Font Awesome 5 Free';
  11. // font-size: 24px;
  12. // font-weight: 900;
  13. // line-height: 18px;
  14. // float: left;
  15. // color: #FFF;
  16. // padding-right: 0.5em;
  17. // margin: auto 0.5em auto -1.5em;
  18. // }
  19. // #toast-container > .toast-warning .toast-message:before {
  20. // content: "\f06a";
  21. // }
  22. // #toast-container > .toast-error .toast-message:before {
  23. // content: "\f071";
  24. // }
  25. // #toast-container > .toast-info .toast-message:before {
  26. // content: "\f05a";
  27. // }
  28. // #toast-container > .toast-success .toast-message:before {
  29. // content: "\f058";
  30. // }
  31. // Background color
  32. .toast {
  33. background-color: $primary;
  34. }
  35. .toast-success {
  36. background-color: $success;
  37. }
  38. .toast-error {
  39. background-color: $danger;
  40. }
  41. .toast-info {
  42. background-color: $info;
  43. }
  44. .toast-warning {
  45. background-color: $warning;
  46. }