1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 10:06:54 +00:00

Fix username colors flickering with the dark theme enabled on Twitch whenever the scrollbar appears or disappears.

This commit is contained in:
SirStendec 2017-11-15 14:06:29 -05:00
parent 1357a3e143
commit 0173212a36
2 changed files with 23 additions and 2 deletions

View file

@ -1,10 +1,27 @@
<div class="list-header">4.0.0-beta1.3<span>@bebd15e93d1888192504</span> <time datetime="2017-11-13">(2017-11-13)</time></div> <div class="list-header">4.0.0-beta1.3<span>@f855394a01c28a59836c</span> <time datetime="2017-11-15">(2017-11-15)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Changed: Simplify the Chat Freeze code just a bit more to reduce the chance of bugs.</li>
<li>Fixed: Username color flickering in Chrome.</li>
</ul>
<div class="list-header">4.0.0-beta1.3<span>@e9879a42770421353fc3</span> <time datetime="2017-11-15">(2017-11-15)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Changed: Made slight alterations to Chat Freeze processing to hopefully fix an issue with chat not unfreezing for some users.</li>
<li>Fixed: Be more specific about which React root we want, to avoid issues with other extensions like WOT that inject extra ones.</li>
</ul>
<div class="list-header">4.0.0-beta1.3<span>@e1583f75d1ada7e37ca8</span> <time datetime="2017-11-14">(2017-11-14)</time></div>
<ul class="chat-menu-content menu-side-padding">
<li>Added: FFZ Control Center option to the chat settings menu to maybe improve discovery.</li>
</ul>
<div class="list-header">4.0.0-beta1.3<span>@bebd15e93d1888192504</span> <time datetime="2017-11-14">(2017-11-14)</time></div>
<ul class="chat-menu-content menu-side-padding"> <ul class="chat-menu-content menu-side-padding">
<li>Fixed: Always remove chat lines in multiples of two to avoid the alternating background colors changing.</li> <li>Fixed: Always remove chat lines in multiples of two to avoid the alternating background colors changing.</li>
<li>Fixed: If there are multiple emoticons for the same indices, render the one with the biggest ID. Fixes self-sent turbo/prime face emotes.</li> <li>Fixed: If there are multiple emoticons for the same indices, render the one with the biggest ID. Fixes self-sent turbo/prime face emotes.</li>
</ul> </ul>
<div class="list-header">4.0.0-beta1.3<span>@63206f4ff1c95b591873</span> <time datetime="2017-11-13">(2017-11-13)</time></div> <div class="list-header">4.0.0-beta1.3<span>@63206f4ff1c95b591873</span> <time datetime="2017-11-14">(2017-11-14)</time></div>
<ul class="chat-menu-content menu-side-padding"> <ul class="chat-menu-content menu-side-padding">
<li>Added: Appearance > Theme > Gray Theme (no Purple)</li> <li>Added: Appearance > Theme > Gray Theme (no Purple)</li>
<li>Added: Chat > Appearance > Font Family</li> <li>Added: Chat > Appearance > Font Family</li>

View file

@ -6,3 +6,7 @@
.ffz--freeze-indicator { .ffz--freeze-indicator {
pointer-events: none; pointer-events: none;
} }
.chat-list__lines .simplebar-scrollbar {
will-change: opacity;
}