From dde6e3a9b986af3ca652688f0f1d078161242625 Mon Sep 17 00:00:00 2001 From: T G V R S Santhosh Date: Wed, 21 Jun 2023 12:29:36 +0530 Subject: [PATCH] Addressed comments --- content-for/test-head-footer.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content-for/test-head-footer.html b/content-for/test-head-footer.html index 5f3f196..f39c199 100644 --- a/content-for/test-head-footer.html +++ b/content-for/test-head-footer.html @@ -30,11 +30,11 @@ } /* - * Setting duration to zero so that the elements will get transitioned/animated immediately - * so that the gradual transition/animation will not violate any of the WCAG guidelines + * Disabling animation and transition so that the elements are not evaluated + * while the transition/animation is in progress. */ .axe-running * { - transition-duration: 0s !important; - animation-duration: 0s !important; + animation: none !important; + transition: none !important; }