DiscordStyles/FrostedGlass

When you change from the default color, the text-bar gets a bug

Closed this issue · 3 comments

Uh, so I changed the default colors to red and blue gradient.
But now when ever I wanna mention a user, and when his ping is in the text box ( like @gudguy Hey dude Wassup) it gets bugged, I tried reinstalling but the thing remained the same.
See the attached video if you didn't understand what I said

2021-09-04.09-01-44.mp4

This is SUPER late but I've finally figured it out as this was driving me insane:

Put this in your Custom CSS:

.textArea-2CLwUE.textAreaSlate-9-y-k2.slateContainer-3x9zil.spellCheckOverlay-cNSap5 {
    z-index: 0 !important;
}

span.wrapper-1ZcZW-.mention {
    z-index: 1;
}

For some reason an element appears once you keyup in the text area for sending messages (as it turns out this is the spellchecker's underline) and it obscures the text with the gradient. This'll ensure that the gradient stays behind the text and not block it out.

image

EDIT 2: I've replaced the original solution with a better one, which'll resolve the issue but also still have spellcheck underlines appear.

This is SUPER late but I've finally figured it out as this was driving me insane:

Put this in your Custom CSS:

.textArea-2CLwUE.textAreaSlate-9-y-k2.slateContainer-3x9zil.spellCheckOverlay-cNSap5 {
    z-index: 0 !important;
}

span.wrapper-1ZcZW-.mention {
    z-index: 1;
}

For some reason an element appears once you keyup in the text area for sending messages (as it turns out this is the spellchecker's underline) and it obscures the text with the gradient. This'll ensure that the gradient stays behind the text and not block it out.

image

EDIT 2: I've replaced the original solution with a better one, which'll resolve the issue but also still have spellcheck underlines appear.

Can u tell me how to changethe default colors to gradient?

Gibbu commented

This seems to be fixed.