less.ruby
less.ruby copied to clipboard
CSS3 image filters are confused as LESS functions
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%)";
}