Skip to content

Commit d9bdcc3

Browse files
committed
Merge branch 'shpuld-master'
2 parents 0ca8f2d + a9105b2 commit d9bdcc3

3 files changed

Lines changed: 16 additions & 13 deletions

File tree

animate.css

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
@charset "UTF-8";
22

33
/*!
4-
* animate.css -http://daneden.me/animate
4+
* animate.css -https://daneden.github.io/animate.css/
55
* Version - 3.7.0
66
* Licensed under the MIT license - http://opensource.org/licenses/MIT
77
*
8-
* Copyright (c) 2018 Daniel Eden
8+
* Copyright (c) 2019 Daniel Eden
99
*/
1010

1111
@-webkit-keyframes bounce {
@@ -3613,11 +3613,13 @@
36133613
animation-duration: 3s;
36143614
}
36153615

3616-
@media (print), (prefers-reduced-motion) {
3616+
@media (print), (prefers-reduced-motion: reduce) {
36173617
.animated {
3618-
-webkit-animation: unset !important;
3619-
animation: unset !important;
3620-
-webkit-transition: none !important;
3621-
transition: none !important;
3618+
-webkit-animation-duration: 1ms !important;
3619+
animation-duration: 1ms !important;
3620+
-webkit-transition-duration: 1ms !important;
3621+
transition-duration: 1ms !important;
3622+
-webkit-animation-iteration-count: 1 !important;
3623+
animation-iteration-count: 1 !important;
36223624
}
36233625
}

animate.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/_base.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@
4343
animation-duration: 3s;
4444
}
4545

46-
@media (print), (prefers-reduced-motion) {
46+
@media (print), (prefers-reduced-motion: reduce) {
4747
.animated {
48-
animation: unset !important;
49-
transition: none !important;
48+
animation-duration: 1ms !important;
49+
transition-duration: 1ms !important;
50+
animation-iteration-count: 1 !important;
5051
}
5152
}

0 commit comments

Comments
 (0)