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
Current version supports only Descendant combinator(.sel1 .sel2). Child combinator(.sel1 > .sel2) should be also supported.
(.sel1 .sel2)
(.sel1 > .sel2)
Input:
.a { --color: red; } .a > .b { color: var(--color); }
Output:
.a > .b { color: undefined; }
Expectation:
.a > .b { color: red; }
The text was updated successfully, but these errors were encountered:
aa65cda
Thank you for another great bug report @bangseongbeom!
I have added full support for the child combinator and direct-descendants.
I also added three tests to ensure we do not regress.
Sorry, something went wrong.
No branches or pull requests
Current version supports only Descendant combinator
(.sel1 .sel2)
.Child combinator
(.sel1 > .sel2)
should be also supported.Input:
Output:
Expectation:
The text was updated successfully, but these errors were encountered: