We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
I'm trying to use ignoreValue to suppress a parsing error:
ignoreValue
Can't parse value "alpha( opacity: 0 )"
The CSS property looks like this:
.class { filter: alpha( opacity: 0 ); }
I've tried combinations like
'ignoreValue': 'alpha' 'ignoreValue': 'alpha.*' 'ignoreValue': 'alpha\\(.*\\)'
to ignore the value, but can't seem to get the syntax right. Any advice on the correct syntax to ignore the filter: alpha( opacity: 0 ); property?
filter: alpha( opacity: 0 );
Thanks – Andreas
The text was updated successfully, but these errors were encountered:
Another similar one is
.class { filter: progid:dximagetransform.microsoft.gradient( startColorstr='#e80008', endColorstr='#a6002c', GradientType=0 ); }
It seems to be the colons in the properties that cause trouble. 🤔
Sorry, something went wrong.
Looks like ignoreValue applies for matching errors only, not for parse errors. That's a bug, going to fix it.
d80f770
Thanks for the fix, works perfectly! 👍
No branches or pull requests
Hi!
I'm trying to use
ignoreValue
to suppress a parsing error:Can't parse value "alpha( opacity: 0 )"
The CSS property looks like this:
I've tried combinations like
to ignore the value, but can't seem to get the syntax right. Any advice on the correct syntax to ignore the
filter: alpha( opacity: 0 );
property?Thanks
– Andreas
The text was updated successfully, but these errors were encountered: