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:
parent
53c9c9c1e6
commit
62c7a54f88
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue