From 148d0d960bad8dcecb552b62ec4a94ea5ffd89cf Mon Sep 17 00:00:00 2001 From: M Fahru Date: Mon, 30 Sep 2024 07:02:28 -0700 Subject: [PATCH] Merge pull request #20662 from overleaf/mf-fix-bs5-nav-tab-li-hover [web] BS5 CMS - Fix tab nav hover effect (remove underline) GitOrigin-RevId: fdcb566b63afd567c1cf0ef95e72c66491137f30 --- .../frontend/stylesheets/bootstrap-5/components/tabs.scss | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/tabs.scss b/services/web/frontend/stylesheets/bootstrap-5/components/tabs.scss index c0a39f59d9..d0d6197fd8 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/components/tabs.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/components/tabs.scss @@ -50,6 +50,7 @@ &:hover { background-color: var(--neutral-10); + text-decoration: none; } &:focus-visible { @@ -63,10 +64,6 @@ border: 0 !important; border-bottom: 3px solid var(--green-50) !important; color: var(--neutral-90) !important; - - &:hover { - border-bottom: 3px solid var(--green-50) !important; - } } } }