From 8f19efcc846d117714a891f0999d33b23bc6f011 Mon Sep 17 00:00:00 2001 From: lscambo13 Date: Wed, 6 Aug 2025 08:13:10 -0700 Subject: [PATCH] Fix: Repositioned the skip button on TVs as a workaround to fix navigation with remote bug: back button can no longer be focused correctly when this button is focused, but that is a non-issue because users can use the back button on their remotes --- Theme/ElegantFin-theme-nightly.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Theme/ElegantFin-theme-nightly.css b/Theme/ElegantFin-theme-nightly.css index a354c96..4eb3fc0 100644 --- a/Theme/ElegantFin-theme-nightly.css +++ b/Theme/ElegantFin-theme-nightly.css @@ -2793,6 +2793,15 @@ div[data-role=controlgroup] a.ui-btn-active { box-shadow: var(--shadow); } +/* this workaround allows the skip button get focused correctly on TVs using remote navigation*/ +/* issue: back button can no longer be focused correctly when this button is focused, +but that is a non-issue because users can use the back button on their remotes */ +.layout-tv .skip-button { + right: unset; + left: var(--sidePadding); + bottom: 25%; +} + .skip-button:hover { background-color: white; }