Reputation: 2132
Any chance to use this in stylus:
-webkit-filter: invert();
whitout
@css{
.something {
-webkit-filter: invert();
}
}
Thnx
Upvotes: 2
Views: 1168
Reputation: 39223
The issue seems to be the built-in function invert(color)
. The only solution I can think of (bar renaming the bif invert
) is this:
.foo
-webkit-filter unquote("invert()")
Upvotes: 4