2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Making use of prefers-reduced-motion media query (#25641)

* Making use of `prefers-reduced-motion` media query

As discussed in #25249 - if a user (Who is using Safari / iOS) requests
reduced motion in their system settings, we should avoid transitions.

* Ignoring prefers reduced motion for CSS Linting
* Updating copy clarifying the reduce motion functionality in accessibility.md
This commit is contained in:
Mike Rogers
2018-03-20 09:28:21 +00:00
committed by Patrick H. Lauke
parent c53825d902
commit 2306f62bf1
3 changed files with 11 additions and 0 deletions
+4
View File
@@ -6,4 +6,8 @@
transition: $transition;
}
}
@media screen and (prefers-reduced-motion: reduce) {
transition: none;
}
}