2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

Check prefers-reduced-motion variable before adding reduced motion media query for animated progress bars (#28530)

This commit is contained in:
Patrick H. Lauke
2019-03-21 13:59:02 +00:00
committed by XhmikosR
parent 60f31b32f8
commit 3ab0441667
+2
View File
@@ -36,8 +36,10 @@
.progress-bar-animated { .progress-bar-animated {
animation: progress-bar-stripes $progress-bar-animation-timing; animation: progress-bar-stripes $progress-bar-animation-timing;
@if $enable-prefers-reduced-motion-media-query {
@media (prefers-reduced-motion: reduce) { @media (prefers-reduced-motion: reduce) {
animation: none; animation: none;
} }
} }
} }
}