ffe0614396a019d765f2fef67425c580e7717faa
[yaffs-website] / web / core / modules / layout_builder / tests / modules / no_transitions_css / css / css_fix.theme.css
1 /**
2  * Remove all transitions for testing.
3  */
4 * {
5   /* CSS transitions. */
6   -o-transition-property: none !important;
7   -moz-transition-property: none !important;
8   -ms-transition-property: none !important;
9   -webkit-transition-property: none !important;
10   transition-property: none !important;
11   /* CSS transforms. */
12   -o-transform: none !important;
13   -moz-transform: none !important;
14   -ms-transform: none !important;
15   -webkit-transform: none !important;
16   transform: none !important;
17   /* CSS animations. */
18   -webkit-animation: none !important;
19   -moz-animation: none !important;
20   -o-animation: none !important;
21   -ms-animation: none !important;
22   animation: none !important;
23 }