#**Customizable *is typing...* message**
1 messages · Page 1 of 1 (latest)
Fixed it not showing up when several people are typing
(i think :has() is unavoidable 😭)
Fixed the several people showing up when noone is typing in a slowmode channel
Banger snippet lol
Is there a way to rum a auther ID check so you can make certain people have a different typing text?
Like with this(from the venbot sticky messages css snippet)
make @dense relic's sticky nicer in #🏥-vencord-support-🏥
WE LOVE VENBOTTO
(will probably break while venbotto's sticky updates between messges, but eh)
.scrollerInner__36d07[aria-label$="🏥-vencord-support-🏥"] {
li:last-of-type[data-author-id="1017176847865352332"] {
background-color: #d3869a4b;
border: 2px solid #d3869a;
margin: 10px 11px 0px;
border-radius: 8px 8px 0px 0px;
.message__5126c {
margin-top: 0px;
padding: 6px 0px 16px 20px;
}
.avatar_c19a55,
.header_c19a55 {
display: none;
}
.messageContent_c19a55>small:last-of-type {
display: none;
}
}
.scrollerSpacer__36d07 {
display: none;
}
}
no, there's nothing in the is typing that shows the ids
RIP
the only way it's able to work is because it puts the names in a <strong/>
unless you are using typing tweaks to show profile pic
then you can check for the profile pic link, then change it based on that
forgot about that plugin
vp typingtweaks
don't have time to figure that out, but @wintry silo, you can use that
@wintry silo wait so what exactly do you want
Basically some of my friends yap more then type so i would find it funny if for those specific people it would say yap instead of type ofc this is overkill for a single person but still wouldnt it be funny
somethign like that is very overkill though
.typingDots_b88801 > .ellipsis_b88801+.text_b88801 {
font-size: 0;
height: 16px;
& > strong {
font-size: 12px;
&::after {
color: var(--text-secondary);
}
&:last-child::after {
content: " is yapping...";
font-weight: 500;
}
&:last-child:not(:first-child)::after {
content: " are yapping...";
font-weight: 500;
}
&:not(:last-child):nth-last-child(2)::after {
content: " and "
}
&:not(:last-child)::after {
content: ", ";
font-weight: 500;
}
}
&:not(:has(>strong))::after {
font-size: 12px;
content: "Several people are yapping...";
}
}
```some slight fixes, fixed typingtweaks role colour (or is it rolecoloreverywhere) setting the ::after element to the person's color, also fixed grammar
oh yeah forgot to look if 3 people is , and and or not
@naive karma is yapping...
is yapping...
.typingDots_b88801 > .ellipsis_b88801+.text_b88801 {
font-size: 0;
height: 16px;
>strong {
font-size: 12px;
&::after {
color: var(--text-secondary);
font-weight: 500;
}
&:last-child::after {
content: " is yapping…";
}
&:last-child:not(:first-child)::after {
content: " are yapping…";
}
&:nth-last-child(2)::after {
content: " and "
}
&:nth-last-child(3)::after {
content: ", ";
}
}
&:not(:has(>strong))::after {
font-size: 12px;
content: "Several people are yapping…";
}
}```
there i made it 10 times better!
(i used the reall ellipsis symbol)
It's peak
is there anything else that you need to add to the quickcss file? because i wanted to add the code next to a few other of the changes i got but no matter what the is typing text does not change
You might've pasted it in wrong?
Can you send your quickcss
// doesn't work in css
the rest are the avatar or top and stuff like that, nothing really interracting with it i think
you have to use /* */
oh
it even gives an error
yeah i wish you could use // in css
still gives me less brain damage than Lua did to me last project
peak
how can i change the "is typing" to a different word per dm?
yeah just change the is yapping in the code between the apostrophes to whatever ya want it to be
try adding this before the selector
.chat_f75fb0:has(.subtitleContainer_f75fb0 .avatar__44b0c[src*="[ID HERE]"])
seperate them with a space
(taken from here since I'm on mobile rn https://discord.com/channels/1015060230222131221/1367916630406991872)
ik its a stupid question to ask but where exactly (i got 0 knowledge in css)
before the selector
like this (i used your id)
.chat_f75fb0:has(.subtitleContainer_f75fb0 .avatar__44b0c[src*="1298351381345861652"]) .typingDots_b88801 > .ellipsis_b88801+.text_b88801 {...}
that should work
this should be like separate from the main code?
.chat_f75fb0:has(.subtitleContainer_f75fb0 .avatar__44b0c[src*="1298351381345861652"]) .typingDots_b88801 > .ellipsis_b88801+.text_b88801 {
font-size: 0;
height: 16px;
>strong {
font-size: 12px;
&::after {
color: var(--text-secondary);
font-weight: 500;
}
&:last-child::after {
content: " is yapping...";
}
&:last-child:not(:first-child)::after {
content: " are yapping...";
}
&:nth-last-child(2)::after {
content: " and "
}
&:nth-last-child(3)::after {
content: ", ";
}
}
&:not(:has(>strong))::after {
font-size: 12px;
content: "Several people are yapping...";
}
}
just use that instead of the main one
if you want it for only a certain person
that may be quite laggy because it uses :has()
there's probably a slightly better way of doing it
okay so like can i do like multiple of the .chat one?
and thank you for takin your time to answer me, grateful for it
like 2 dms lets say
if you want to do multiple, you should use a different approach that won't make discord unusuably laggy
ahh
alright
but if you do want to use that approach for now, copy this twice, and change the id for each one
ight that'll do it
thank you 🙏🏻
how would I change this to make it only change it for one person (if possible)
@alpine nebula
Cool ty!
its almost certainly laggy though
not like I care 🤷🏼♂️
role color applies to the entire is typing message when using TypingTweaks plugin instead of just the username
change --text-secondary to --text-subtle
discord removed/renamed the variable for some reason
its not working rn.. is there gonna be a fix soon?
I already updated the classes
I'm not sure what you mean
uh can i give u my complete css & then u'll know what i mean xd, i can share screenshot if u want
sure
send it in my dms
done
this ccs seems to have broken :c
it's still working for me
are you sure you're using the most up to date version? (i edited the message on december 17)
latest discord update broke this, anyone have a fix?