From: Chris Rebert Date: Mon, 21 Dec 2015 17:52:03 +0000 (-0700) Subject: Actually use $progress-bg instead of hardcoded color X-Git-Tag: v4.0.0-alpha.3~483^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=646580a9195246b42af3a52a54ae07c7a5092513;p=thirdparty%2Fbootstrap.git Actually use $progress-bg instead of hardcoded color Refs #18535 [skip sauce] --- diff --git a/scss/_progress.scss b/scss/_progress.scss index 9c633a525a..b18695f98b 100644 --- a/scss/_progress.scss +++ b/scss/_progress.scss @@ -20,7 +20,7 @@ } .progress[value] { // Set overall background - background-color: #eee; + background-color: $progress-bg; // Remove Firefox and Opera border border: 0; // Reset the default appearance @@ -34,7 +34,7 @@ border: 0; } .progress[value]::-webkit-progress-bar { - background-color: #eee; + background-color: $progress-bg; @include border-radius($border-radius); @include box-shadow(inset 0 .1rem .1rem rgba(0,0,0,.1)); } @@ -54,7 +54,7 @@ // // $-moz-document url-prefix() { // .progress[value] { -// background-color: #eee; +// background-color: $progress-bg; // .border-radius($border-radius); // .box-shadow(inset 0 .1rem .1rem rgba(0,0,0,.1)); // } @@ -78,7 +78,7 @@ // IE9 hacks to accompany custom markup. We don't need to scope this via media queries, but I feel better doing it anyway. @media screen and (min-width:0\0) { .progress { - background-color: #eee; + background-color: $progress-bg; @include border-radius($border-radius); @include box-shadow(inset 0 .1rem .1rem rgba(0,0,0,.1)); }