Last active
August 17, 2021 01:52
-
-
Save flleeppyy/d75590457f0aa34da52ab11656633669 to your computer and use it in GitHub Desktop.
Discord - Remove status indicators
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
| /*Remove custom statuses*/ | |
| .activity-525YDR, | |
| .activity-2Gy-9S, | |
| .customStatusActivity-nmH3DF, | |
| .customStatus-oN4ZZY { | |
| display: none | |
| } |
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
| /*Remove status indicators*/ | |
| [class*="pointerEvents"], | |
| [class*="cursorDefault"], | |
| foreignObject[mask*="url(#)"] { | |
| display: none; | |
| } | |
| [mask^="url(#svg-mask-avatar-status"] { | |
| mask: url(#svg-mask-avatar-default) | |
| } | |
| div[class^="avatar"] > div[class^="wrapper"] > svg[class*="mask"] > foreignObject[mask*="url"] { | |
| mask: url(#svg-mask-avatar-default) | |
| } | |
| div[class*="status"] { | |
| display: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment