Hi
Compass +pretty-bullets mixin has the background line
li { background: image-url($bullet-icon) no-repeat ($padding -
$width)/2 ($line-height - $height) / 2; }
Sass converts this incorrectly as
background: url('/images/my-nify-image?1261620334') no-repeat(-20px)/2
-2px; [note: no-repeat(-20px)/2]
I fixed this temporarily by forcing variable interpolation.
li { background: image-url($bullet-icon) #{"no-repeat"} ($padding -
$width)/2 ($line-height - $height) / 2; }
sass -v
Haml/Sass 3.0.0.beta.3 (Classy Cassidy)
compass -v
Compass 0.10.0 [6faed20]
--
You received this message because you are subscribed to the Google Groups
"Haml" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/haml?hl=en.