Created
October 28, 2025 20:17
-
-
Save MMK21Hub/f5719cf41ef50c86d84822ecd9adae3e to your computer and use it in GitHub Desktop.
Filter for unresolved support messages on Slack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Resolved messages */ | |
| #message-list .c-virtual_list__item:has([alt=":white_tick:"]) { | |
| display: none; | |
| } | |
| /* Deleted messages */ | |
| #message-list .c-virtual_list__item:has(.c-message_kit__tombstone__text) { | |
| display: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment