Sha256: 0659eb44208442f12628c78831b71b04dc803417ea8e2fce4c52d3899e1b8feb

Contents?: true

Size: 1.52 KB

Versions: 4

Compression:

Stored size: 1.52 KB

Contents

/* Table of Contents
==================================================
# Keyframes
# Loader
# Colors */

/* # Keyframes
================================================== */
@-webkit-keyframes loader-spinner {
  0% { @include transform(0); }
  100% { @include transform(360deg); }
}
@keyframes loader-spinner {
  0% { @include transform(0); }
  100% { @include transform(360deg); }
}

/* # Loader
================================================== */
.loader-backdrop,
.loader-bar {
  height: 2px;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.loader-backdrop {
  height: 3px;
  background: $color-light-haze;
}
.loader-bar { background: $color-primary; }
.loader-peg {
  box-shadow: 0 0 10px $color-primary, 0 0 5px $color-primary;
  display: block;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 0;
  @include transform(rotate(3deg) translate(0, -4px));
  width: 100px;
}
.loader-spinner {
  display: block;
  pointer-events: none;
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9999;
}
.loader-spinner-icon {
  @include animation(loader-spinner 400ms linear infinite);
  border: solid 2px $color-transparent;
  border-left-color: $color-primary;
  border-top-color: $color-primary;
  border-radius: 500px;
  box-sizing: border-box;
  height: 18px;
  pointer-events: none;
  width: 18px;
}

/* # Colors
================================================== */
.loader-dark { background: $color-black; }
.loader-light { background: $color-haze; }

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
active_frontend-12.0.3 vendor/assets/stylesheets/_loader.scss
active_frontend-12.0.2 vendor/assets/stylesheets/_loader.scss
active_frontend-12.0.1 vendor/assets/stylesheets/_loader.scss
active_frontend-12.0.0 vendor/assets/stylesheets/_loader.scss