-
-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
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
Zoom causes nodes to blur when focus #249
Comments
alexisrolland
changed the title
Zoom causes nodes to Blur when focus
Zoom causes nodes to blur when focus
Jan 24, 2023
Thank you. Your comment put me on the right track. I did not change the box shadow but removing the .node {
filter: none !important; /* This removes the bug where nodes get blurred */
} |
I can also reproduce this issue on v2 and workaround it the same way : .baklava-node {
filter: none !important;
} But please reopen this issue so that the maintainer fixes it properly at some point. |
Fixed in v2.0.2-beta.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there,
I think this issue is related to this other issue which is closed: #178
I am using version
1.9.3
and I somehow still have a blur issue.I have a simple custom node with one text area option (note this text area is an Ant Design component). It looks good in general, but when zooming in/out and then clicking on the text area to type text (focus), the whole node gets blurred. When clicking outside the text area, then it gets back to normal. This does not happen if I don't zoom in/out.
The text was updated successfully, but these errors were encountered: