Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

notification.scss 844B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @mixin liferay-notification {
  2. .v-Notification {
  3. background: #dff4ff;
  4. color: #34404F;
  5. font-weight: bold;
  6. cursor: pointer;
  7. overflow: hidden;
  8. padding: 1em;
  9. max-width: 85%;
  10. border: 1px solid #a7cedf;
  11. }
  12. .v-Notification-caption,
  13. .v-Notification-description {
  14. display: inline;
  15. margin: 0 0.5em 0 0;
  16. }
  17. .v-Notification-warning {
  18. background: #ffc;
  19. border-color: #fc0;
  20. }
  21. .v-Notification-error {
  22. background-color: #ffdddd;
  23. border-color: #ff0000;
  24. }
  25. .v-Notification-tray {
  26. color: #111111;
  27. background-color: #e5e5e5;
  28. border-color: #b5b5b5;
  29. }
  30. .v-Notification-tray .v-Notification-caption {
  31. display: block;
  32. }
  33. .v-Notification-tray .v-Notification-description {
  34. display: block;
  35. }
  36. .v-Notification-system {
  37. background-color: #ffdddd;
  38. border-color: #ff0000;
  39. }
  40. .v-Notification-system .v-Notification-caption {
  41. display: block;
  42. margin: 0;
  43. }
  44. }