I'm trying to use -webkit-linear-gradient inside of CleverCSS. However, when I try to "compile" it, I get an error of TypeError: not enough arguments for format string

Here is the CleverCSS

button:
    background-image: -webkit-linear-gradient(top, #fff, #e6e6e6)

If I throw that into clevercss.convert(), that's the error I get. I see that parenthesis have special meaning in CleverCSS, but I'm unsure if this is a result of that or not. Is there a way to have CleverCSS process this?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Use the backtick operator for verbatim CSS:

background-image: `-webkit-linear-gradient(top, #fff, #e6e6e6)`

The “official” PyPI version of CleverCSS isn't maintained and may not have that feature; get an updated version from Github.

link|improve this answer
That's it! I was using PyPi version as well. The github version worked. – intargc Nov 9 '11 at 16:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.