Accessibility: Login and Registration: Respect the prefers-reduced-motion
media query for "shake" CSS animation on login failure.
This shake should not occur when the user has opted to reduce motion, for example by selecting the "Reduce motion" option in macOS' preferences or unselecting "Show animations in Windows" in Windows' preferences. Follow-up to [47226]. Props eddystile, johnbillion, sabernhardt, afercia, audrasjb. Fixes #49723. git-svn-id: https://develop.svn.wordpress.org/trunk@47813 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c85005dec1
commit
2a81a84e12
@ -157,6 +157,13 @@ p {
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.login form.shake {
|
||||
animation: none;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.login-action-confirm_admin_email #login {
|
||||
width: 60vw;
|
||||
max-width: 650px;
|
||||
|
Loading…
Reference in New Issue
Block a user