Title: [237687] trunk/Websites/webkit.org
Revision
237687
Author
[email protected]
Date
2018-11-01 11:02:56 -0700 (Thu, 01 Nov 2018)

Log Message

Prevent homepage animation for users that prefer reduced motion
https://bugs.webkit.org/show_bug.cgi?id=188211

Reviewed by Timothy Hatcher.

* wp-content/themes/webkit/front-header.php:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (237686 => 237687)


--- trunk/Websites/webkit.org/ChangeLog	2018-11-01 17:35:32 UTC (rev 237686)
+++ trunk/Websites/webkit.org/ChangeLog	2018-11-01 18:02:56 UTC (rev 237687)
@@ -1,3 +1,12 @@
+2018-11-01  Jon Davis  <[email protected]>
+
+        Prevent homepage animation for users that prefer reduced motion
+        https://bugs.webkit.org/show_bug.cgi?id=188211
+
+        Reviewed by Timothy Hatcher.
+
+        * wp-content/themes/webkit/front-header.php:
+
 2018-10-25  Jon Davis  <[email protected]>
 
         Added support for "deprecated" feature status

Modified: trunk/Websites/webkit.org/wp-content/themes/webkit/front-header.php (237686 => 237687)


--- trunk/Websites/webkit.org/wp-content/themes/webkit/front-header.php	2018-11-01 17:35:32 UTC (rev 237686)
+++ trunk/Websites/webkit.org/wp-content/themes/webkit/front-header.php	2018-11-01 18:02:56 UTC (rev 237687)
@@ -152,6 +152,13 @@
             font-size: 2.5rem;
             letter-spacing: -0.016rem;
         }
+    }    
+    
+    @media (prefers-reduced-motion) {
+        #compass {
+            animation: none;
+            transform: translateY(-400px);
+        }
     }
     </style>
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to