Highlight selected signals

This commit is contained in:
Eli Ribble 2026-03-05 13:13:09 +00:00
parent 478abf6d1b
commit 9ecff6794d
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View file

@ -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;

View file

@ -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;
}