From afe321d9eaed8b3e417a909543a90c7a0b04e449 Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Thu, 7 May 2026 19:33:49 +0200 Subject: [PATCH] fix: tac indicator not hidden when hovered (#33423) --- apps/web/res/css/structures/_ThreadsActivityCentre.pcss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/web/res/css/structures/_ThreadsActivityCentre.pcss b/apps/web/res/css/structures/_ThreadsActivityCentre.pcss index a6e4627dd0..ecd5207df7 100644 --- a/apps/web/res/css/structures/_ThreadsActivityCentre.pcss +++ b/apps/web/res/css/structures/_ThreadsActivityCentre.pcss @@ -86,6 +86,12 @@ /* Arbitrary size, keep the TAC as the wanted width */ width: 202px; } + + /* Hide the notification badge on hover — compound's `nav-hint ~ *` rule would normally + * do this, but the app-web CSS layer overrides compound-web regardless of specificity. */ + &:hover .mx_NotificationBadge { + display: none; + } } }