mirror of https://github.com/twbs/bootstrap.git
Check prefers-reduced-motion variable before adding reduced motion media query for animated progress bars (#28530)
This commit is contained in:
parent
1f7f876810
commit
b4a2beb3c2
|
@ -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;
|
||||||
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
@if $enable-prefers-reduced-motion-media-query {
|
||||||
animation: none;
|
@media (prefers-reduced-motion: reduce) {
|
||||||
|
animation: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue