2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Progress bars
|
|
|
|
// --------------------------------------------------
|
2012-01-07 18:52:57 -05:00
|
|
|
|
|
|
|
|
|
|
|
// ANIMATIONS
|
|
|
|
// ----------
|
|
|
|
|
|
|
|
// Webkit
|
2011-11-26 13:41:17 -05:00
|
|
|
@-webkit-keyframes progress-bar-stripes {
|
2012-03-15 13:11:17 -04:00
|
|
|
from { background-position: 40px 0; }
|
|
|
|
to { background-position: 0 0; }
|
2011-11-26 13:41:17 -05:00
|
|
|
}
|
|
|
|
|
2012-01-28 17:20:27 -05:00
|
|
|
// Firefox
|
2012-01-28 15:43:19 -05:00
|
|
|
@-moz-keyframes progress-bar-stripes {
|
2012-03-15 13:11:17 -04:00
|
|
|
from { background-position: 40px 0; }
|
|
|
|
to { background-position: 0 0; }
|
2012-01-28 15:43:19 -05:00
|
|
|
}
|
2011-11-26 13:41:17 -05:00
|
|
|
|
2012-03-10 21:03:59 -05:00
|
|
|
// IE9
|
|
|
|
@-ms-keyframes progress-bar-stripes {
|
2012-03-15 13:11:17 -04:00
|
|
|
from { background-position: 40px 0; }
|
|
|
|
to { background-position: 0 0; }
|
2012-03-10 21:03:59 -05:00
|
|
|
}
|
|
|
|
|
2012-03-24 13:53:27 -04:00
|
|
|
// Opera
|
|
|
|
@-o-keyframes progress-bar-stripes {
|
|
|
|
from { background-position: 0 0; }
|
|
|
|
to { background-position: 40px 0; }
|
|
|
|
}
|
|
|
|
|
2012-01-07 18:52:57 -05:00
|
|
|
// Spec
|
2011-11-26 13:41:17 -05:00
|
|
|
@keyframes progress-bar-stripes {
|
2012-03-15 13:11:17 -04:00
|
|
|
from { background-position: 40px 0; }
|
|
|
|
to { background-position: 0 0; }
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// THE BARS
|
|
|
|
// --------
|
|
|
|
|
|
|
|
// Outer container
|
2011-11-26 13:41:17 -05:00
|
|
|
.progress {
|
2012-01-27 23:17:03 -05:00
|
|
|
overflow: hidden;
|
2012-11-30 17:45:25 -05:00
|
|
|
height: @line-height-base;
|
|
|
|
margin-bottom: @line-height-base;
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .vertical(#f5f5f5, #f9f9f9);
|
|
|
|
.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
|
2012-11-30 17:45:25 -05:00
|
|
|
border-radius: @border-radius-base;
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bar of progress
|
|
|
|
.progress .bar {
|
|
|
|
width: 0%;
|
2012-07-02 17:21:26 -04:00
|
|
|
height: 100%;
|
2012-11-30 18:05:23 -05:00
|
|
|
color: #fff;
|
2012-08-20 04:12:03 -04:00
|
|
|
float: left;
|
2012-01-24 23:30:26 -05:00
|
|
|
font-size: 12px;
|
|
|
|
text-align: center;
|
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .vertical(#149bdf, #0480be);
|
|
|
|
.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
|
|
|
|
.box-sizing(border-box);
|
|
|
|
.transition(width .6s ease);
|
|
|
|
}
|
2012-08-20 14:22:37 -04:00
|
|
|
.progress .bar + .bar {
|
2012-09-12 18:48:56 -04:00
|
|
|
.box-shadow(~"inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15)");
|
2012-08-20 14:22:37 -04:00
|
|
|
}
|
2012-01-07 18:52:57 -05:00
|
|
|
|
|
|
|
// Striped bars
|
2012-01-29 16:15:38 -05:00
|
|
|
.progress-striped .bar {
|
2012-03-06 02:00:37 -05:00
|
|
|
#gradient > .striped(#149bdf);
|
2012-01-18 02:52:49 -05:00
|
|
|
.background-size(40px 40px);
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
2012-03-24 13:53:27 -04:00
|
|
|
-ms-animation: progress-bar-stripes 2s linear infinite;
|
|
|
|
-o-animation: progress-bar-stripes 2s linear infinite;
|
2012-01-07 18:52:57 -05:00
|
|
|
animation: progress-bar-stripes 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// COLORS
|
|
|
|
// ------
|
|
|
|
|
|
|
|
// Danger (red)
|
2012-08-20 04:12:03 -04:00
|
|
|
.progress-danger .bar, .progress .bar-danger {
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .vertical(#ee5f5b, #c43c35);
|
|
|
|
}
|
2012-08-20 04:12:03 -04:00
|
|
|
.progress-danger.progress-striped .bar, .progress-striped .bar-danger {
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .striped(#ee5f5b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Success (green)
|
2012-08-20 04:12:03 -04:00
|
|
|
.progress-success .bar, .progress .bar-success {
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .vertical(#62c462, #57a957);
|
|
|
|
}
|
2012-08-20 04:12:03 -04:00
|
|
|
.progress-success.progress-striped .bar, .progress-striped .bar-success {
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .striped(#62c462);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Info (teal)
|
2012-08-20 04:12:03 -04:00
|
|
|
.progress-info .bar, .progress .bar-info {
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .vertical(#5bc0de, #339bb9);
|
|
|
|
}
|
2012-08-20 04:12:03 -04:00
|
|
|
.progress-info.progress-striped .bar, .progress-striped .bar-info {
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .striped(#5bc0de);
|
|
|
|
}
|
2012-02-24 05:23:04 -05:00
|
|
|
|
|
|
|
// Warning (orange)
|
2012-08-20 04:12:03 -04:00
|
|
|
.progress-warning .bar, .progress .bar-warning {
|
2012-11-30 18:18:49 -05:00
|
|
|
#gradient > .vertical(lighten(#f89406, 15%), #f89406);
|
2012-02-24 05:23:04 -05:00
|
|
|
}
|
2012-08-20 04:12:03 -04:00
|
|
|
.progress-warning.progress-striped .bar, .progress-striped .bar-warning {
|
2012-11-30 18:18:49 -05:00
|
|
|
#gradient > .striped(lighten(#f89406, 15%));
|
2012-02-24 05:23:04 -05:00
|
|
|
}
|