2012-01-07 18:52:57 -05:00
|
|
|
// PROGRESS BARS
|
|
|
|
// -------------
|
|
|
|
|
|
|
|
|
|
|
|
// ANIMATIONS
|
|
|
|
// ----------
|
|
|
|
|
|
|
|
// Webkit
|
2011-11-26 13:41:17 -05:00
|
|
|
@-webkit-keyframes progress-bar-stripes {
|
2012-01-07 18:52:57 -05:00
|
|
|
from { background-position: 0 0; }
|
|
|
|
to { background-position: 40px 0; }
|
2011-11-26 13:41:17 -05:00
|
|
|
}
|
|
|
|
|
2012-01-07 18:52:57 -05:00
|
|
|
// Temporarily commented out since LESS won't compile with this
|
|
|
|
// @-moz-keyframes progress-bar-stripes {
|
|
|
|
// from { background-position: 0 0; }
|
|
|
|
// to { background-position: 40px 0; }
|
|
|
|
// }
|
2011-11-26 13:41:17 -05:00
|
|
|
|
2012-01-07 18:52:57 -05:00
|
|
|
// Spec
|
2011-11-26 13:41:17 -05:00
|
|
|
@keyframes progress-bar-stripes {
|
2012-01-07 18:52:57 -05:00
|
|
|
from { background-position: 0 0; }
|
|
|
|
to { background-position: 40px 0; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// THE BARS
|
|
|
|
// --------
|
|
|
|
|
|
|
|
// Outer container
|
2011-11-26 13:41:17 -05:00
|
|
|
.progress {
|
2012-01-27 23:17:03 -05:00
|
|
|
overflow: hidden;
|
2012-01-07 18:52:57 -05:00
|
|
|
height: 18px;
|
2011-11-26 13:41:17 -05:00
|
|
|
margin-bottom: 18px;
|
2012-01-07 18:52:57 -05:00
|
|
|
#gradient > .vertical(#f5f5f5, #f9f9f9);
|
|
|
|
.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
|
2012-01-27 23:17:03 -05:00
|
|
|
.border-radius(4px);
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bar of progress
|
|
|
|
.progress .bar {
|
|
|
|
width: 0%;
|
2012-01-08 02:21:40 -05:00
|
|
|
height: 18px;
|
2012-01-25 13:59:45 -05:00
|
|
|
color: @white;
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Striped bars
|
|
|
|
.progress.striped .bar {
|
|
|
|
#gradient > .striped(#62c462);
|
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;
|
|
|
|
animation: progress-bar-stripes 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// COLORS
|
|
|
|
// ------
|
|
|
|
|
|
|
|
// Danger (red)
|
|
|
|
.progress.danger .bar {
|
|
|
|
#gradient > .vertical(#ee5f5b, #c43c35);
|
|
|
|
}
|
|
|
|
.progress.danger.striped .bar {
|
|
|
|
#gradient > .striped(#ee5f5b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Success (green)
|
|
|
|
.progress.success .bar {
|
|
|
|
#gradient > .vertical(#62c462, #57a957);
|
|
|
|
}
|
|
|
|
.progress.success.striped .bar {
|
|
|
|
#gradient > .striped(#62c462);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Info (teal)
|
|
|
|
.progress.info .bar {
|
|
|
|
#gradient > .vertical(#5bc0de, #339bb9);
|
|
|
|
}
|
|
|
|
.progress.info.striped .bar {
|
|
|
|
#gradient > .striped(#5bc0de);
|
|
|
|
}
|