9b72ac9b63
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
54 lines
794 B
CSS
54 lines
794 B
CSS
:host {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.timeline-wrap {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.timeline-svg {
|
|
display: block;
|
|
width: 100%;
|
|
height: 80px;
|
|
}
|
|
|
|
.midline {
|
|
stroke: rgba(255, 255, 255, 0.12);
|
|
stroke-width: 1;
|
|
stroke-dasharray: 4 4;
|
|
}
|
|
|
|
.area-white {
|
|
fill: rgba(255, 255, 255, 0.18);
|
|
}
|
|
|
|
.area-black {
|
|
fill: rgba(20, 20, 30, 0.55);
|
|
}
|
|
|
|
.eval-line {
|
|
fill: none;
|
|
stroke: var(--nc-neon, #ff45c8);
|
|
stroke-width: 1.5;
|
|
stroke-linejoin: round;
|
|
stroke-linecap: round;
|
|
}
|
|
|
|
.active-marker {
|
|
stroke: var(--nc-warning, #ffb13a);
|
|
stroke-width: 1.5;
|
|
stroke-dasharray: 3 3;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.empty {
|
|
font-size: 11px;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
padding: 12px 0;
|
|
font-family: var(--nc-mono, monospace);
|
|
letter-spacing: 0.06em;
|
|
text-align: center;
|
|
}
|