DiscordStyles / MinimalCord

Changes Discord enough to give it a fresh feel while also making it darker. Supports both Light and Dark themes.
MIT License
68 stars 54 forks source link

Message right under mention is positioned too high #7

Closed yamiM0NSTER closed 3 years ago

yamiM0NSTER commented 3 years ago

As title points out if there is a message right under a mention message the text/emote will appear over mention edge. Examples: obraz obraz

It seems that code in this clause is causing the issue: https://github.com/DiscordStyles/MinimalCord/blob/master/base.css#L299

By disabling either one of those, the messages display way better. Maybe it's needed for something else but I don't know what that would be.

Cheers!

Gibbu commented 3 years ago

L299 is used to provide even spacing between messages. And you can also see the rounded border between the messages. (Look closely to the left of between the messages)

Without it, it will look like this: image

I think the only way to fix the mentions is to make the mention colour wrap around the text, not the container. Like so: image

yamiM0NSTER commented 3 years ago

Yeah, if L299 is needed then wrapping text seems like the solution.

yamiM0NSTER commented 3 years ago

On another note: Won't it break embeds though?

Gibbu commented 3 years ago

Nah, it's fine image

yamiM0NSTER commented 3 years ago

I guess that's the way to go then, until discord team changes something.