diff options
| author | bobzel <zzzman@gmail.com> | 2021-02-10 10:35:34 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-02-10 10:35:34 -0500 |
| commit | 861363c59997db5cde1b96786b156b64630465d7 (patch) | |
| tree | 36bba36353d933c8e1487f252b870e472cb18be5 /src/client/views/nodes/VideoBox.tsx | |
| parent | 522b9a4a1a59cfb6ab181354e996ffde8ce97049 (diff) | |
fixed some z-index issues with lightbox and typing new notes + videobox zooming zindex
Diffstat (limited to 'src/client/views/nodes/VideoBox.tsx')
| -rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index 324861573..a821eb7c2 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -489,7 +489,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps, VideoD setAnchorTime = (time: number) => this.player!.currentTime = this.layoutDoc._currentTimecode = time; timelineHeight = () => this.props.PanelHeight() * (100 - this.heightPercent) / 100; @computed get renderTimeline() { - return <div style={{ width: "100%", transition: this.transition, height: `${100 - this.heightPercent}%`, position: "absolute" }}> + return <div className="videoBox-stackPanel" style={{ transition: this.transition, height: `${100 - this.heightPercent}%` }}> <CollectionStackedTimeline ref={this._stackedTimeline} {...this.props} fieldKey={this.annotationKey} renderDepth={this.props.renderDepth + 1} |
