#**Customizable *is typing...* message**

1 messages · Page 1 of 1 (latest)

scenic skiff
#

Fixed it not showing up when several people are typing
(i think :has() is unavoidable 😭)

scenic skiff
#

Fixed the several people showing up when noone is typing in a slowmode channel

edgy viper
#

Banger snippet lol

wintry silo
#

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;
  }
}
scenic skiff
wintry silo
#

RIP

scenic skiff
#

the only way it's able to work is because it puts the names in a <strong/>

wintry silo
#

Ah okay

#

Ic

analog steppe
scenic skiff
#

oh

analog steppe
#

then you can check for the profile pic link, then change it based on that

scenic skiff
#

forgot about that plugin

analog steppe
#

vp typingtweaks

dense relicBOT
scenic skiff
#

don't have time to figure that out, but @wintry silo, you can use that

wintry silo
#

Niceeee

#

So its possible through a plugin

analog steppe
#

@wintry silo wait so what exactly do you want

wintry silo
#

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

analog steppe
#
.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
wintry silo
#

wow

#

bro is smart

scenic skiff
pliant nebula
#

@naive karma is yapping...

plain ermine
#

is yapping...

safe glen
#
.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)

tender helm
#

It's peak

karmic ore
#

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

scenic skiff
karmic ore
#

the is yapping part is right at the start after the imports

scenic skiff
#

// doesn't work in css

karmic ore
#

the rest are the avatar or top and stuff like that, nothing really interracting with it i think

scenic skiff
#

you have to use /* */

karmic ore
#

oh

scenic skiff
#

it even gives an error

karmic ore
#

i never use css in my defense my brain is too fried from uni 💀

scenic skiff
#

yeah i wish you could use // in css

karmic ore
#

still gives me less brain damage than Lua did to me last project

gloomy grail
#

peak

opal depot
#

how can i change the "is typing" to a different word per dm?

karmic ore
#

yeah just change the is yapping in the code between the apostrophes to whatever ya want it to be

scenic skiff
#

seperate them with a space

opal depot
scenic skiff
#

before the selector

scenic skiff
#

that should work

opal depot
scenic skiff
#

no

#

change it to be like that

scenic skiff
# opal depot 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

opal depot
#

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

opal depot
scenic skiff
#

if you want to do multiple, you should use a different approach that won't make discord unusuably laggy

scenic skiff
opal depot
#

thank you 🙏🏻

alpine nebula
#

how would I change this to make it only change it for one person (if possible)

alpine nebula
scenic skiff
#

its almost certainly laggy though

alpine nebula
quaint river
#

role color applies to the entire is typing message when using TypingTweaks plugin instead of just the username

scenic skiff
mental scarab
scenic skiff
mental scarab
scenic skiff
#

sure
send it in my dms

mental scarab
tropic echo
#

this ccs seems to have broken :c

scenic skiff
still solar
#

latest discord update broke this, anyone have a fix?

scenic skiff