less.ruby icon indicating copy to clipboard operation
less.ruby copied to clipboard

CSS3 image filters are confused as LESS functions

Open mindfullsilence opened this issue 13 years ago • 0 comments

img {
    -webkit-filter: saturate(10%);
}

This is confuzed as the LESS filter function for saturating colors and throws an error. String interpolation does work, however:

img {
    -webkit-filter: ~"saturate(10%)";
}

mindfullsilence avatar Oct 24 '12 16:10 mindfullsilence