vendor/frameworks/twitter/bootstrap/progress-bars.less in less-rails-bootstrap-2.0.6 vs vendor/frameworks/twitter/bootstrap/progress-bars.less in less-rails-bootstrap-2.0.7

- old
+ new

@@ -15,10 +15,16 @@ @-moz-keyframes progress-bar-stripes { from { background-position: 0 0; } to { background-position: 40px 0; } } +// IE9 +@-ms-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; } } @@ -52,11 +58,11 @@ .transition(width .6s ease); } // Striped bars .progress-striped .bar { - #gradient > .striped(#62c462); + #gradient > .striped(#149bdf); .background-size(40px 40px); } // Call animation for the active one .progress.active .bar { @@ -90,6 +96,14 @@ .progress-info .bar { #gradient > .vertical(#5bc0de, #339bb9); } .progress-info.progress-striped .bar { #gradient > .striped(#5bc0de); +} + +// Warning (orange) +.progress-warning .bar { + #gradient > .vertical(lighten(@orange, 15%), @orange); +} +.progress-warning.progress-striped .bar { + #gradient > .striped(lighten(@orange, 15%)); }