// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.

//
// Office UI Fabric
// --------------------------------------------------
// Link (anchor) styles


@mixin ms-Link {
  color: $ms-color-themePrimary;
  text-decoration: none;
  cursor: pointer;

  &:hover,
  &:focus {
    color: $ms-color-themeDarker;
  }

  &:active {
    color: $ms-color-themePrimary;
  }

  @media screen and (-ms-high-contrast: active) {
    color: $ms-color-contrastBlackLink;
  }

  @media screen and (-ms-high-contrast: black-on-white) {
    color: $ms-color-contrastWhiteLink;
  }
}

.ms-Link {
  @include ms-Link;
}
