From: Jesse Doyle Date: Thu, 17 Aug 2017 22:27:06 +0000 (-0600) Subject: Fix SASS Deprecations X-Git-Tag: v6.4.4-rc1~21^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10550%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix SASS Deprecations * Use the `unquote` function as suggested to resolve deprecation warnings with SASS >= 3.4.20. * Fixes https://github.com/zurb/foundation-sites/issues/10534. SEE: https://github.com/sass/sass/issues/1778 --- diff --git a/scss/xy-grid/_gutters.scss b/scss/xy-grid/_gutters.scss index 3ab987ea1..e8efb714d 100644 --- a/scss/xy-grid/_gutters.scss +++ b/scss/xy-grid/_gutters.scss @@ -30,7 +30,7 @@ // Loop through each gutter position @each $value in $gutter-position { - #{$gutter-type}-#{$value}: #{$operator}$gutter; + #{$gutter-type}-#{$value}: unquote("#{$operator}#{$gutter}"); } } } @@ -39,7 +39,7 @@ // Loop through each gutter position @each $value in $gutter-position { - #{$gutter-type}-#{$value}: #{$operator}$gutter; + #{$gutter-type}-#{$value}: unquote("#{$operator}#{$gutter}"); } } }