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
References:
I'm a little confused why we need the style attribute if I can set all of its internal properties directly.
foo.3d: true # This is equal to this foo.style.3d: true
but! style overwrite all (!) styles if they were defined without style
style
foo: { opacity: 0.6 fill: orange stroke: "#53C0D8" stroke-width: 5 stroke-dash: 5 border-radius: 4 font-color: red shadow: true multiple: true 3d: true style.opacity: 0.5 }
It's almost hard to see, but there's only one style left (opacity: 0.5)
The text was updated successfully, but these errors were encountered:
it is not supposed to be equal. it'll be fixed such that they only work under style keyword
Sorry, something went wrong.
fixed in #714
No branches or pull requests
References:
I'm a little confused why we need the style attribute if I can set all of its internal properties directly.
but!
style
overwrite all (!) styles if they were defined withoutstyle
Expected
Actual
It's almost hard to see, but there's only one style left (opacity: 0.5)
The text was updated successfully, but these errors were encountered: