From fe41eecd77cb38931d3657c6ffc27d4c4dfe7908 Mon Sep 17 00:00:00 2001 From: SirStendec Date: Tue, 25 Sep 2018 18:37:14 -0400 Subject: [PATCH] 4.0.0-rc12.22 * Fixed: Rename all references to `tw-c-background` to `tw-c-background-base` and `tw-c-text` to `tw-c-text-base` to fix rendering issues with FrankerFaceZ's custom UI due to Twitch CSS changes. --- src/main.js | 2 +- src/modules/chat/actions/index.jsx | 4 ++-- src/modules/chat/components/chat-rich.vue | 2 +- src/modules/main_menu/components/action-editor.vue | 2 +- src/modules/main_menu/components/experiments.vue | 4 ++-- src/modules/main_menu/components/filter-editor.vue | 2 +- src/modules/main_menu/components/main-menu.vue | 4 ++-- src/modules/main_menu/components/profile-manager.vue | 2 +- src/modules/metadata.jsx | 8 ++++---- src/modules/translation_ui/components/translation-ui.vue | 4 ++-- src/modules/viewer_cards/card.vue | 4 ++-- src/sites/twitch-twilight/modules/chat/emote_menu.jsx | 6 +++--- src/sites/twitch-twilight/modules/chat/index.js | 2 +- src/sites/twitch-twilight/modules/chat/line.js | 4 ++-- src/sites/twitch-twilight/modules/chat/rich_content.jsx | 2 +- src/sites/twitch-twilight/modules/chat/scroller.js | 2 +- src/sites/twitch-twilight/modules/directory/following.jsx | 2 +- src/sites/twitch-twilight/modules/directory/index.jsx | 2 +- src/sites/twitch-twilight/modules/featured-follow.vue | 2 +- src/sites/twitch-twilight/modules/host-options.vue | 2 +- src/sites/twitch-twilight/modules/video_chat/index.jsx | 6 +++--- src/sites/twitch-twilight/styles/theme.scss | 4 ++-- 22 files changed, 36 insertions(+), 36 deletions(-) diff --git a/src/main.js b/src/main.js index 753e68ed..41f3dafe 100644 --- a/src/main.js +++ b/src/main.js @@ -100,7 +100,7 @@ class FrankerFaceZ extends Module { FrankerFaceZ.Logger = Logger; const VER = FrankerFaceZ.version_info = { - major: 4, minor: 0, revision: 0, extra: '-rc12.21', + major: 4, minor: 0, revision: 0, extra: '-rc12.22', commit: __git_commit__, build: __webpack_hash__, toString: () => diff --git a/src/modules/chat/actions/index.jsx b/src/modules/chat/actions/index.jsx index 29e12996..e64add89 100644 --- a/src/modules/chat/actions/index.jsx +++ b/src/modules/chat/actions/index.jsx @@ -171,9 +171,9 @@ export default class Actions extends Module { manual: true, html: true, - tooltipClass: 'ffz-action-balloon tw-balloon tw-block tw-border tw-elevation-1 tw-border-radius-small tw-c-background', + tooltipClass: 'ffz-action-balloon tw-balloon tw-block tw-border tw-elevation-1 tw-border-radius-small tw-c-background-base', arrowClass: 'tw-balloon__tail tw-overflow-hidden tw-absolute', - arrowInner: 'tw-balloon__tail-symbol tw-border-t tw-border-r tw-border-b tw-border-l tw-border-radius-small tw-c-background tw-absolute', + arrowInner: 'tw-balloon__tail-symbol tw-border-t tw-border-r tw-border-b tw-border-l tw-border-radius-small tw-c-background-base tw-absolute', innerClass: 'tw-pd-1', popper: { diff --git a/src/modules/chat/components/chat-rich.vue b/src/modules/chat/components/chat-rich.vue index ef54e077..1e2648be 100644 --- a/src/modules/chat/components/chat-rich.vue +++ b/src/modules/chat/components/chat-rich.vue @@ -1,7 +1,7 @@