#```css
1 messages · Page 1 of 1 (latest)
i was wondering why there wasnt threads on the bb server
lol
change how mention looks like in chats
@frigid hull
neat
lol
question is this a bug or just discord being discord
what about it?
your name is the same colored thing as if you ping yourself but
isnt it supposed to just be blue
have no clue

ik
lol
Functioning snippet ™️
🤨
Is there a preview of this?
Literally just try it it takes 2 seconds 
press print screen
Oh hey look a screenshot
Oh this is actually pretty cool
Heyho, this mention of another person was shown like my mention. Why did that happen?
you were pinged in the same message
No, the background is the same as for non-pinged messages. I wasn't pinged in there at all.
@kind hazel made it better
`
.theme-dark .mention {
color: grey;
background-color: transparent;
}
.theme-dark .mentioned__58017 .mention {
cursor: pointer;
box-shadow: 0 0 0 red;
animation: pulse 1.6s infinite;
}
@-webkit-keyframes pulse {
70% {
box-shadow: 0 0 2px 2px red;
}
}
@keyframes pulse {
70% {
box-shadow: 0 0 2px 2px red;
}
}
`
oops
nvm
Oh?
/* Make My Mention Different From Other Mentions without affecting #CHANNEL */
.theme-dark .mentioned__58017 .mention {
color: red !important;
}
.theme-dark .mention {
color: grey;
background-color: transparent;
}
/* Better Mentions Pulse (after fix) */
.mentioned__58017 .mention {
background-color: transparent !important;
}
.theme-dark .mentioned__58017 .mention {
cursor: pointer;
box-shadow: 0 0 0 red;
animation: pulse 1.6s infinite;
}
@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 red;
}
70% {
-webkit-box-shadow: 0 0 0 2px red;
}
100% {
-webkit-box-shadow: 0 0 0 0 transparent;
}
}
@keyframes pulse {
0% {
-moz-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
70% {
-moz-box-shadow: 0 0 0 2px red;
box-shadow: 0 0 0 2px red;
}
100% {
-moz-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
}
this one seems to still be working
it would change all mentions in a message if you were mentioned. including if you were mentioned in a reply
/* Make My Mention Different From Other Mentions without affecting #CHANNEL */
.theme-dark .mentioned_fa6fd2 .mention {
color: red !important;
}
.theme-dark .mention {
color: grey;
background-color: transparent;
}
/* Better Mentions Pulse (after fix) */
.mentioned_fa6fd2 .mention {
background-color: transparent !important;
}
.theme-dark .mentioned_fa6fd2 .mention {
cursor: pointer;
box-shadow: 0 0 0 red;
animation: pulse 1.6s infinite;
}
@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 red;
}
70% {
-webkit-box-shadow: 0 0 0 2px red;
}
100% {
-webkit-box-shadow: 0 0 0 0 transparent;
}
}
@keyframes pulse {
0% {
-moz-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
70% {
-moz-box-shadow: 0 0 0 2px red;
box-shadow: 0 0 0 2px red;
}
100% {
-moz-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
}
}
discord changed their class names