Fix hover bubbles blocking each other with pointer-events

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ian Gulliver
2026-01-31 07:40:12 -08:00
parent 5c4266f89c
commit 09e52accdb

View File

@@ -191,6 +191,33 @@ body {
z-index: 100; z-index: 100;
} }
.node .dante-hover,
.node .artnet-hover,
.node .sacn-hover {
pointer-events: none;
}
body.dante-mode .node .port-hover,
body.dante-mode .node .uplink-hover,
body.artnet-mode .node .port-hover,
body.artnet-mode .node .uplink-hover,
body.sacn-mode .node .port-hover,
body.sacn-mode .node .uplink-hover {
pointer-events: none;
}
body.dante-mode .node .dante-hover {
pointer-events: auto;
}
body.artnet-mode .node .artnet-hover {
pointer-events: auto;
}
body.sacn-mode .node .sacn-hover {
pointer-events: auto;
}
.node .uplink { .node .uplink {
font-size: 10px; font-size: 10px;
font-weight: normal; font-weight: normal;