From 56b23533351ca4656a4edf5d953b300f38b3ff8e Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 26 Apr 2010 09:57:31 -0700 Subject: [PATCH] Unquote the float argument for backwards compatibility. --- .../compass/stylesheets/compass/utilities/general/_float.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/compass/stylesheets/compass/utilities/general/_float.scss b/frameworks/compass/stylesheets/compass/utilities/general/_float.scss index f3666450..19a1a249 100644 --- a/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +++ b/frameworks/compass/stylesheets/compass/utilities/general/_float.scss @@ -14,4 +14,4 @@ // Available as alternate syntax with just +float @mixin float($side: left) { display: inline; - float: $side; } + float: unquote($side); }