/**
 * Office UI Fabric JS 1.5.0
 * The JavaScript front-end framework for building experiences for Office 365.
 **/
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.

//
// Office UI Fabric
// --------------------------------------------------
// Spinner styles


.ms-Spinner {
  @include ms-baseFont;
  position: relative;
  height: 20px;

  &.ms-Spinner--large {
    height: 28px;

    .ms-Spinner-label {
      left: 34px;
      top: 6px;
    }
  }
}

.ms-Spinner-circle {
  position: absolute;
  border-radius: 100px;
  background-color: $ms-color-themePrimary;
  opacity: 0;

  @media screen and (-ms-high-contrast: active) {
    background-color: $ms-color-white;
  }

  @media screen and (-ms-high-contrast: black-on-white) {
    background-color: $ms-color-black;
  }
}

.ms-Spinner-label {
  @include ms-baseFont;
  position: relative;
  font-size: $ms-font-size-s;
  font-weight: $ms-font-weight-regular;
  color: $ms-color-themePrimary;
  left: 28px;
  top: 2px;
}
