theme.widget.button.styl 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Theme
  5. * @class Layout
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. header
  10. & .button, button
  11. width: 39px
  12. padding: 0px
  13. color: #fff
  14. text-shadow: 0 1px 1px darken(THEME, 25%)
  15. &:active
  16. text-shadow: 0 0 1px lighten(THEME, 75%)
  17. & .right .button, .right button
  18. margin-right: 0px !important
  19. box-shadow inset 1px 0 0 darken(THEME, 20%), inset 2px 0 0 lighten(THEME, 20%)
  20. article
  21. & .button, button
  22. color: #fff !important
  23. box-shadow inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 1px rgba(0,0,0,0.15)
  24. border: solid 1px rgba(0,0,0,0.1)
  25. text-shadow: 0 1px 0 rgba(0,0,0,0.1)
  26. border-radius (BORDER_radius * 2)
  27. &:active
  28. box-shadow inset 0 0 128px rgba(0,0,0,0.25)
  29. border-color: none
  30. &, abbr
  31. font-weight: 600
  32. & .icon
  33. opacity: 0.65
  34. text-shadow: 0 -1px 0 rgba(0,0,0,0.25)
  35. & button, .button, .tag:not(.icon)
  36. &
  37. background-color: darken(THEME, 15%)
  38. &.color
  39. background-color: lighten(COLOR, 10%)
  40. &.accept
  41. background-color: SUCCESS
  42. &.cancel
  43. background-color: DANGER
  44. &.warning
  45. background-color: WARNING
  46. &[disabled], :disabled, &.disabled
  47. background: FORM_color
  48. color: #999 !important
  49. box-shadow: none !important
  50. text-shadow: none !important