#remove Status Reactions
1 messages · Page 1 of 1 (latest)
I feel like selecting all of popover is a bad idea. it probaby breaks other things in the UI
yeah was just about to say that
but I do like this existing
i'm pretty sure it's used in some other places
like the message quick react buttons
probably better to use like .statusPopover__2d0ab for status and .withReactReply__75742+.avatarPopover__2d0ab for pfp
it would also make the css faster by not using a global [] selector
yeah slightly
I now have it running with Container as well
speed is usually not my goal with things, the end user usually cares if things dont break every update
hence selectors
I can at least add the non-selector tho, one sec on that
like the class* and class^ are quite cpu intensive as engine now needs to check every class update and do a search. instead of going directly to a specific tag. especially since this will be running 24/7 for blocking the very very very few instances that you mouse over a profile in comparison.
like if it breaks, its nowhere near the end of the world. which is why I think its better to have more specificity. but thats just my humble opinion for someone with an older computer that already struggles with how slow discord is
container is used even more
you could just use [class*=statusPopover_], [class*=withReactReply]+[class^=popover_] I think (I'm on mobile but I'm pretty sure I remembered them right

the comma would make it a new class
this is checking container and then the popover, which as far as I've seen only appears on that specifically
I may just be too focused on my show rn and am thinking of this wrong, but that feels like a much more intensive * than mine?
no a new selector
and that's intentional
because they're different classes
a space means a popover anywhere beneath a container
which is anything
oh I see, could I not just do a container > popover?
ig, but still would be really general and could easily overselect
I'll add a lil more to it but if that works fine I'll see if it references anywhere else
oh just use these
.avatarPopover__2d0ab, .statusPopover__2d0ab
and make them *= if you want ig
yeah was gonna say I just saw the avatar ones, really dont like that
there we go, both variants now up
you should still use statusPopover_ instead of container>popover
@balmy cradle status needs to be *= not ^=
[class*=statusPopover], [class*=avatarPopover_] { display:none; }
fixed
same above^
ok
more people should make performance versions of their css
most of the people using .classNames are the performance versions, I just like to use the [classname*=] wildcards to make sure users dont need to update them when discord updates the UI
oh nice
what about these ones on activities?
how tf did I leave that out lmao
thar we go
what font is that?
Whitney, discord old font up till they changed to sansgg
oh i meant @balmy cradle 's font
Black and White 2 's font
how do u get it on discord
I cant exactly share the file, but there's good enough copies on the internet, just need to install it, restart discord, and set
:root{
--font-primary: "FontName Here" !important;
}
I'm using a full rip from the games and I doubt Nintendo would want me sharing that 
thanks!
is there one of these for profile picture react 
cause they have that... for some reason
It applies to both the profile picture and the status bubble
yeah that's intentional
oh wait
sorry didn't read the message above that you were replying to
ah, the performance version just doesn't work then
they forgot a b
.avatarPopover__2d0ab, .statusPopover__2d0ab, .activityPopover__2d0ab{display:none;}
@balmy cradle you forgot a the b here