mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
9e98b733f1
* Drop progress bar text-shadow * Reorganize popover and tooltip vars and fix complier error due to missing `;` * Run `grunt`
105 lines
2.2 KiB
Text
105 lines
2.2 KiB
Text
//
|
|
// Progress bars
|
|
// --------------------------------------------------
|
|
|
|
|
|
// Bar animations
|
|
// -------------------------
|
|
|
|
// Webkit
|
|
@-webkit-keyframes progress-bar-stripes {
|
|
from { background-position: 40px 0; }
|
|
to { background-position: 0 0; }
|
|
}
|
|
|
|
// Firefox
|
|
@-moz-keyframes progress-bar-stripes {
|
|
from { background-position: 40px 0; }
|
|
to { background-position: 0 0; }
|
|
}
|
|
|
|
// IE9
|
|
@-ms-keyframes progress-bar-stripes {
|
|
from { background-position: 40px 0; }
|
|
to { background-position: 0 0; }
|
|
}
|
|
|
|
// Opera
|
|
@-o-keyframes progress-bar-stripes {
|
|
from { background-position: 0 0; }
|
|
to { background-position: 40px 0; }
|
|
}
|
|
|
|
// Spec
|
|
@keyframes progress-bar-stripes {
|
|
from { background-position: 40px 0; }
|
|
to { background-position: 0 0; }
|
|
}
|
|
|
|
|
|
|
|
// Bar itself
|
|
// -------------------------
|
|
|
|
// Outer container
|
|
.progress {
|
|
overflow: hidden;
|
|
height: @line-height-computed;
|
|
margin-bottom: @line-height-computed;
|
|
background-color: @progress-bg;
|
|
border-radius: @border-radius-base;
|
|
.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
|
|
}
|
|
|
|
// Bar of progress
|
|
.progress-bar {
|
|
float: left;
|
|
width: 0%;
|
|
height: 100%;
|
|
font-size: @font-size-small;
|
|
color: @progress-bar-color;
|
|
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 {
|
|
.progress-bar-variant(@progress-bar-danger-bg);
|
|
}
|
|
|
|
// Success (green)
|
|
.progress-bar-success {
|
|
.progress-bar-variant(@progress-bar-success-bg);
|
|
}
|
|
|
|
// Warning (orange)
|
|
.progress-bar-warning {
|
|
.progress-bar-variant(@progress-bar-warning-bg);
|
|
}
|
|
|
|
// Info (teal)
|
|
.progress-bar-info {
|
|
.progress-bar-variant(@progress-bar-info-bg);
|
|
}
|