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
We're handling psuedo classes already (.thing:hover), but not psuedo elements (.thing:before).
.thing:hover
.thing:before
Probably something like this:
.cow { padding: 10px; } .cow:before { content: ''; background: #F00; }
.rp__padding__--COLON10px { padding: 10px } .rp__content__--COLON__--SINGLEQUOTE__--SINGLEQUOTE___--BEFORE:before { content: '' } .rp__background__--COLON__--OCTOTHORPF00___--BEFORE:before { background: #F00 }
.rp__a { padding: 10px } .rp__b:before { content: '' } .rp__c:before { background: #F00 }
Should support all pseudo elements
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We're handling psuedo classes already (
.thing:hover
), but not psuedo elements (.thing:before
).Probably something like this:
Should support all pseudo elements
The text was updated successfully, but these errors were encountered: