Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/_progress.scss')
-rw-r--r--assets/stylesheets/bootstrap/_progress.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/assets/stylesheets/bootstrap/_progress.scss b/assets/stylesheets/bootstrap/_progress.scss
index 02e4c3b..f7491a6 100644
--- a/assets/stylesheets/bootstrap/_progress.scss
+++ b/assets/stylesheets/bootstrap/_progress.scss
@@ -1,10 +1,8 @@
-// Progress animations
@keyframes progress-bar-stripes {
from { background-position: $progress-height 0; }
to { background-position: 0 0; }
}
-// Basic progress bar
.progress {
display: flex;
overflow: hidden; // force rounded corners by cropping it
@@ -13,20 +11,22 @@
text-align: center;
background-color: $progress-bg;
@include border-radius($progress-border-radius);
+ @include box-shadow($progress-box-shadow);
}
+
.progress-bar {
height: $progress-height;
+ line-height: $progress-height;
color: $progress-bar-color;
background-color: $progress-bar-bg;
+ @include transition($progress-bar-transition);
}
-// Striped
.progress-bar-striped {
@include gradient-striped();
background-size: $progress-height $progress-height;
}
-// Animated
.progress-bar-animated {
animation: progress-bar-stripes $progress-bar-animation-timing;
}