diff --git a/assets/styles/framework/framework.less b/assets/styles/framework/framework.less index 812d76cf90..9fdd181882 100644 --- a/assets/styles/framework/framework.less +++ b/assets/styles/framework/framework.less @@ -14,6 +14,7 @@ @third-layer-zindex: 30; @fourth-layer-zindex: 40; @fifth-layer-zindex: 50; +@sixth-layer-zindex: 60; @viewport-width: 100vw; #__nuxt, @@ -44,3 +45,6 @@ .fifth-layer { z-index: @fifth-layer-zindex; } +.sixth-layer { + z-index: @sixth-layer-zindex; +} diff --git a/assets/styles/framework/ui.less b/assets/styles/framework/ui.less index fd76d53b45..fe9092db57 100644 --- a/assets/styles/framework/ui.less +++ b/assets/styles/framework/ui.less @@ -7,6 +7,7 @@ @mobile-nav-size: 4.5rem; @slimbar-size: 60px; @chatbar-input-height: 48px; +@background-call-height: 36px; // Popups @enhancers-height: 30rem; diff --git a/components/ui/BackgroundCall/BackgroundCall.html b/components/ui/BackgroundCall/BackgroundCall.html new file mode 100644 index 0000000000..419547eec6 --- /dev/null +++ b/components/ui/BackgroundCall/BackgroundCall.html @@ -0,0 +1,5 @@ +
+ {{$t('ui.background_call')}}  + {{caller.name}}  + - {{elapsedTime}} +
diff --git a/components/ui/BackgroundCall/BackgroundCall.less b/components/ui/BackgroundCall/BackgroundCall.less new file mode 100644 index 0000000000..309cc5c278 --- /dev/null +++ b/components/ui/BackgroundCall/BackgroundCall.less @@ -0,0 +1,24 @@ +.background-call { + &:extend(.background-flair); + &:extend(.font-secondary); + &:extend(.absolute-coverage); + border-radius: 0 0 @corner-rounding @corner-rounding; + height: @background-call-height; + z-index: @fifth-layer-zindex; + font-size: @micro-text-size; + bottom: auto; + text-align: center; + box-shadow: 0px 0px 30px rgba(var(--flair-color-rgb), 0.35), + 0px 0px 20px rgba(var(--flair-color-rgb), 0.4); + padding: 10px 10%; + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + white-space: nowrap; + &-name { + &:extend(.ellipsis); + &:extend(.font-primary); + font-weight: 700; + } +} diff --git a/components/ui/BackgroundCall/BackgroundCall.vue b/components/ui/BackgroundCall/BackgroundCall.vue new file mode 100644 index 0000000000..99f1a46026 --- /dev/null +++ b/components/ui/BackgroundCall/BackgroundCall.vue @@ -0,0 +1,48 @@ + + + + + diff --git a/components/ui/Global/Global.html b/components/ui/Global/Global.html index 93ad3ba13d..7e730f10bf 100644 --- a/components/ui/Global/Global.html +++ b/components/ui/Global/Global.html @@ -91,4 +91,5 @@ + diff --git a/components/ui/Global/Global.vue b/components/ui/Global/Global.vue index 26ba3a7ec2..da2f4bdd52 100644 --- a/components/ui/Global/Global.vue +++ b/components/ui/Global/Global.vue @@ -1,7 +1,7 @@ diff --git a/components/views/navigation/toolbar/Toolbar.html b/components/views/navigation/toolbar/Toolbar.html index e632ce633d..5ba1a1ad14 100644 --- a/components/views/navigation/toolbar/Toolbar.html +++ b/components/views/navigation/toolbar/Toolbar.html @@ -69,7 +69,7 @@ />