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.
This commit is contained in:
David Battersby 2023-10-09 22:34:07 +08:00 committed by GitHub
parent 53c9c9c1e6
commit 62c7a54f88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -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;
}