how to out put ../images.. for sprite in compass sass?
and does any one know where can i find documents of senieor toturial of compass sass sprite? such as sprite-url function which can not be found in official website.
--css
--sass
--test.scss
--images
--sprite-images
--icons
--a.png
--b.png
.test.scss codes:
-----------------------
$sprite: sprite-map("icons/*.png");
.hello{
background-image : sprite-url($sprite);
}
outputs
------------------------
.hello{
background-image : url('/images/icons-s2c837140f3.png');
}
<!-- but I want to output -->
.hello{
background-image : url('../images/icons-s2c837140f3.png');
}