]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix syntax of .text-hide's `font` property value 18677/head
authorChris Rebert <code@chrisrebert.com>
Fri, 25 Dec 2015 21:01:46 +0000 (14:01 -0700)
committerChris Rebert <code@chrisrebert.com>
Fri, 25 Dec 2015 21:06:39 +0000 (14:06 -0700)
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]

scss/mixins/_text-hide.scss

index daed5fb7af10c663992c9632ded871f07cec497e..52a38a906989ed0e4e7b19933c36a73209956056 100644 (file)
@@ -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;