From cb1916e498799c7799fd858d4696313146db2f02 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Thu, 15 Apr 2010 22:24:13 -0700 Subject: [PATCH] This works around an scss parser bug for now --- .../compass/stylesheets/compass/utilities/lists/_bullets.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss b/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss index 9cce152b..dbd81b26 100644 --- a/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss +++ b/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss @@ -18,5 +18,5 @@ margin-left: 0; li { padding-left: $padding; - background: image-url($bullet-icon) no-repeat ($padding - $width) / 2 ($line-height - $height) / 2; + background: image-url($bullet-icon) no-repeat 0 + ($padding - $width) / 2 ($line-height - $height) / 2; list-style-type: none; } }