feat: Add visual scrubber to video editor

Task #69 completed by ClaudeQueue

ClaudeQueue
This commit is contained in:
Claude Worker
2026-07-18 17:50:27 +00:00
parent 8c0776f97d
commit 046aa67108
2 changed files with 56 additions and 0 deletions

View File

@@ -2259,3 +2259,29 @@ input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.25); }
box-shadow: 0 2px 6px -2px var(--accent-glow);
}
.saved-card.custom .thumb { position: relative; }
/* Video Editor Scrubber */
.ve-scrubber-track {
height: 30px;
background: var(--bg-3);
border: 1px solid var(--line);
border-radius: var(--radius-sm);
position: relative;
cursor: pointer;
margin: 10px 0;
}
.ve-scrubber-bar {
height: 100%;
background: var(--bg-2);
border-radius: var(--radius-sm);
}
.ve-marker {
position: absolute;
top: 0;
width: 4px;
height: 100%;
background: var(--accent);
pointer-events: none;
}
.ve-marker-a { left: 0; }
.ve-marker-b { right: 0; }