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
Describe the bug When wrapping :hover style in the media query @media (hover: hover) in the component stylesheet, the plugin doesn't apply it.
:hover
@media (hover: hover)
To Reproduce Steps to reproduce the behavior:
.some-component { color: blue; @media (hover: hover) { &:hover { color: red; } } }
Expected behavior A clear and concise description of what you expected to happen. I would expect the defined hover style to be applied.
Screenshots —
Desktop (please complete the following information):
Additional context The plugin works as expected when I remove the media query, but introduces hover bugs for users of touch devices instead.
The text was updated successfully, but these errors were encountered:
Hi @Znegl ,
which version of Postcss Pseudo Classes are you using?
I added a test in my forked version and it seems to be working.
Could you test it with this version: npm install "https://github.com/philippone/postcss-pseudo-classes#master" --save-dev
npm install "https://github.com/philippone/postcss-pseudo-classes#master" --save-dev
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When wrapping
:hover
style in the media query@media (hover: hover)
in the component stylesheet, the plugin doesn't apply it.To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
I would expect the defined hover style to be applied.
Screenshots
—
Desktop (please complete the following information):
Additional context
The plugin works as expected when I remove the media query, but introduces hover bugs for users of touch devices instead.
The text was updated successfully, but these errors were encountered: