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.

55 lines
918B

  1. #toast-container {
  2. width: 400px;
  3. }
  4. #toast-container .toast {
  5. float: right ;
  6. width: 400px ;
  7. opacity: 1 ;
  8. box-shadow: none !important;
  9. -moz-box-shadow: none !important;
  10. -o-box-shadow: none !important;
  11. -webkit-box-shadow: none !important;
  12. &.success {
  13. background-color: $success !important ;
  14. }
  15. &.danger, &.error {
  16. background-color: $danger !important ;
  17. }
  18. &.info {
  19. background-color: $info !important ;
  20. }
  21. &.warning {
  22. background-color: $warning !important ;
  23. }
  24. }
  25. #toast-container:before:hover {
  26. opacity: 1;
  27. cursor: pointer;
  28. }
  29. #toast-close-all {
  30. border: 0;
  31. position: absolute;
  32. bottom: 7px;
  33. left: -15px;
  34. pointer-events: auto;
  35. z-index: 1000;
  36. background: #BD362F;
  37. border-radius: 3px;
  38. color: #fff;
  39. opacity: 0.8;
  40. width: 50px;
  41. height: 50px;
  42. font-size: 20px;
  43. text-align: center;
  44. //@include text-shadow(0 1px 0 #999) ;
  45. border-radius: 50px ;
  46. }