From fa6de328bfccc23e6aa992aea3fb401c85aa0de1 Mon Sep 17 00:00:00 2001 From: YouHaveTrouble Date: Wed, 12 Jun 2024 19:39:50 +0200 Subject: [PATCH] Initial commit --- readme.md | 2 ++ v1.css | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 readme.md create mode 100644 v1.css diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..f0372bc --- /dev/null +++ b/readme.md @@ -0,0 +1,2 @@ +Discord does not offer custom css, BUT if it DID, this is what I would do to modify my client! + diff --git a/v1.css b/v1.css new file mode 100644 index 0000000..6f6c899 --- /dev/null +++ b/v1.css @@ -0,0 +1,33 @@ +/* Removes profile effects that often obscure the contents of the profile */ +div[class*=profileEffects_] { + display: none; +} +/* Removes avatar decorations */ +img[class^="avatarDecoration__"] { + display: none; +} + +/* Makes it so small images are not a blury mess */ +div[class*=imageWrapper_] { + image-rendering: pixelated; +} + +/* I need you to understand that I'm not gifting nitro from my chatbox */ +button[aria-label="Send a gift"] { + display: none; +} + +/* You can switch between pickers after clicking emoji button */ +button[aria-label="Open sticker picker"] { + display: none; +} + +/* You can switch between pickers after clicking emoji button */ +button[aria-label="Open GIF picker"] { + display: none; +} + +/* Discord support is useless in most cases, so stop sending me there */ +a[href="https://support.discord.com"] { + display: none; +}