ClearVision / ClearVision-v6

Highly customizable theme for BetterDiscord.
https://clearvision.github.io/
Apache License 2.0
389 stars 1.88k forks source link

[Bug Report] Seems a new discord update changed some display stuff #146

Closed ClarusNox closed 1 year ago

ClarusNox commented 1 year ago

Did You Search Other Issues?

Does This Bug Show On The Default Theme?

Describe The Bug

The change relates to how discord channels look when they have unread messages, now with the theme they barely stand out from read channels.

Reproduction Steps

1.No steps, display just changed after an update
2.
3.
...

Screenshots

https://imgur.com/3u5mUEx

Additional Context

No response

LinUwUxCat commented 1 year ago

As a temp fix, you can use this

.wrapper-NhbLHG.modeUnread-3Cxepe .iconContainer-21RCa3 .icon-2W8DHg{
  color: var(--channel-unread);
  filter: drop-shadow(0 0 3px);
  opacity: 1;
}
.wrapper-NhbLHG.modeUnread-3Cxepe .name-28HaxV{
  color: var(--channel-unread);
  text-shadow : 0 0 3px;
}
GAbO1254 commented 1 year ago

it looks like the channel color related variables stopped working

DavidArthurCole commented 1 year ago

As a temp fix, you can use this

.wrapper-NhbLHG.modeUnread-3Cxepe .iconContainer-21RCa3 .icon-2W8DHg{
  color: var(--channel-unread);
  filter: drop-shadow(0 0 3px);
  opacity: 1;
}
.wrapper-NhbLHG.modeUnread-3Cxepe .name-28HaxV{
  color: var(--channel-unread);
  text-shadow : 0 0 3px;
}

For selected channel, as this also broke:

.wrapper-NhbLHG.modeSelected-3DmyhH .iconContainer-21RCa3 .icon-2W8DHg{
  color: var(--channel-text-selected)
}

.wrapper-NhbLHG.modeSelected-3DmyhH .name-28HaxV {
  color: var(--channel-text-selected)
}
ClarusNox commented 1 year ago

image it seems to have fixed itself?

LinUwUxCat commented 1 year ago

yeah, i believe ed903779917cd3d0d9f21094af8c39bf731df11b fixed this

ClarusNox commented 1 year ago

I haven't changed anything on my end, so I am not sure how that'd fix it?

LinUwUxCat commented 1 year ago

On your end, you have a file with some variables. before these is @import url(https://clearvision.github.io/ClearVision-v6/main.css);, which imports a css files full of rules. That's what is changed, and that's how themes update without any manual action

ClarusNox commented 1 year ago

I see, so then this thread should be closed now?