From b9f1bbb4ad060d94e21f04810a47c3aaeaf4487f Mon Sep 17 00:00:00 2001 From: lucaspatenaude Date: Tue, 28 Jul 2026 16:34:25 -0600 Subject: [PATCH] Add channel hover style as test --- lukeflix.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/lukeflix.css b/lukeflix.css index 220aac6..f79e0c6 100644 --- a/lukeflix.css +++ b/lukeflix.css @@ -2533,4 +2533,30 @@ div[data-role="controlgroup"] a[data-role="button"]:last-child { .padded-top { padding-top: 0em !important; +} + +/* Test for Channel Selection Hover */ +.guide-channelHeaderCell.itemAction .guideChannelNumber { + display: flex; + align-items: center; + justify-content: center; + width: 1.8em; + height: 1.8em; + margin: 0 auto; + border-radius: 50%; + background-color: transparent; + line-height: 1; + transition: background-color 0.15s ease, color 0.15s ease; +} + +/* Hover — white circle, black number */ +.guide-channelHeaderCell.itemAction:hover .guideChannelNumber { + background-color: #fff; + color: #000; +} + +/* Click — red circle */ +.guide-channelHeaderCell.itemAction:active .guideChannelNumber { + background-color: #e50914; + color: #fff; } \ No newline at end of file