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
transform: scale
I have just noticed a weird bug I could replicate on JSFiddle.
I use a custom design for checkboxes, and my V icon is being animated from transform: scale(0) to transform: scale(1) on click. Nothing too crazy.
transform: scale(0)
transform: scale(1)
The problem starts when I place a checkbox within another element with a transform property. I use iziModal library in my example to demonstrate it.
transform
Open the results page on full screen and try following these steps in order to see the exact issue:
#modal-content
-webkit-backface-visibility: hidden;
Notes:
input[type=checkbox]
body
direction: rtl;
also posted on StackOverflow
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have just noticed a weird bug I could replicate on JSFiddle.
I use a custom design for checkboxes, and my V icon is being animated from
transform: scale(0)
totransform: scale(1)
on click. Nothing too crazy.The problem starts when I place a checkbox within another element with
a
transform
property. I use iziModal library in my example to demonstrate it.Open the results page on full screen and try following these steps in order to see the exact issue:
#modal-content
really high.-webkit-backface-visibility: hidden;
with the second radio button group.Notes:
-webkit-backface-visibility: hidden;
on other elements thaninput[type=checkbox]
doesn't seem to change anything.body
isdirection: rtl;
.also posted on StackOverflow
The text was updated successfully, but these errors were encountered: