Sha256: 10a0b6db9d7bd890c0397c1298e4866e637180bb9420ba749edb6714aeaf235c

Contents?: true

Size: 1.36 KB

Versions: 2

Compression:

Stored size: 1.36 KB

Contents

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

/* # 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;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_frontend-11.1.0 vendor/assets/stylesheets/_loader.scss
active_frontend-11.0.0 vendor/assets/stylesheets/_loader.scss