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.

52 lines
1.1 KiB

  1. =control
  2. -moz-appearance: none
  3. -webkit-appearance: none
  4. align-items: center
  5. background-color: $control-background
  6. border: 1px solid $control-border
  7. border-radius: $radius
  8. color: $control
  9. display: inline-flex
  10. font-size: $size-normal
  11. height: 32px
  12. justify-content: flex-start
  13. line-height: 24px
  14. padding-left: 8px
  15. padding-right: 8px
  16. position: relative
  17. vertical-align: top
  18. &:hover
  19. border-color: $control-hover-border
  20. &:active,
  21. &:focus,
  22. &.is-active
  23. border-color: $control-active-border
  24. outline: none
  25. &[disabled],
  26. &.is-disabled
  27. background-color: $background
  28. border-color: $control-border
  29. cursor: not-allowed
  30. pointer-events: none
  31. +placeholder
  32. color: rgba($control, 0.3)
  33. =control-small
  34. border-radius: $radius-small
  35. font-size: 11px
  36. height: 24px
  37. line-height: 16px
  38. padding-left: 6px
  39. padding-right: 6px
  40. =control-medium
  41. font-size: 18px
  42. height: 40px
  43. line-height: 32px
  44. padding-left: 10px
  45. padding-right: 10px
  46. =control-large
  47. font-size: 24px
  48. height: 48px
  49. line-height: 40px
  50. padding-left: 12px
  51. padding-right: 12px