From b066d5cd126217a741c4ab94f14efbef3ce15bea Mon Sep 17 00:00:00 2001 From: Mark Eaton Date: Mon, 23 Feb 2026 11:19:10 -0500 Subject: [PATCH] fix dropdown fade animation by specifying transition property The .fade rule only set transition-duration without specifying transition-property, so opacity changes were instant. Also fixes a typo where the webkit duration was 5s instead of 0.5s. Co-Authored-By: Claude Opus 4.6 --- groups/home/bootstrap5/home1.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/groups/home/bootstrap5/home1.css b/groups/home/bootstrap5/home1.css index 6f76ab0..2bad966 100644 --- a/groups/home/bootstrap5/home1.css +++ b/groups/home/bootstrap5/home1.css @@ -97,8 +97,8 @@ opacity: 1; } .fade { - -webkit-transition-duration: 5s; /* Safari */ - transition-duration: 0.5s; + transition: opacity 0.5s ease; + -webkit-transition: opacity 0.5s ease; /* Safari */ } /* Show dropdown on hover AND keyboard focus (WCAG 2.1.1) */ .dropdown:hover .dropdown-menu,