aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-12-25 14:01:46 -0700
committerChris Rebert <[email protected]>2015-12-25 14:06:39 -0700
commit4a05f19a3b9e02ed4996eb5e2c78077376481c7b (patch)
tree360fe54b7d8a21ccc1bb00405600f9dd00e13ffb
parent4258fb7992666bbe2e1adfb04c332b4b3bc86f2f (diff)
downloadbootstrap-4a05f19a3b9e02ed4996eb5e2c78077376481c7b.tar.xz
bootstrap-4a05f19a3b9e02ed4996eb5e2c78077376481c7b.zip
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]
-rw-r--r--scss/mixins/_text-hide.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/mixins/_text-hide.scss b/scss/mixins/_text-hide.scss
index daed5fb7a..52a38a906 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;