From: Ryan Mott Date: Wed, 4 Nov 2015 17:55:05 +0000 (-0600) Subject: error input focus background fix X-Git-Tag: v6.0.0~11^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F6981%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git error input focus background fix Similar to pull request #6943, this is another instance of `background` that should probably be `background-color` --- diff --git a/scss/foundation/components/_forms.scss b/scss/foundation/components/_forms.scss index 018cfd699..bbe1e6a5b 100644 --- a/scss/foundation/components/_forms.scss +++ b/scss/foundation/components/_forms.scss @@ -293,7 +293,7 @@ $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%) !default; // Go back to normal on focus &:focus { - background: $input-focus-bg-color; + background-color: $input-focus-bg-color; border-color: $input-focus-border-color; } }