// ============================================================================
// :: Salesforce framework general slicing
// ============================================================================
/**
 * Scope with overwrites for the salesforce framework.
 */

// ============================================================================
// :: Button
// ============================================================================
.s-salesforce-general {

  .a-button {
    text-decoration: none !important;

    color: $text-color-white !important;

    &:disabled,
    &.is-disabled {
      color: $text-color-disabled !important;
    }
  }

  .a-button--outline {
    color: $primary-color-base !important;

    &.a-button--secondary {
      color: $secondary-color-base !important;
    }
  }

  .a-button--theme-grey {
    color: $text-color-medium !important;
  }

  .a-button--theme-black {
    color: $text-color-base !important;
  }
}
