From: James W. Lane III Date: Fri, 27 Jun 2014 19:56:26 +0000 (-0500) Subject: Fix undefined variable in _settings.scss X-Git-Tag: v5.3.1~12^2~3^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F5390%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix undefined variable in _settings.scss ON line 371 the $button-border-color is using a undefined variable $bg I changed it to $button-bg. --- diff --git a/scss/foundation/_settings.scss b/scss/foundation/_settings.scss index a9d7a20be..1c5d9c3e8 100644 --- a/scss/foundation/_settings.scss +++ b/scss/foundation/_settings.scss @@ -368,7 +368,7 @@ // $button-border-width: 0px; // $button-border-style: solid; // $button-bg: $primary-color; -// $button-border-color: scale-color($bg, $lightness: $button-function-factor); +// $button-border-color: scale-color($button-bg, $lightness: $button-function-factor); // We use this to set the default radius used throughout the core. // $button-radius: $global-radius;