Skip to content

Instantly share code, notes, and snippets.

@BlackBirb
Created November 3, 2018 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BlackBirb/d03ce87c704af00fbfcf12e8ef31cbdc to your computer and use it in GitHub Desktop.
Save BlackBirb/d03ce87c704af00fbfcf12e8ef31cbdc to your computer and use it in GitHub Desktop.
Simple css for BetterDiscrod that changes alert when you mention @everyone
/*
Created by me, BlackBird#9999 @ discord
It's a simple css file that changes alert when you mention @everyone or @here at discord server that has a lot of users.
I was inspired by https://derpibooru.org/1857429
To make it work you need BetterDiscord installed, you can add this css to your theme file or "Custom css" tab in user settings.
This will break someday, discord like to change classnames and the alert itself can change I'll try to keep this working but
I don't promise anything.
If you have theme that changes alert this one might not work by just pasteing it, you probably need to find code for it in
your theme and replace it.
*/
/* everyone mention alert */
.body-2iXqIL.da-body {
padding: 0;
display: flex;
}
/* image div */
.animation-3GofIz.da-animation {
background: url("https://i.imgur.com/8q0cpe3.png");
background-size: contain;
height: 160px;
width: 310px;
align-self: flex-end;
background-repeat: no-repeat;
}
/* old svg */
.animation-3GofIz.da-animation svg {
display: none;
}
/* right box */
.content-L5mYq4.da-content {
margin: 0px;
padding: 20px;
}
/* text on right */
div.content-L5mYq4.da-content > div:nth-child(2):after {
background: #36393f;
content: "By using @everypone, you are about to mention 100+ ponies. Are you sure?";
position: absolute;
left: 185px;
top: 42px;
padding: 2px 0px 0px 2px;
width: 230px !important;
font-weight: 600;
height: 50px;
}
/* Bottom text */
.theme-dark .footer-2aTx0s > div:after {
content: "Maybe try mentioning a role or individual ponies instead?";
background: #2c2f34;
position: absolute;
left: 25px;
display: inline-block;
height: 20px;
padding: 0px 3px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment