From bd4620139fd0676287f3e1fa9edfc8cebf0d9874 Mon Sep 17 00:00:00 2001 From: restitux Date: Sun, 25 Jan 2026 13:19:00 -0700 Subject: [PATCH] add background hover color change --- gui/assets/main.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gui/assets/main.scss b/gui/assets/main.scss index 3e6341a..f6054ab 100644 --- a/gui/assets/main.scss +++ b/gui/assets/main.scss @@ -84,7 +84,6 @@ a:visited { } - .channel_header { display: flex; flex-direction: row; @@ -105,9 +104,16 @@ a:visited { /* The whole right side of the row is the dblclick target */ .channel_row_click { flex: 1; + padding: 0.1rem 0.25rem 0.1rem 0.5rem; cursor: pointer; } +/* Hover highlight for whole row area (title + blank space) */ +.channel_row_click:hover { + background-color: var(--channel-hover-bg, #222); /* pick your color */ +} + + /* still keep text non-selectable if desired */ .channel_details { -webkit-user-select: none;