From: Corbin Hesse Date: Wed, 16 Dec 2015 21:05:18 +0000 (-0600) Subject: Modify Button Background to Background Color X-Git-Tag: v6.1.0~45^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef6095fef0aae04c482d012f5f00997f05247585;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Modify Button Background to Background Color --- diff --git a/scss/components/_button.scss b/scss/components/_button.scss index 44bf8d449..71bbf4d32 100644 --- a/scss/components/_button.scss +++ b/scss/components/_button.scss @@ -113,11 +113,11 @@ $button-opacity-disabled: 0.25 !default; $color: $button-color; } - background: $background; + background-color: $background; color: $color; &:hover, &:focus { - background: $background-hover; + background-color: $background-hover; color: $color; } } @@ -126,7 +126,7 @@ $button-opacity-disabled: 0.25 !default; @mixin button-hollow { &, &:hover, &:focus { - background: transparent; + background-color: transparent; } }