summaryrefslogtreecommitdiffstats
path: root/src/components/CallView
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2023-02-23 16:15:02 +0100
committerMaksim Sukharev <antreesy.web@gmail.com>2023-02-23 16:15:02 +0100
commit5710ece9ca77aeccae304fb92d95bec4dc1db9b2 (patch)
tree9c6d83943c2fd4395066bdd6be2deefe9da6422e /src/components/CallView
parent2832023ab6a51ed5b9510c9925bafbb9e33d18ed (diff)
fix styles for local video in stripe
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
Diffstat (limited to 'src/components/CallView')
-rw-r--r--src/components/CallView/Grid/Grid.vue6
-rw-r--r--src/components/CallView/shared/LocalVideo.vue17
2 files changed, 9 insertions, 14 deletions
diff --git a/src/components/CallView/Grid/Grid.vue b/src/components/CallView/Grid/Grid.vue
index e9ec4b638..454db9a62 100644
--- a/src/components/CallView/Grid/Grid.vue
+++ b/src/components/CallView/Grid/Grid.vue
@@ -882,12 +882,8 @@ export default {
padding: 16px;
}
-.local-video-stripe {
- width: 300px;
-}
-
.stripe-wrapper {
- width: calc(100% - 300px);
+ width: 100%;
position: relative;
}
diff --git a/src/components/CallView/shared/LocalVideo.vue b/src/components/CallView/shared/LocalVideo.vue
index 621aeb069..3caca3650 100644
--- a/src/components/CallView/shared/LocalVideo.vue
+++ b/src/components/CallView/shared/LocalVideo.vue
@@ -72,11 +72,7 @@ import attachMediaStream from 'attachmediastream'
import Hex from 'crypto-js/enc-hex.js'
import SHA1 from 'crypto-js/sha1.js'
-import {
- showError,
- showInfo,
- TOAST_PERMANENT_TIMEOUT,
-} from '@nextcloud/dialogs'
+import { showError, showInfo, TOAST_PERMANENT_TIMEOUT } from '@nextcloud/dialogs'
import NcAvatar from '@nextcloud/vue/dist/Components/NcAvatar.js'
@@ -160,7 +156,7 @@ export default {
},
videoWrapperStyle() {
- if (!this.containerAspectRatio || !this.videoAspectRatio) {
+ if (!this.containerAspectRatio || !this.videoAspectRatio || !this.isBig) {
return
}
return (this.containerAspectRatio > this.videoAspectRatio)
@@ -371,13 +367,16 @@ export default {
}
.video-container-stripe:not(.local-video--sidebar) {
- position:relative;
- flex: 0 0 300px;
+ // aspect-ratio is set according to the maximum video resolution after applying constraints (720*540)
+ --aspect-ratio: 1.33333;
+ --stripe-height: 242px;
+ position: relative;
+ flex: 0 0 calc(var(--aspect-ratio) * var(--stripe-height));
overflow: hidden;
display: flex;
flex-direction: column;
margin-top: auto;
- height: 242px !important;
+ height: var(--stripe-height) !important;
}
.video-container-big {