From 5b1f4f2b616e6be707f75d0a2b7c34f7b6f85c5c Mon Sep 17 00:00:00 2001 From: "Geoffrey D. Bennett" Date: Tue, 15 Mar 2022 00:12:18 +1030 Subject: [PATCH] Change route-label hover background colour to work with dark theme Hard-coding a light background for route-label hovering didn't work well with dark themes which have text in a light colour. Use @theme_selected_bg_color as suggested by @szszoke. Fixes #3. --- src/alsa-scarlett-gui.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/alsa-scarlett-gui.css b/src/alsa-scarlett-gui.css index 72d978e..1095484 100644 --- a/src/alsa-scarlett-gui.css +++ b/src/alsa-scarlett-gui.css @@ -3,12 +3,12 @@ } .route-label:hover { - background: #e0e0e0; + background: @theme_selected_bg_color; } .route-label:drop(active) { box-shadow: none; - background: #e0e0e0; + background: @theme_selected_bg_color; } button {