This removes the close button in Discord's DM list to prevent accidentally clicking it.
Discord - Remove Close Button by misspeled-name
Details
Authormisspeled-name
LicenseCreative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)
Categorydiscord, discordapp
Created
Updated
Size812 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Discord - Remove Close Button
@namespace Misspeled Name (https://userstyles.world/user/misspeled-name)
@version 1.0.5
@description This removes the close button in Discord's DM list to prevent accidentally clicking it.
@author Misspeled Name (https://userstyles.world/user/misspeled-name)
@license Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)
==/UserStyle== */
@-moz-document domain("discordapp.com"), domain("discord.com") {
/* close button in DM list */
/* note to self: do not use [aria-label="Close DM"] to match the button as every type of entry in this list has a different label (DM, group chat, etc) */
.privateChannels_f0963d .closeButton_c91bad {display:none!important;}
}