Sha256: 01f7e1a1fdd41d085fd33e9f6117001b6b247f7522c60b0a67b73766a7a4d6c6

Contents?: true

Size: 809 Bytes

Versions: 4

Compression:

Stored size: 809 Bytes

Contents

// Progress animations
@keyframes progress-bar-stripes {
  from { background-position: $progress-height 0; }
  to { background-position: 0 0; }
}

// Basic progress bar
.progress {
  display: flex;
  overflow: hidden; // force rounded corners by cropping it
  font-size: $progress-font-size;
  line-height: $progress-height;
  text-align: center;
  background-color: $progress-bg;
  @include border-radius($progress-border-radius);
}
.progress-bar {
  height: $progress-height;
  color: $progress-bar-color;
  background-color: $progress-bar-bg;
}

// Striped
.progress-bar-striped {
  @include gradient-striped();
  background-size: $progress-height $progress-height;
}

// Animated
.progress-bar-animated {
  animation: progress-bar-stripes $progress-bar-animation-timing;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
optimacms-0.3.12 app/assets/stylesheets/bootstrap4/_progress.scss
optimacms-0.3.11 app/assets/stylesheets/bootstrap4/_progress.scss
optimacms-0.3.4 app/assets/stylesheets/bootstrap4/_progress.scss
optimacms-0.3.3 app/assets/stylesheets/bootstrap4/_progress.scss