3 // --------------------------------------------------
10 @-webkit-keyframes progress-bar-stripes {
11 from { background-position: 40px 0; }
12 to { background-position: 0 0; }
16 @-moz-keyframes progress-bar-stripes {
17 from { background-position: 40px 0; }
18 to { background-position: 0 0; }
22 @-ms-keyframes progress-bar-stripes {
23 from { background-position: 40px 0; }
24 to { background-position: 0 0; }
28 @-o-keyframes progress-bar-stripes {
29 from { background-position: 0 0; }
30 to { background-position: 40px 0; }
34 @keyframes progress-bar-stripes {
35 from { background-position: 40px 0; }
36 to { background-position: 0 0; }
47 height: @baseLineHeight;
48 margin-bottom: @baseLineHeight;
49 #gradient > .vertical(#f5f5f5, #f9f9f9);
50 .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
51 .border-radius(@baseBorderRadius);
62 text-shadow: 0 -1px 0 rgba(0,0,0,.25);
63 #gradient > .vertical(#149bdf, #0480be);
64 .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
65 .box-sizing(border-box);
66 .transition(width .6s ease);
68 .progress .bar + .bar {
69 .box-shadow(~"inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)");
73 .progress-striped .bar {
74 #gradient > .striped(#149bdf);
75 .background-size(40px 40px);
78 // Call animation for the active one
79 .progress.active .bar {
80 -webkit-animation: progress-bar-stripes 2s linear infinite;
81 -moz-animation: progress-bar-stripes 2s linear infinite;
82 -ms-animation: progress-bar-stripes 2s linear infinite;
83 -o-animation: progress-bar-stripes 2s linear infinite;
84 animation: progress-bar-stripes 2s linear infinite;
93 .progress-danger .bar, .progress .bar-danger {
94 #gradient > .vertical(#ee5f5b, #c43c35);
96 .progress-danger.progress-striped .bar, .progress-striped .bar-danger {
97 #gradient > .striped(#ee5f5b);
101 .progress-success .bar, .progress .bar-success {
102 #gradient > .vertical(#62c462, #57a957);
104 .progress-success.progress-striped .bar, .progress-striped .bar-success {
105 #gradient > .striped(#62c462);
109 .progress-info .bar, .progress .bar-info {
110 #gradient > .vertical(#5bc0de, #339bb9);
112 .progress-info.progress-striped .bar, .progress-striped .bar-info {
113 #gradient > .striped(#5bc0de);
117 .progress-warning .bar, .progress .bar-warning {
118 #gradient > .vertical(lighten(@orange, 15%), @orange);
120 .progress-warning.progress-striped .bar, .progress-striped .bar-warning {
121 #gradient > .striped(lighten(@orange, 15%));