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
input code
div.1 { background: url("img/1.png") center no-repeat; } div.2 { background: url(img/2.png) ; }
produces an identical output code, whereas
div.1 { background: url("public/images/explore_all.png"); } div.2 { background: url(public/images/explore_places.png) ; }
produces an expected output of
div.1 { background: url('img/images.png') no-repeat 0 0; } div.2 { background: url('img/images.png') no-repeat -54px 0; }
IMO spritemapper should at least report "unsupported xxx" in cases such as this, if it cannot support it better.
The text was updated successfully, but these errors were encountered:
Are sprites not supported on compact form backgrounds ?
Sorry, something went wrong.
No branches or pull requests
input code
produces an identical output code, whereas
produces an expected output of
IMO spritemapper should at least report "unsupported xxx" in cases such as this, if it cannot support it better.
The text was updated successfully, but these errors were encountered: