Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2021-09-20 14:38:38 +0300
committermarco <marcoambrosini@pm.me>2021-09-20 14:38:38 +0300
commit00566269ad21ad66564ebfe2ffc6fe69a4c09567 (patch)
treef0df0b343000bc5cc63726ff3cdc4a2417bbfe92 /src
parentf514e2aeb074415bb71def6af3c824e4829915ba (diff)
Make the topbar a topbar also in call view
Signed-off-by: marco <marcoambrosini@pm.me>
Diffstat (limited to 'src')
-rw-r--r--src/components/CallView/CallView.vue5
-rw-r--r--src/components/TopBar/TopBar.vue2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/components/CallView/CallView.vue b/src/components/CallView/CallView.vue
index 423eb4ec2..dea7d455c 100644
--- a/src/components/CallView/CallView.vue
+++ b/src/components/CallView/CallView.vue
@@ -678,15 +678,14 @@ export default {
#call-container {
width: 100%;
- height: 100%;
background-color: $color-call-background;
}
#videos {
position: absolute;
width: 100%;
- height: 100%;
- top: 0;
+ height: calc(100% - 60px);
+ top: 60px;
overflow: hidden;
display: -webkit-box;
display: -moz-box;
diff --git a/src/components/TopBar/TopBar.vue b/src/components/TopBar/TopBar.vue
index 6523f250a..05ed56635 100644
--- a/src/components/TopBar/TopBar.vue
+++ b/src/components/TopBar/TopBar.vue
@@ -481,11 +481,11 @@ export default {
&.in-call {
right: 0;
- background-color: transparent;
border: none;
position: absolute;
top: 0;
left:0;
+ background-color: $color-call-background;
.forced-background {
background-color: rgba(0,0,0,0.1) !important;
border-radius: var(--border-radius-pill);