feat: Add visual scrubber to video editor
Task #69 completed by ClaudeQueue ClaudeQueue
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user