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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@chrisrebert.com>2016-01-10 01:59:08 +0300
committerChris Rebert <code@chrisrebert.com>2016-01-10 01:59:08 +0300
commit46c9f4b14381ccdc0a6feb7b525ddc71b89ad311 (patch)
tree6fc754b6b618f35ba047705aba4f1d24d5f23770 /scss/_progress.scss
parentf646ed79201d2eae403c1438cd9d0ea03ecff5e0 (diff)
Add $progress-box-shadow variable
[skip sauce] [skip validator]
Diffstat (limited to 'scss/_progress.scss')
-rw-r--r--scss/_progress.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_progress.scss b/scss/_progress.scss
index 2670606e0c..d0dc2023d0 100644
--- a/scss/_progress.scss
+++ b/scss/_progress.scss
@@ -59,13 +59,13 @@
.progress[value]::-webkit-progress-bar {
background-color: $progress-bg;
@include border-radius($border-radius);
- @include box-shadow(inset 0 .1rem .1rem rgba(0,0,0,.1));
+ @include box-shadow($progress-box-shadow);
}
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);
- @include box-shadow(inset 0 .1rem .1rem rgba(0,0,0,.1));
+ @include box-shadow($progress-box-shadow);
}
// IE9 hacks to accompany custom markup. We don't need to scope this via media queries, but I feel better doing it anyway.
@@ -73,7 +73,7 @@ base::-moz-progress-bar, // Absurd-but-syntactically-valid selector to make thes
.progress {
background-color: $progress-bg;
@include border-radius($border-radius);
- @include box-shadow(inset 0 .1rem .1rem rgba(0,0,0,.1));
+ @include box-shadow($progress-box-shadow);
}
.progress-bar {
display: inline-block;