Subject: | Bug report for Text::Sass |
Date: | Thu, 19 Jan 2012 18:25:16 +0200 |
To: | bug-Text-Sass [...] rt.cpan.org |
From: | Andrei Arsenin <dread.deimos [...] gmail.com> |
Hello! I've found a little bug in your module!
Module version: v0.93
Perl version: v5.12.4
OS: Linux Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 i686 i386 GNU/Linux
Following SCSS code:
div.button {
background: url(../img/button.gif) left top;
}
Compiles to this CSS:
div.button {
background: url(../img/button.gif) left top left top;
}
Which isn't valid. But when I do like this:
div.button {
background: left top url(../img/button.gif);
}
It correctly results to same CSS.