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
This is useful in sheets that use CSS3, say for example this:
div { background: -moz-linear-gradient(x); background: -webkit-linear-gradient(x); background: linear-gradient(x); }
Gets you this styles structure:
styles
{ '0': 'background', length: 1, parentRule: { parentRule: null, parentStyleSheet: { parentStyleSheet: null, cssRules: [Object] }, selectorText: 'div', style: [Circular], __starts: 0, __ends: 122 }, _importants: { background: '' }, __starts: 4, background: 'linear-gradient(x)' }
...which is less than ideal. Notice that the length is 1 and that the only background it knows about is the last one.
length
1
background
The text was updated successfully, but these errors were encountered:
Oops, dupe of #16. Sorry.
Sorry, something went wrong.
No branches or pull requests
This is useful in sheets that use CSS3, say for example this:
Gets you this
styles
structure:...which is less than ideal. Notice that the
length
is1
and that the onlybackground
it knows about is the last one.The text was updated successfully, but these errors were encountered: