From 2e8752b26f08b888300fad5a0e357c860ab594b2 Mon Sep 17 00:00:00 2001 From: Roland Warmerdam Date: Mon, 1 Jul 2013 10:51:08 +1200 Subject: [PATCH] Prevent the font shorthand from getting compiled as division --- less/mixins.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/mixins.less b/less/mixins.less index 24ca797ffd..48c0d011a9 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -71,7 +71,7 @@ // CSS image replacement // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 .hide-text() { - font: 0/0 a; + font: ~"0/0" a; color: transparent; text-shadow: none; background-color: transparent;