#my attempt to un-overwatchify discord.

1 messages · Page 1 of 1 (latest)

whole sundial
#

critiques welcome.

/* hide premium elements in friends list */
li > div:has(a[href="/store"]),
li > div:has(a[href="/shop"]),
li > div:has(a[href="/quest-home"]),
div[aria-label="Send a gift"]
{
  display: none;
}

/* hide premium profile decorations and effects */
svg[class*=avatarDecoration],
img[class*=avatarDecoration],
div[class*=profileEffects]
{
  display: none;
}

/* hide premium elements in user settings */
div[class*=container__]:has(h2[class*=extrabold_]),
div[class*=upsell],
div[class*=premium]
{
  display: none;
}

/* hide premium avatar selection in user settings */
li:has(div[class*=hasPremium])
{
  display: none;
}

/* remove the blank space left by the the premium avatar selection option that was hidden */
.optionsList_edf440
{
  grid-template-columns: none;
}

/* hide premium nameplate images and gradients */
img[src*=collectibles],
div[style*=linear-gradient]
{
  display: none;
}
orchid moss
#

Thank you, I was looking for this.