Last active
September 3, 2020 17:32
-
-
Save cheesits456/4ba0e318aedf31a205ad22c141234e88 to your computer and use it in GitHub Desktop.
Custom CSS for Discord to remove the recently-added message hover effects
This file contains 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
/* ========== | |
RemoveButtons.theme.css by cheesits456 (https://cheesits456.dev) | |
For CSS compatible with browser extensions, see | |
https://gist.github.com/cheesits456/0d5bede837f022e443e9a5fc4aa386cb#file-discordbrowserstyles-css-L20 | |
========== */ | |
/* Disable timestamp when hovering a message */ | |
.da-message > .da-contents > .da-timestamp { | |
display: none; | |
} | |
/* Disable background darken when hovering a message */ | |
.da-message:not(.da-mentioned):hover { | |
background-color: var(--background-primary) !important; | |
} | |
/* Disable background brighten when hovering a message with a mention */ | |
.da-mentioned:hover { | |
background-color: var(--background-mentioned) !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment