From: Eli Dupuis Date: Wed, 6 Mar 2013 20:09:29 +0000 (-0700) Subject: add bg color variable for progress bar X-Git-Tag: v4.0.5~21^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1759%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git add bg color variable for progress bar --- diff --git a/scss/foundation/components/_progress-bars.scss b/scss/foundation/components/_progress-bars.scss index ea0b95b11..ab6595b7a 100644 --- a/scss/foundation/components/_progress-bars.scss +++ b/scss/foundation/components/_progress-bars.scss @@ -4,6 +4,7 @@ // We use this to se the prog bar height $progress-bar-height: emCalc(25px) !default; +$progress-bar-color: transparent !default; // We use these to control the border styles $progress-bar-border-color: darken(#fff, 20%) !default; @@ -28,6 +29,7 @@ $progress-meter-alert-color: $alert-color !default; // We use this to set up the progress bar container @mixin progress-container { + background-color: $progress-bar-color; height: $progress-bar-height; border: $progress-bar-border-size $progress-bar-border-style $progress-bar-border-color; padding: $progress-bar-pad; diff --git a/templates/project/scss/_settings.scss b/templates/project/scss/_settings.scss index 0af0135ed..09bb002b5 100644 --- a/templates/project/scss/_settings.scss +++ b/templates/project/scss/_settings.scss @@ -722,6 +722,7 @@ // We use this to se the prog bar height // $progress-bar-height: emCalc(25px); +// $progress-bar-color: transparent; // We use these to control the border styles // $progress-bar-border-color: darken(#fff, 20%);