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
It seems somehow, the filter we are using for customer card makes them blank in FireFox browser:
filter: url("data:image/svg+xml;utf8,<svgxmlns=\'http://www.w3.org/2000/svg\'><filterid=\'grayscale\'><feColorMatrixtype=\'matrix\'values=\'0.33330.33330.3333000.33330.33330.3333000.33330.33330.33330000010\'/></filter></svg>#grayscale")
If I disable this style, it can then be displayed without a problem.
The text was updated successfully, but these errors were encountered:
b5b1baf
Merge pull request #161 from balanced/bugfix-160-blank-customer-card-…
bb16f72
…in-ff Fix #160 balnk customer card in FireFox issue
This is still not working, it appears the YUI Compressor remove spaces in that data URI, which makes it a malformed data image
filter: url("data:image/svg+xml;utf8,<svgxmlns=\"http://www.w3.org/2000/svg\"><filterid=\"grayscale\"><feColorMatrixtype=\"matrix\"values=\"0.33330.33330.3333000.33330.33330.3333000.33330.33330.33330000010\"/></filter></svg>#grayscale");
As you can see all spaces between tag name and attribute are gone.
Sorry, something went wrong.
Found the root of this issue jbleuzen/node-cssmin#11
17ddbef
Merge pull request #163 from balanced/bugfix-160-blank-customer-card-…
c269608
…in-ff Fix #160, space in filter url is removed issue
No branches or pull requests
It seems somehow, the filter we are using for customer card makes them blank in FireFox browser:
If I disable this style, it can then be displayed without a problem.
The text was updated successfully, but these errors were encountered: