Sin descripción
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.

_button.scss 433B

123456789101112131415161718192021222324
  1. @mixin button-color($color) {
  2. &,
  3. &:focus,
  4. &.focus,
  5. &.disabled,
  6. &:disabled,
  7. .show > &.dropdown-toggle {
  8. color: $color;
  9. }
  10. }
  11. @mixin button-color-hover($color) {
  12. &:hover:not(:disabled):not(.disabled),
  13. &.hover:not(:disabled):not(.disabled) {
  14. color: $color;
  15. }
  16. }
  17. @mixin button-color-active($color) {
  18. &:not(:disabled):not(.disabled):active,
  19. &:not(:disabled):not(.disabled).active {
  20. color: $color;
  21. }
  22. }