From cff5b821f9349cd53b6e3ab1fca67ac2e61af6b1 Mon Sep 17 00:00:00 2001 From: Isaiah Billingsley Date: Fri, 19 Aug 2022 14:24:51 -0400 Subject: [PATCH] Fix show metadata when mousing over the player fixes #1252, fixes #1258 --- .../modules/css_tweaks/styles/portrait-metadata-top.scss | 2 +- .../modules/css_tweaks/styles/theatre-metadata.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sites/twitch-twilight/modules/css_tweaks/styles/portrait-metadata-top.scss b/src/sites/twitch-twilight/modules/css_tweaks/styles/portrait-metadata-top.scss index eda91ad8..710dbbff 100644 --- a/src/sites/twitch-twilight/modules/css_tweaks/styles/portrait-metadata-top.scss +++ b/src/sites/twitch-twilight/modules/css_tweaks/styles/portrait-metadata-top.scss @@ -1,5 +1,5 @@ .channel-root__scroll-area--theatre-mode { - .channel-info-content > div:first-child { + .channel-info-content > :first-child { right: 40rem !important; bottom: calc(10rem + var(--ffz-chat-height)) !important; } diff --git a/src/sites/twitch-twilight/modules/css_tweaks/styles/theatre-metadata.scss b/src/sites/twitch-twilight/modules/css_tweaks/styles/theatre-metadata.scss index bdeca9ac..545077b0 100644 --- a/src/sites/twitch-twilight/modules/css_tweaks/styles/theatre-metadata.scss +++ b/src/sites/twitch-twilight/modules/css_tweaks/styles/theatre-metadata.scss @@ -1,5 +1,5 @@ .channel-root__scroll-area--theatre-mode { - .channel-info-content > div:first-child, + .channel-info-content > :first-child, .channel-info-bar { position: fixed; bottom: 17rem; @@ -24,7 +24,7 @@ } &:hover { - .channel-info-content > div:first-child, + .channel-info-content > :first-child, .channel-info-bar { background-color: var(--color-background-base); opacity: 0.75;