Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / layout_builder / tests / modules / no_transitions_css / css / css_fix.theme.css
diff --git a/web/core/modules/layout_builder/tests/modules/no_transitions_css/css/css_fix.theme.css b/web/core/modules/layout_builder/tests/modules/no_transitions_css/css/css_fix.theme.css
new file mode 100644 (file)
index 0000000..ffe0614
--- /dev/null
@@ -0,0 +1,23 @@
+/**
+ * Remove all transitions for testing.
+ */
+* {
+  /* CSS transitions. */
+  -o-transition-property: none !important;
+  -moz-transition-property: none !important;
+  -ms-transition-property: none !important;
+  -webkit-transition-property: none !important;
+  transition-property: none !important;
+  /* CSS transforms. */
+  -o-transform: none !important;
+  -moz-transform: none !important;
+  -ms-transform: none !important;
+  -webkit-transform: none !important;
+  transform: none !important;
+  /* CSS animations. */
+  -webkit-animation: none !important;
+  -moz-animation: none !important;
+  -o-animation: none !important;
+  -ms-animation: none !important;
+  animation: none !important;
+}