Last active
April 23, 2025 04:22
-
-
Save Sainan/e75a6ea7b4cd691a0bc3e1fab9565e34 to your computer and use it in GitHub Desktop.
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
/* No Avatar Decorations */ | |
[class^='avatarDecoration_'] | |
{ | |
display: none; | |
} | |
/* No Activity Cards */ | |
[aria-label="Members"] > h3:has(svg), | |
[aria-label="Members"] > div:has(> div[class='']) | |
{ | |
display: none; | |
} | |
/* No Clan Tags */ | |
[class*='chipletContainerInline_'] | |
{ | |
display: none; | |
} | |
/* No Nameplates (this shit is way too invasive so a bit hard to 'remove' with CSS) */ | |
div:has(> img[src^="https://cdn.discordapp.com/assets/collectibles/nameplates/"]) | |
{ | |
display: none; | |
} | |
[class*='closeButtonPlated_'] | |
{ | |
opacity: 0.7; | |
width: 16px; | |
height: 16px; | |
} | |
[class^='innerCloseButtonPlated_'] | |
{ | |
background-color: inherit !important; | |
width: inherit !important; | |
height: inherit !important; | |
display: inherit !important; | |
border-radius: inherit !important; | |
backdrop-filter: inherit !important; | |
opacity: inherit !important; | |
} | |
[class^='closeIconPlated_'] | |
{ | |
color: var(--channels-default); | |
} | |
[class*='interactiveSelected_'][class*='platedWrapper_'] | |
{ | |
background: var(--bg-overlay-selected,var(--background-modifier-selected)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment