Sha256: 9fb6c47ddb7f2ccd7c6f75200ddcf0e112c67f52fcf78a3bd2c0c9fa09a15345

Contents?: true

Size: 1.92 KB

Versions: 82

Compression:

Stored size: 1.92 KB

Contents

// PROGRESS BARS
// -------------


// ANIMATIONS
// ----------

// Webkit
@-webkit-keyframes progress-bar-stripes {
  from  { background-position: 0 0; }
  to    { background-position: 40px 0; }
}

// Firefox
@-moz-keyframes progress-bar-stripes {
  from  { background-position: 0 0; }
  to    { background-position: 40px 0; }
}

// Spec
@keyframes progress-bar-stripes {
  from  { background-position: 0 0; }
  to    { background-position: 40px 0; }
}



// THE BARS
// --------

// Outer container
.progress {
  overflow: hidden;
  height: 18px;
  margin-bottom: 18px;
  @include gradient-vertical(#f5f5f5, #f9f9f9);
  @include box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
  @include border-radius(4px);
}

// Bar of progress
.progress .bar {
  width: 0%;
  height: 18px;
  color: $white;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0,0,0,.25);
  @include gradient-vertical(#149bdf, #0480be);
  @include box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
  @include box-sizing(border-box);
  @include transition(width .6s ease);
}

// Striped bars
.progress-striped .bar {
  @include gradient-striped(#62c462);
  @include background-size(40px 40px);
}

// Call animation for the active one
.progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
     -moz-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}



// COLORS
// ------

// Danger (red)
.progress-danger .bar {
  @include gradient-vertical(#ee5f5b, #c43c35);
}
.progress-danger.progress-striped .bar {
  @include gradient-striped(#ee5f5b);
}

// Success (green)
.progress-success .bar {
  @include gradient-vertical(#62c462, #57a957);
}
.progress-success.progress-striped .bar {
  @include gradient-striped(#62c462);
}

// Info (teal)
.progress-info .bar {
  @include gradient-vertical(#5bc0de, #339bb9);
}
.progress-info.progress-striped .bar {
  @include gradient-striped(#5bc0de);
}

Version data entries

82 entries across 56 versions & 6 rubygems

Version Path
bootstrapped-rails-1.1.1.1 vendor/stylesheets/bootstrapped/progress-bars.scss
bootstrapped-rails-1.1.1.1 vendor/twitter/scss/progress-bars.scss
bootstrap-generators-2.0.1 vendor/assets/stylesheets/scss/progress-bars.scss
cmaitchison-bootstrap-rails-2.0.1.1 vendor/assets/stylesheets/progress-bars.scss
anjlab-bootstrap-rails-2.0.1.1 vendor/assets/stylesheets/progress-bars.scss
bootstrap-sass-rails-2.0.1.2 vendor/assets/stylesheets/twitter/bootstrap/_progress-bars.scss
bootstrap-sass-rails-2.0.1.1 vendor/assets/stylesheets/twitter/bootstrap/_progress-bars.scss
bootstrap-sass-rails-2.0.1.0 vendor/assets/stylesheets/twitter/bootstrap/_progress-bars.scss
compass_twitter_bootstrap-2.0.1.2 stylesheets/compass_twitter_bootstrap/_progress-bars.scss
compass_twitter_bootstrap-2.0.1.1 stylesheets/compass_twitter_bootstrap/_progress-bars.scss
compass_twitter_bootstrap-2.0.1 stylesheets/compass_twitter_bootstrap/_progress-bars.scss
anjlab-bootstrap-rails-2.0.1.0 vendor/assets/stylesheets/progress-bars.scss
anjlab-bootstrap-rails-2.0.0.5 vendor/assets/stylesheets/progress-bars.scss
anjlab-bootstrap-rails-2.0.0.4 vendor/assets/stylesheets/progress-bars.scss
anjlab-bootstrap-rails-2.0.0.3 vendor/assets/stylesheets/progress-bars.scss
bootstrap-sass-rails-2.0.0.3 vendor/assets/stylesheets/twitter/bootstrap/_progress-bars.scss
anjlab-bootstrap-rails-2.0.0.2 vendor/assets/stylesheets/progress-bars.scss
compass_twitter_bootstrap-2.0.0 stylesheets/compass_twitter_bootstrap/_progress-bars.scss
anjlab-bootstrap-rails-2.0.0.1 vendor/assets/stylesheets/progress-bars.scss
bootstrap-sass-rails-2.0.0.2 vendor/assets/stylesheets/twitter/bootstrap/_progress-bars.scss