From: Chris Rebert Date: Fri, 25 Dec 2015 21:01:46 +0000 (-0700) Subject: Fix syntax of .text-hide's `font` property value X-Git-Tag: v4.0.0-alpha.3~459^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a05f19a3b9e02ed4996eb5e2c78077376481c7b;p=thirdparty%2Fbootstrap.git Fix syntax of .text-hide's `font` property value In SCSS, the quotes were included verbatim in the resulting CSS, which isn't valid syntax for the `font` property. Removing the quotes fixes the syntax error and does not cause any SCSS compiler error. [skip sauce] [skip validator] --- diff --git a/scss/mixins/_text-hide.scss b/scss/mixins/_text-hide.scss index daed5fb7af..52a38a9069 100644 --- a/scss/mixins/_text-hide.scss +++ b/scss/mixins/_text-hide.scss @@ -1,6 +1,6 @@ // CSS image replacement @mixin text-hide() { - font: "0/0" a; + font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent;