diff options
author | bobzel <zzzman@gmail.com> | 2022-09-14 00:50:56 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-09-14 00:50:56 -0400 |
commit | 1da52ab07177252d1b4ea08f21a773d539a3722c (patch) | |
tree | e072f5a0b92fc4ccd2fa279c1d41ac52837ca4b0 /src | |
parent | d4656b108813ed4719bd3174ca093b43e440f787 (diff) |
made video box controls appear when video is in overlay view
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/nodes/VideoBox.scss | 2 | ||||
-rw-r--r-- | src/client/views/nodes/trails/PresElementBox.tsx | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/VideoBox.scss b/src/client/views/nodes/VideoBox.scss index c2aee7a1b..5e1359441 100644 --- a/src/client/views/nodes/VideoBox.scss +++ b/src/client/views/nodes/VideoBox.scss @@ -83,6 +83,8 @@ .videoBox-ui-wrapper { width: 0; height: 0; + position: relative; + z-index: 100001; } .videoBox-ui { diff --git a/src/client/views/nodes/trails/PresElementBox.tsx b/src/client/views/nodes/trails/PresElementBox.tsx index 215bede96..e3f93c637 100644 --- a/src/client/views/nodes/trails/PresElementBox.tsx +++ b/src/client/views/nodes/trails/PresElementBox.tsx @@ -405,7 +405,6 @@ export class PresElementBox extends ViewBoxBaseComponent<FieldViewProps>() { @action startRecording = (e: React.MouseEvent, activeItem: Doc) => { e.stopPropagation(); - console.log('start recording', 'activeItem', activeItem); if (PresElementBox.videoIsRecorded(activeItem)) { // if we already have an existing recording this.showRecording(activeItem, true); |