From: Jan Stevens Date: Thu, 20 Aug 2015 09:35:00 +0000 (+0200) Subject: Fixes the _image mixing by prefixing the parameters with $ X-Git-Tag: v4.0.0-alpha.2~411^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7b8f98c862594e80c6d3a43972aefc686a92b43;p=thirdparty%2Fbootstrap.git Fixes the _image mixing by prefixing the parameters with $ --- diff --git a/scss/mixins/_image.scss b/scss/mixins/_image.scss index bec9626f60..e5ae10a3c1 100644 --- a/scss/mixins/_image.scss +++ b/scss/mixins/_image.scss @@ -19,7 +19,7 @@ // Short retina mixin for setting background-image and -size. @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) { - background-image: url("#{file-1x}"); + background-image: url($file-1x); @media only screen and (-webkit-min-device-pixel-ratio: 2), @@ -27,7 +27,7 @@ only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { - background-image: url("#{file-2x}"); + background-image: url($file-2x); background-size: $width-1x $height-1x; } }