feat(platform): link trajectory playback selection

This commit is contained in:
lingniu
2026-07-04 18:04:45 +08:00
parent 89e954cad9
commit 483d92719b
3 changed files with 69 additions and 4 deletions

View File

@@ -687,11 +687,33 @@ body {
}
.vp-playback-step {
text-align: left;
min-height: 112px;
padding: 12px;
border: 1px solid var(--vp-border);
border-radius: var(--vp-radius);
background: #fbfcff;
color: inherit;
cursor: pointer;
transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.vp-playback-step:hover,
.vp-playback-step:focus-visible {
border-color: rgba(22, 100, 255, 0.42);
box-shadow: 0 0 0 3px rgba(22, 100, 255, 0.08);
outline: none;
}
.vp-playback-step-active {
border-color: rgba(22, 100, 255, 0.72);
background: #eef5ff;
box-shadow: inset 3px 0 0 #1664ff;
}
.vp-playback-range {
width: 100%;
accent-color: #1664ff;
}
.vp-json {