less/less.ruby

CSS3 image filters are confused as LESS functions

Opened this issue · 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%)";
}