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.

24 lines
608 B

  1. .o_notification_manager {
  2. .o_notification {
  3. &.o_success {
  4. color: white;
  5. background-color: theme-color('success');
  6. }
  7. &.o_danger {
  8. color: white;
  9. background-color: theme-color('danger');
  10. }
  11. &.o_warning {
  12. color: white;
  13. background-color: theme-color('warning');
  14. }
  15. &.o_info {
  16. color: white;
  17. background-color: theme-color('info');
  18. }
  19. &.o_default {
  20. color: black;
  21. background-color: theme-color('default');
  22. }
  23. }
  24. }