// Кнопка
@mixin type-text () {
  background: $text-bg;
  color: $text-color;

  &:hover,
  &:focus {
    background: $text-hover-bg;
  }
  &:active {
    background: $text-active-bg;
  }
  &[disabled] {
    &,
    &:hover,
    &:focus,
    &:active {
      background: $text-disabled-bg;
      color: $text-disabled-color;
    }
  }
}
