#**Discord removed timestamp tooltips, so
1 messages · Page 1 of 1 (latest)
wait why tf did they do that ???
wdym
that's working exactly as intended?
maybe it is, it's just impossible to read
seems pretty easy to read to me
you can add background: #111 and remove the blur
or try increasing the blur
I didn't do a solid background because I couldn't get it to blend with selected msgs and mentioned msgs
hopefully accident
actually the blurring does look kind of weird in that ss
it's like this for me
what message were you testing with?
random message from a user in a private server
i guess it works better on darker names though
oh it's their pfp
increasing the blur should make it easier to read
or you could remove it, and add this
background: color(from color-mix(in oklab, var(--background-gradient-chat,var(--background-base-lower)), var(--background-message-hover)) srgb r g b / 0.7);
oh that one is partially transparent to keep the blur
here's the solid color
background: color-mix(in oklab, var(--background-gradient-chat,var(--background-base-lower)), var(--background-message-hover)
i didn't use it, because it looks bad with mentioned and selected messages
Yours are instant popup and way nicer to look at.
This works and is great, but i also had to remove the discord tooltips with [class*="timestampTooltip"] since mine still exist 
time[datetime]:hover::after {
content: "("attr(datetime)")";
width: max-content;
background: #000000;
position: absolute;
z-index: 9999;
padding: 0 4px;
border-radius: 6px;
}
although, how can i put them where the old popup was? on compact mode it is obstructive
ideally centered here
I tried briefly
it might be possible, but would be difficult
whoa what version of discord are you on
ah yeah you haven't gotten the update yet then
if you just want custom timestamp tooltips (and timestamps), use this by installing it as a userplugin https://github.com/Vendicated/Vencord/pull/3189
normal timestamps are back now
I should figure out how to install this plugin
well they don't show your timezone
They aren't for me, for some reason 😠I can't figure it out.
Sad face. Discord is updated, Vencord is updated. Looks like I'll have to use your snippet :/ why would Discord get rid of timestamps anyway, good lord, terrible idea
It's still not timestamped.
Does your snippet need to be updated maybe? I have no idea how to edit this snippet though, I tried poking around in the dev tool css selector thingy and it didn't make any sense to me what to change.
check your quick css
Oops. Looks like another snippet I had, had a timestamp related line in it I skipped over bc I thought the snippet was irrelevant and I'd had it so long I forgot what all it changed lol (Now I realize it set the timestamp bg color black as part of visual contrast accessibility, so I just added bg color to OP's snippet.)
Works now! 
The following code interferes with timestamps, for any fellow appreciators of discord fucking over custom css;
span[class*="timestampInline_"] time::before {
content: attr(aria-label);
font-size: 12px;
}
span[class*="timestampInline_"] {
font-size: 0px !important;
}
[class*='membersGroup']:has([role=button]),
[class*='member'] [class*='container']:has([class*='badges']) {
display: none;
}