mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
* Added: Setting to hide the border around streams in the directory that have guest stars. * Fixed: Issue with chat alternating backgrounds not appearing correctly after a Twitch update. Some settings may still not be working (notably: separators) * Fixed: Issue where FFZ could be injected into a page twice, breaking basically everything. * Experiments: Disable the EMQX experiment. It's not working out.
21 lines
585 B
SCSS
21 lines
585 B
SCSS
.chat-line__message:not(.chat-line--inline),
|
|
.user-notice-line {
|
|
.chat-scrollable-area__message-container > div:nth-child(2n+0) > &,
|
|
&:nth-child(2n+0) {
|
|
&.ffz-mentioned:not(.ffz-custom-color) {
|
|
background-color: rgba(255,127,127,.4) !important;
|
|
|
|
.tw-root--theme-dark & {
|
|
background-color: rgba(255,0,0,.3) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.video-chat__message-list-wrapper li:nth-child(2n+0) .vod-message.ffz-mentioned:not(.ffz-custom-color) {
|
|
background-color: rgba(255,127,127,.4) !important;
|
|
|
|
.tw-root--theme-dark & {
|
|
background-color: rgba(255,0,0,.3) !important;
|
|
}
|
|
}
|