fix: restore timeline selection highlight
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 4s

This commit is contained in:
2026-06-13 07:57:31 +02:00
parent 99cad2fbaa
commit f3fdf15a3e

View File

@@ -838,6 +838,38 @@ function htmlPage(): string {
box-shadow: none;
}
.timeline-selection,
.timeline-brush {
position: absolute;
top: 4px;
bottom: 18px;
left: 0;
width: 0;
opacity: 0;
pointer-events: none;
transition: opacity 120ms ease, background 120ms ease, border-color 120ms ease;
}
.timeline-selection {
background: var(--timeline-selection-bg);
border: 1px solid var(--timeline-selection-border);
z-index: 0;
}
.timeline-selection.visible {
opacity: 1;
}
.timeline-brush {
background: var(--timeline-brush-bg);
border: 1px solid var(--timeline-brush-border);
z-index: 2;
}
.timeline-brush.visible {
opacity: 1;
}
.timeline-chart::before {
content: none;
}