From 62c7a54f8888d2e9aaf50be677c02bd895c9bfeb Mon Sep 17 00:00:00 2001 From: David Battersby Date: Mon, 9 Oct 2023 22:34:07 +0800 Subject: [PATCH] FIX: hide consolidated chat message notifications temporarily (#23846) Consolidated chat notifications went live for a short amount of time then reverted the commit due to UX concerns. The result of this is that there are a few users affected that will have notifications in a blank state. As a workaround this PR will hide those notifications until the feature is ready to merge again. --- .../assets/stylesheets/common/core-extensions.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/plugins/chat/assets/stylesheets/common/core-extensions.scss b/plugins/chat/assets/stylesheets/common/core-extensions.scss index e9f16af695c..a3b8d6b4c8d 100644 --- a/plugins/chat/assets/stylesheets/common/core-extensions.scss +++ b/plugins/chat/assets/stylesheets/common/core-extensions.scss @@ -10,3 +10,15 @@ display: none; } } + +// TODO (davidb): remove once consolidated chat notifications is complete +.user-stream .large-notifications .item { + &:has(.chat-message) { + display: none; + } +} + +// TODO (davidb): remove once consolidated chat notifications is complete +.user-menu .quick-access-panel .chat-message { + display: none; +}