feat: Add scrubber with A/B markers for video editing/downloading

This commit is contained in:
Claude Worker
2026-07-18 17:59:20 +00:00
parent 046aa67108
commit 70460232f0
2 changed files with 35 additions and 6 deletions

View File

@@ -2278,10 +2278,17 @@ input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.25); }
.ve-marker {
position: absolute;
top: 0;
width: 4px;
width: 20px;
height: 100%;
background: var(--accent);
pointer-events: none;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 10px;
font-weight: bold;
cursor: pointer;
pointer-events: auto;
}
.ve-marker-a { left: 0; }
.ve-marker-b { right: 0; }