0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/less/progress-bars.less

100 lines
2.1 KiB
Plaintext
Raw Normal View History

2012-06-29 06:46:45 +02:00
//
// Progress bars
// --------------------------------------------------
// Bar animations
// -------------------------
// Webkit
2011-11-26 19:41:17 +01:00
@-webkit-keyframes progress-bar-stripes {
2012-03-15 18:11:17 +01:00
from { background-position: 40px 0; }
to { background-position: 0 0; }
2011-11-26 19:41:17 +01:00
}
// Firefox
@-moz-keyframes progress-bar-stripes {
2012-03-15 18:11:17 +01:00
from { background-position: 40px 0; }
to { background-position: 0 0; }
}
2011-11-26 19:41:17 +01:00
// Opera
@-o-keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
}
// Spec and IE10+
2011-11-26 19:41:17 +01:00
@keyframes progress-bar-stripes {
2012-03-15 18:11:17 +01:00
from { background-position: 40px 0; }
to { background-position: 0 0; }
}
// Bar itself
// -------------------------
// Outer container
2011-11-26 19:41:17 +01:00
.progress {
overflow: hidden;
height: @line-height-computed;
margin-bottom: @line-height-computed;
background-color: @progress-bg;
border-radius: @border-radius-base;
2013-01-17 00:19:55 +01:00
.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
}
// Bar of progress
.progress-bar {
2013-01-17 00:19:55 +01:00
float: left;
width: 0%;
2012-07-02 23:21:26 +02:00
height: 100%;
font-size: @font-size-small;
color: @progress-bar-color;
2012-01-25 05:30:26 +01:00
text-align: center;
background-color: @progress-bar-bg;
.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
.transition(width .6s ease);
}
// Striped bars
.progress-striped .progress-bar {
#gradient > .striped(@progress-bar-bg);
.background-size(40px 40px);
}
// Call animation for the active one
.progress.active .progress-bar {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-moz-animation: progress-bar-stripes 2s linear infinite;
-ms-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
// Variations
// -------------------------
// Danger (red)
.progress-bar-danger {
2013-07-08 00:06:16 +02:00
.progress-bar-variant(@progress-bar-danger-bg);
}
// Success (green)
.progress-bar-success {
2013-07-08 00:06:16 +02:00
.progress-bar-variant(@progress-bar-success-bg);
}
// Warning (orange)
.progress-bar-warning {
2013-07-08 00:06:16 +02:00
.progress-bar-variant(@progress-bar-warning-bg);
}
// Info (teal)
.progress-bar-info {
2013-07-08 00:06:16 +02:00
.progress-bar-variant(@progress-bar-info-bg);
}