#Hide nameplates too
1 messages ยท Page 1 of 1 (latest)
why not just
.nameplated__91a9d, .dm__972a0 {
& .container__4bbc6 {
display: none;
}
}
even just
.container__4bbc6 {
display: none;
}
works and is not as insane as... setting anything to rgba(42, 123, 155, 0) or similar
Like i said prolly a better way todo it but idc
legacy color syntax ๐ญ (also if the alpha is 0 why even specify colors like that)
is there a way to only hide them from other ppl?
have fun i guess ๐ญ
.member__5d473:not([data-list-item-id$="1084592643784331324"]) .container__4bbc6 {
display: none;
}
(replace the id ofc)
Is there a way to maybe bring them back again In direct messages?
here is also a scuffed version
/* for member list */
div[class*="nameplated_"] > div[class^="container"][style^="background"],
/* for dm list */
li[class*="dm_"][role="listitem"] > div > div[class^="container"][style^="background"] {
display: none;
}
Thank you so much!