2014-07-09 04:39:34 -04:00
|
|
|
//
|
|
|
|
// Progress animations
|
|
|
|
//
|
2012-01-07 18:52:57 -05:00
|
|
|
|
2011-11-26 13:41:17 -05:00
|
|
|
@keyframes progress-bar-stripes {
|
2016-02-06 15:28:18 -05:00
|
|
|
from { background-position: $spacer-y 0; }
|
|
|
|
to { background-position: 0 0; }
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-09 04:39:34 -04:00
|
|
|
//
|
|
|
|
// Basic progress bar
|
|
|
|
//
|
2012-01-07 18:52:57 -05:00
|
|
|
|
2011-11-26 13:41:17 -05:00
|
|
|
.progress {
|
2014-07-09 04:39:34 -04:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2015-04-29 15:00:11 -04:00
|
|
|
height: $spacer-y; // todo: make a new var for this
|
|
|
|
margin-bottom: $spacer-y;
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
|
|
|
.progress[value] {
|
2015-12-10 17:29:54 -05:00
|
|
|
// Set overall background
|
2015-12-21 12:52:03 -05:00
|
|
|
background-color: $progress-bg;
|
2014-12-11 15:05:29 -05:00
|
|
|
// Remove Firefox and Opera border
|
|
|
|
border: 0;
|
|
|
|
// Reset the default appearance
|
|
|
|
appearance: none;
|
2015-12-10 17:29:54 -05:00
|
|
|
// Set overall border radius
|
|
|
|
@include border-radius($border-radius);
|
|
|
|
}
|
2015-12-24 00:35:45 -05:00
|
|
|
|
|
|
|
// Filled-in portion of the bar
|
2015-12-10 17:29:54 -05:00
|
|
|
.progress[value]::-ms-fill {
|
2015-12-21 12:46:33 -05:00
|
|
|
background-color: $progress-bar-color;
|
2015-12-10 17:29:54 -05:00
|
|
|
// Remove right-hand border of value bar from IE10+/Edge
|
|
|
|
border: 0;
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
2015-12-24 00:45:04 -05:00
|
|
|
.progress[value]::-moz-progress-bar {
|
|
|
|
background-color: $progress-bar-color;
|
2016-01-11 15:29:50 -05:00
|
|
|
@include border-left-radius($border-radius);
|
2015-12-24 00:45:04 -05:00
|
|
|
}
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress[value]::-webkit-progress-value {
|
2015-12-21 12:46:33 -05:00
|
|
|
background-color: $progress-bar-color;
|
2016-01-11 15:29:50 -05:00
|
|
|
@include border-left-radius($border-radius);
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
2015-12-24 00:45:04 -05:00
|
|
|
// Tweaks for full progress bar
|
|
|
|
.progress[value="100"]::-moz-progress-bar {
|
2016-01-11 15:29:50 -05:00
|
|
|
@include border-right-radius($border-radius);
|
2015-12-24 00:45:04 -05:00
|
|
|
}
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress[value="100"]::-webkit-progress-value {
|
2016-01-11 15:29:50 -05:00
|
|
|
@include border-right-radius($border-radius);
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
|
|
|
|
2015-12-24 00:35:45 -05:00
|
|
|
// Unfilled portion of the bar
|
|
|
|
.progress[value]::-webkit-progress-bar {
|
|
|
|
background-color: $progress-bg;
|
|
|
|
@include border-radius($border-radius);
|
2016-01-09 17:59:08 -05:00
|
|
|
@include box-shadow($progress-box-shadow);
|
2015-12-24 00:35:45 -05:00
|
|
|
}
|
2015-12-24 00:45:04 -05:00
|
|
|
base::-moz-progress-bar, // Absurd-but-syntactically-valid selector to make these styles Firefox-only
|
|
|
|
.progress[value] {
|
|
|
|
background-color: $progress-bg;
|
|
|
|
@include border-radius($border-radius);
|
2016-01-09 17:59:08 -05:00
|
|
|
@include box-shadow($progress-box-shadow);
|
2015-12-24 00:45:04 -05:00
|
|
|
}
|
2014-10-27 01:31:59 -04:00
|
|
|
|
2014-07-09 04:39:34 -04:00
|
|
|
// IE9 hacks to accompany custom markup. We don't need to scope this via media queries, but I feel better doing it anyway.
|
2015-05-15 15:17:09 -04:00
|
|
|
@media screen and (min-width:0\0) {
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress {
|
2015-12-21 12:52:03 -05:00
|
|
|
background-color: $progress-bg;
|
2015-06-22 21:53:04 -04:00
|
|
|
@include border-radius($border-radius);
|
2016-01-09 17:59:08 -05:00
|
|
|
@include box-shadow($progress-box-shadow);
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
|
|
|
.progress-bar {
|
|
|
|
display: inline-block;
|
2015-04-29 15:00:11 -04:00
|
|
|
height: $spacer-y;
|
2014-07-09 04:39:34 -04:00
|
|
|
text-indent: -999rem; // Simulate hiding of value as in native `<progress>`
|
2015-12-21 12:46:33 -05:00
|
|
|
background-color: $progress-bar-color;
|
2016-01-11 15:29:50 -05:00
|
|
|
@include border-left-radius($border-radius);
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
|
|
|
.progress[width="100%"] {
|
2016-01-11 15:29:50 -05:00
|
|
|
@include border-right-radius($border-radius);
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-19 01:35:05 -04:00
|
|
|
//
|
2014-07-09 04:39:34 -04:00
|
|
|
// Striped
|
|
|
|
//
|
|
|
|
|
|
|
|
.progress-striped[value]::-webkit-progress-value {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include gradient-striped();
|
2015-04-29 15:00:11 -04:00
|
|
|
background-size: $spacer-y $spacer-y;
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
|
|
|
.progress-striped[value]::-moz-progress-bar {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include gradient-striped();
|
2015-04-29 15:00:11 -04:00
|
|
|
background-size: $spacer-y $spacer-y;
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
2015-12-10 17:29:54 -05:00
|
|
|
.progress-striped[value]::-ms-fill {
|
|
|
|
@include gradient-striped();
|
|
|
|
background-size: $spacer-y $spacer-y;
|
|
|
|
}
|
2015-10-31 17:37:13 -04:00
|
|
|
// IE9
|
2015-05-15 15:17:09 -04:00
|
|
|
@media screen and (min-width:0\0) {
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress-bar-striped {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include gradient-striped();
|
2015-04-29 15:00:11 -04:00
|
|
|
background-size: $spacer-y $spacer-y;
|
2014-07-09 04:39:34 -04:00
|
|
|
}
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
|
|
|
|
2014-07-09 04:39:34 -04:00
|
|
|
|
|
|
|
//
|
|
|
|
// Animated
|
2014-06-19 01:35:05 -04:00
|
|
|
//
|
2014-07-09 04:39:34 -04:00
|
|
|
|
|
|
|
.progress-animated[value]::-webkit-progress-value {
|
2014-07-08 05:04:48 -04:00
|
|
|
animation: progress-bar-stripes 2s linear infinite;
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress-animated[value]::-moz-progress-bar {
|
|
|
|
animation: progress-bar-stripes 2s linear infinite;
|
|
|
|
}
|
2015-10-31 17:37:13 -04:00
|
|
|
// IE9
|
2015-05-15 15:17:09 -04:00
|
|
|
@media screen and (min-width:0\0) {
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress-animated .progress-bar-striped {
|
|
|
|
animation: progress-bar-stripes 2s linear infinite;
|
2014-03-04 19:55:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-07 18:52:57 -05:00
|
|
|
|
2014-07-09 04:39:34 -04:00
|
|
|
//
|
2013-02-01 19:21:38 -05:00
|
|
|
// Variations
|
2014-07-09 04:39:34 -04:00
|
|
|
//
|
2012-01-07 18:52:57 -05:00
|
|
|
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress-success {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include progress-variant($progress-bar-success-bg);
|
2012-01-07 18:52:57 -05:00
|
|
|
}
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress-info {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include progress-variant($progress-bar-info-bg);
|
2013-08-15 14:56:07 -04:00
|
|
|
}
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress-warning {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include progress-variant($progress-bar-warning-bg);
|
2012-02-24 05:23:04 -05:00
|
|
|
}
|
2014-07-09 04:39:34 -04:00
|
|
|
.progress-danger {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include progress-variant($progress-bar-danger-bg);
|
2012-02-24 05:23:04 -05:00
|
|
|
}
|