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
%hoverbrighter { &:hover, &:focus { opacity: .8; @supports (filter: brightness(120%)) { filter: brightness(120%); } } } .productportal-link { @extend %hoverbrighter; }
--- can compile to ---
.productportal-link:hover, .productportal-link:focus { opacity: .8; } @supports (filter: brightness(120%)) { %hoverbrighter:hover, .productportal-link:hover, %hoverbrighter:focus, .productportal-link:focus { filter: brightness(120%); } }
I don't think the %hoverbrighter should be there in the compiled result.
%hoverbrighter
On SassMeister the result is as I would expect http://www.sassmeister.com/gist/cd5494dd2f57ccf90b48a87c862c8f6f.
The text was updated successfully, but these errors were encountered:
This seems to be fixed on latest master.
Sorry, something went wrong.
mgreter
No branches or pull requests
--- can compile to ---
I don't think the
%hoverbrighter
should be there in the compiled result.On SassMeister the result is as I would expect http://www.sassmeister.com/gist/cd5494dd2f57ccf90b48a87c862c8f6f.
The text was updated successfully, but these errors were encountered: