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.
 
 
 
 
 

47 lines
772 B

  1. /**
  2. * This file provides the design styles for message block
  3. */
  4. .msg-area {
  5. clear: both;
  6. padding-top: 1.6rem;
  7. div {
  8. line-height: 135%;
  9. }
  10. &:empty {
  11. display: none;
  12. }
  13. }
  14. /* short fix: SPR-891 - icons for notifications in message area are repeated */
  15. div.success,
  16. div.error,
  17. div.info,
  18. div.notify {
  19. background-repeat: no-repeat;
  20. background-position: 8px 50%;
  21. border: 1px solid #eeb;
  22. font-size: 90%;
  23. margin: 0 0 .5em;
  24. padding: .4em;
  25. padding-left: 32px;
  26. overflow: hidden;
  27. border-radius: @fix_border-radius;
  28. * {
  29. color: inherit;
  30. }
  31. a {
  32. text-decoration: underline;
  33. &:hover,
  34. &:focus,
  35. &:active {
  36. text-decoration: none;
  37. }
  38. }
  39. }