aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionStackedTimeline.tsx
diff options
context:
space:
mode:
authormehekj <mehek.jethani@gmail.com>2022-06-15 13:22:37 -0400
committermehekj <mehek.jethani@gmail.com>2022-06-15 13:22:37 -0400
commit7eedde332010c8896be636f0b5c6a7b2c8043e48 (patch)
tree69e3c6284211fbaf8fc51f8b661ca855165c701e /src/client/views/collections/CollectionStackedTimeline.tsx
parentbf3f88f5236a6ebda4ca3b6dc246f98ff404a360 (diff)
made hover time more visible
Diffstat (limited to 'src/client/views/collections/CollectionStackedTimeline.tsx')
-rw-r--r--src/client/views/collections/CollectionStackedTimeline.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackedTimeline.tsx b/src/client/views/collections/CollectionStackedTimeline.tsx
index 850aa5dbe..8bdcfeea9 100644
--- a/src/client/views/collections/CollectionStackedTimeline.tsx
+++ b/src/client/views/collections/CollectionStackedTimeline.tsx
@@ -773,8 +773,8 @@ export class CollectionStackedTimeline extends CollectionSubView<CollectionStack
</div>
</div>
<div className="timeline-hoverUI" style={{ left: `calc(${((this._hoverTime - this.clipStart) / this.clipDuration) * 100}%` }}>
- {this._thumbnail && <img className="videoBox-thumbnail" src={this._thumbnail} />}
<div className="hoverTime">{formatTime(this._hoverTime)}</div>
+ {this._thumbnail && <img className="videoBox-thumbnail" src={this._thumbnail} />}
</div>
</div >);
}