From 9ecff6794d5eb46b8188e78757891a592dc89290 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 5 Mar 2026 13:13:09 +0000 Subject: [PATCH] Highlight selected signals --- scss/custom.scss | 1 + scss/sync/intelligence.scss | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/scss/custom.scss b/scss/custom.scss index c480684c..58645982 100644 --- a/scss/custom.scss +++ b/scss/custom.scss @@ -11,6 +11,7 @@ $light: #fde1d8; $off-white: #F8F9FA; $off-black: #495057; +$primary-light-4: #FAA489; // 2. Configure color contrast $color-contrast-dark: #000; $color-contrast-light: #fff; diff --git a/scss/sync/intelligence.scss b/scss/sync/intelligence.scss index 8c898c89..0d52701a 100644 --- a/scss/sync/intelligence.scss +++ b/scss/sync/intelligence.scss @@ -17,7 +17,7 @@ overflow-y: auto; } .signal-item:hover { - background-color: #f1f3f5; + background-color: $primary-light-4; cursor: pointer; } .tool-button { @@ -30,3 +30,6 @@ color: #6c757d; font-weight: 600; } +.selected { + background-color: $info; +}