Subject: | Problem with backgrounds |
Hi,
I noticed a problem with background. It adds an extra no-repeat:
perl -MText::Sass -E 'say Text::Sass->new->scss2css(".x-panel-body { background: white
url(/images/RegH_logo_RGB.gif) no-repeat; }");'
returns:
.x-panel-body {
background: white url(/images/RegH_logo_RGB.gif) no-repeat no-repeat;
}
(2 times no-repeat). Which sadly is incorrect css and is therefore ignored.
Hope you time to look into it. A workaround is just to use background-* instead