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:
authorJoas Schilling <coding@schilljs.com>2021-11-16 19:35:14 +0300
committerJoas Schilling <coding@schilljs.com>2021-11-16 19:39:40 +0300
commit9adffcff1cd326a644250d6bb49e17cd63794fbe (patch)
tree265e628504494c3ce90aa14d2398c4054bc52f1a /src/PublicShareAuthSidebar.vue
parent091575237c17945b37c7c72ba53c5ad85b1961ae (diff)
Add the topbar in the video verification
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/PublicShareAuthSidebar.vue')
-rw-r--r--src/PublicShareAuthSidebar.vue9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/PublicShareAuthSidebar.vue b/src/PublicShareAuthSidebar.vue
index 4a06205f3..ef956d991 100644
--- a/src/PublicShareAuthSidebar.vue
+++ b/src/PublicShareAuthSidebar.vue
@@ -28,6 +28,9 @@
<h2>{{ t('spreed', 'This conversation has ended') }}</h2>
</div>
<template v-else>
+ <TopBar
+ :is-in-call="true"
+ :is-sidebar="true" />
<CallView :token="token" :is-sidebar="true" />
<ChatView />
</template>
@@ -40,6 +43,7 @@ import { getCurrentUser } from '@nextcloud/auth'
import { loadState } from '@nextcloud/initial-state'
import CallView from './components/CallView/CallView'
import ChatView from './components/ChatView'
+import TopBar from './components/TopBar/TopBar'
import { EventBus } from './services/EventBus'
import {
leaveConversationSync,
@@ -55,6 +59,7 @@ export default {
components: {
CallView,
ChatView,
+ TopBar,
},
mixins: [
@@ -185,6 +190,8 @@ export default {
</script>
<style lang="scss" scoped>
+@import './assets/variables.scss';
+
/* Properties based on the app-sidebar */
#talk-sidebar {
position: relative;
@@ -244,7 +251,7 @@ export default {
height: 50%;
/* Ensure that the background will be black also in voice only calls. */
- background-color: #000;
+ background-color: $color-call-background;
}
#talk-sidebar #call-container ::v-deep .videoContainer {