Skip to content

Instantly share code, notes, and snippets.

@flleeppyy
Last active August 17, 2021 01:52
Show Gist options
  • Select an option

  • Save flleeppyy/d75590457f0aa34da52ab11656633669 to your computer and use it in GitHub Desktop.

Select an option

Save flleeppyy/d75590457f0aa34da52ab11656633669 to your computer and use it in GitHub Desktop.
Discord - Remove status indicators
/*Remove custom statuses*/
.activity-525YDR,
.activity-2Gy-9S,
.customStatusActivity-nmH3DF,
.customStatus-oN4ZZY {
display: none
}
/*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