From 3a74868661a5d3187b9b1c95c068d53d62724c76 Mon Sep 17 00:00:00 2001 From: Eli Dupuis Date: Wed, 6 Mar 2013 13:09:29 -0700 Subject: [PATCH] add bg color variable for progress bar --- scss/foundation/components/_progress-bars.scss | 2 ++ templates/project/scss/_settings.scss | 1 + 2 files changed, 3 insertions(+) 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%); -- 2.47.3