_buttons.scss 608 B

123456789101112131415161718
  1. // Button backgrounds
  2. // ------------------
  3. @mixin buttonBackground($startColor, $endColor, $text-color: #fff, $textShadow: 0 -1px 0 rgba(0,0,0,.25)) {
  4. // gradientBar will set the background to a pleasing blend of these, to support IE<=9
  5. @include gradientBar($startColor, $endColor, $text-color, $textShadow);
  6. box-shadow: inset 0 -4px rgba(0,0,0,0.3);
  7. // in these cases the gradient won't cover the background, so we override
  8. &:hover, &:focus, &:active, &.active, &.disabled, &[disabled] {
  9. color: $text-color;
  10. background-image: none;
  11. background-color: darken($endColor, 2%);
  12. }
  13. }