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
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2021-01-25 11:44:55 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2021-01-25 11:44:55 +0300
commit954ec6a4ff045640c1c74dbd011cd0d5d8837a6f (patch)
tree1afd492dbfaa2200df7b6d0d547972b0b4458f74
parent69b9fe6953d3b69a0cff110d616e427a8ef9aa29 (diff)
Fix video background darkener
The darkener was shown behind the background, so the background was not darkened. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--src/components/CallView/shared/VideoBackground.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/CallView/shared/VideoBackground.vue b/src/components/CallView/shared/VideoBackground.vue
index 5574f6c0d..4a0448d2d 100644
--- a/src/components/CallView/shared/VideoBackground.vue
+++ b/src/components/CallView/shared/VideoBackground.vue
@@ -22,11 +22,11 @@
<template>
<div class="video-backgroundbackground">
<div
- ref="darkener"
- class="darken" />
- <div
:style="{'background-color': backgroundColor }"
class="video-background" />
+ <div
+ ref="darkener"
+ class="darken" />
</div>
</template>