theme.widget.notification.styl 871 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Theme
  5. * @class Layout
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. @import "__init.styl"
  10. /* -------------------------- NOTIFICATION -------------------------- */
  11. .notification
  12. color: #fff
  13. &:not(.push)
  14. background-color: rgba(0,0,0,0.6)
  15. & .window
  16. &.growl
  17. background: rgba(0,0,0,0.75)
  18. &:not(.growl)
  19. box-shadow(0 0 8px #444)
  20. & button, .button
  21. background: #fff
  22. color: THEME_dark
  23. &.confirm, &.html
  24. background: #e6e6e6
  25. color: #222
  26. &.error
  27. background: COLOR_cancel
  28. &.success
  29. background: COLOR_success
  30. &.error, &.success
  31. color: #fff
  32. & small
  33. opacity: 0.75
  34. font-weight: 100
  35. &.html
  36. & .title
  37. background: THEME
  38. color: #fff
  39. &.push
  40. background: rgba(0,0,0,0.65)