Files
ThreadNet-Web/res/css/views/voip/_CallView.scss
T

377 lines
7.8 KiB
SCSS
Raw Normal View History

2020-07-06 22:42:46 +01:00
/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2020 The Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2020-11-12 18:09:56 +00:00
.mx_CallView {
2020-12-07 15:38:55 +00:00
border-radius: 8px;
2020-12-02 12:14:41 +00:00
background-color: $voipcall-plinth-color;
2020-11-12 18:09:56 +00:00
padding-left: 8px;
padding-right: 8px;
// XXX: CallContainer sets pointer-events: none - should probably be set back in a better place
pointer-events: initial;
}
.mx_CallView_large {
padding-bottom: 10px;
2020-12-10 15:52:03 +00:00
margin: 5px 5px 5px 18px;
2021-03-02 20:33:34 +01:00
display: flex;
flex-direction: column;
flex: 1;
2020-11-12 18:09:56 +00:00
.mx_CallView_voice {
2021-03-02 20:33:34 +01:00
flex: 1;
2020-11-12 18:09:56 +00:00
}
}
.mx_CallView_pip {
width: 320px;
2020-12-18 18:08:04 +00:00
padding-bottom: 8px;
margin-top: 10px;
box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.08);
border-radius: 8px;
2020-11-12 18:09:56 +00:00
.mx_CallView_voice {
2020-11-12 18:12:38 +00:00
height: 180px;
2020-11-12 18:09:56 +00:00
}
2020-12-03 17:45:49 +00:00
.mx_CallView_callControls {
bottom: 0px;
}
.mx_CallView_callControls_button {
&::before {
width: 36px;
height: 36px;
}
}
2020-12-07 17:56:36 +00:00
2021-03-25 19:56:21 +00:00
.mx_CallView_holdTransferContent {
2020-12-07 17:56:36 +00:00
padding-top: 10px;
padding-bottom: 25px;
}
2020-11-12 18:09:56 +00:00
}
.mx_CallView_voice {
2020-11-18 14:22:38 +00:00
position: relative;
2020-11-12 18:09:56 +00:00
display: flex;
2020-11-26 14:35:09 +00:00
flex-direction: column;
2020-11-12 18:09:56 +00:00
align-items: center;
justify-content: center;
background-color: $inverted-bg-color;
2020-12-07 15:38:55 +00:00
border-radius: 8px;
2020-11-12 18:09:56 +00:00
}
.mx_CallView_voice_avatarsContainer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
div {
margin-left: 12px;
margin-right: 12px;
}
}
2021-03-25 19:56:21 +00:00
.mx_CallView_voice .mx_CallView_holdTransferContent {
2020-11-26 14:35:09 +00:00
// This masks the avatar image so when it's blurred, the edge is still crisp
.mx_CallView_voice_avatarContainer {
border-radius: 2000px;
overflow: hidden;
position: relative;
}
}
2021-03-25 19:56:21 +00:00
.mx_CallView_holdTransferContent {
2020-12-01 13:44:24 +00:00
height: 20px;
2020-12-07 15:42:35 +00:00
padding-top: 20px;
2020-12-03 17:45:49 +00:00
padding-bottom: 15px;
2020-11-26 14:35:09 +00:00
color: $accent-fg-color;
.mx_AccessibleButton_hasKind {
padding: 0px;
2020-12-08 19:05:58 +00:00
font-weight: bold;
2020-11-26 14:35:09 +00:00
}
}
2020-10-29 17:56:24 +00:00
.mx_CallView_video {
width: 100%;
2021-03-02 20:33:34 +01:00
height: 100%;
2020-10-29 17:56:24 +00:00
position: relative;
z-index: 30;
2020-12-07 15:38:55 +00:00
border-radius: 8px;
overflow: hidden;
2020-10-29 17:56:24 +00:00
}
2020-11-26 14:35:09 +00:00
.mx_CallView_video_hold {
overflow: hidden;
// we keep these around in the DOM: it saved wiring them up again when the call
// is resumed and keeps the container the right size
.mx_VideoFeed {
visibility: hidden;
}
}
.mx_CallView_video_holdBackground {
position: absolute;
width: 100%;
height: 100%;
left: 0;
right: 0;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
filter: blur(20px);
&::after {
content: '';
display: block;
position: absolute;
width: 100%;
height: 100%;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.6);
}
2020-11-26 14:35:09 +00:00
}
2021-03-25 19:56:21 +00:00
.mx_CallView_video .mx_CallView_holdTransferContent {
2020-11-26 14:35:09 +00:00
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-weight: bold;
color: $accent-fg-color;
text-align: center;
&::before {
display: block;
margin-left: auto;
margin-right: auto;
content: '';
2020-12-01 13:44:24 +00:00
width: 40px;
height: 40px;
2020-11-26 14:35:09 +00:00
background-image: url('$(res)/img/voip/paused.svg');
background-position: center;
background-size: cover;
}
2020-12-01 13:44:24 +00:00
.mx_CallView_pip &::before {
width: 30px;
height: 30px;
}
2020-11-26 14:35:09 +00:00
.mx_AccessibleButton_hasKind {
padding: 0px;
}
}
2020-11-12 18:09:56 +00:00
.mx_CallView_header {
height: 44px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: left;
2021-03-02 20:33:34 +01:00
flex-shrink: 0;
2020-11-12 18:09:56 +00:00
}
.mx_CallView_header_callType {
2020-12-08 19:26:57 +00:00
font-size: 1.2rem;
2020-11-12 18:09:56 +00:00
font-weight: bold;
vertical-align: middle;
}
2020-12-03 17:45:49 +00:00
.mx_CallView_header_secondaryCallInfo {
2020-12-07 17:56:36 +00:00
&::before {
content: '·';
margin-left: 6px;
margin-right: 6px;
2020-12-03 17:45:49 +00:00
}
}
.mx_CallView_header_controls {
2020-11-12 18:09:56 +00:00
margin-left: auto;
}
.mx_CallView_header_button {
2020-11-12 18:09:56 +00:00
display: inline-block;
vertical-align: middle;
cursor: pointer;
&::before {
content: '';
display: inline-block;
height: 20px;
width: 20px;
vertical-align: middle;
background-color: $secondary-fg-color;
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
}
}
.mx_CallView_header_button_fullscreen {
&::before {
2020-11-12 18:09:56 +00:00
mask-image: url('$(res)/img/element-icons/call/fullscreen.svg');
}
}
.mx_CallView_header_button_expand {
&::before {
mask-image: url('$(res)/img/element-icons/call/expand.svg');
}
}
.mx_CallView_header_callInfo {
2020-12-07 17:56:36 +00:00
margin-left: 12px;
margin-right: 16px;
}
2020-11-12 18:09:56 +00:00
.mx_CallView_header_roomName {
font-weight: bold;
font-size: 12px;
line-height: initial;
height: 15px;
2020-12-07 17:56:36 +00:00
}
.mx_CallView_secondaryCall_roomName {
margin-left: 4px;
2020-11-12 18:09:56 +00:00
}
.mx_CallView_header_callTypeSmall {
font-size: 12px;
color: $secondary-fg-color;
line-height: initial;
2020-12-07 17:56:36 +00:00
height: 15px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 240px;
2020-11-12 18:09:56 +00:00
}
.mx_CallView_header_phoneIcon {
display: inline-block;
margin-right: 6px;
height: 16px;
width: 16px;
vertical-align: middle;
&::before {
content: '';
display: inline-block;
vertical-align: top;
height: 16px;
width: 16px;
background-color: $warning-color;
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
mask-image: url('$(res)/img/element-icons/call/voice-call.svg');
}
}
2020-11-18 14:22:38 +00:00
.mx_CallView_callControls {
position: absolute;
display: flex;
justify-content: center;
bottom: 5px;
width: 100%;
opacity: 1;
transition: opacity 0.5s;
}
.mx_CallView_callControls_hidden {
2020-11-23 15:13:19 +00:00
opacity: 0.001; // opacity 0 can cause a re-layout
2020-11-18 14:22:38 +00:00
pointer-events: none;
}
.mx_CallView_callControls_button {
cursor: pointer;
2020-11-19 15:15:31 +00:00
margin-left: 8px;
margin-right: 8px;
2020-11-18 14:22:38 +00:00
&::before {
content: '';
display: inline-block;
height: 48px;
width: 48px;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
}
2021-01-04 20:01:43 +00:00
.mx_CallView_callControls_dialpad {
margin-right: auto;
&::before {
background-image: url('$(res)/img/voip/dialpad.svg');
}
}
.mx_CallView_callControls_button_dialpad_hidden {
2020-11-26 14:35:09 +00:00
margin-right: auto;
cursor: initial;
}
2020-11-18 14:22:38 +00:00
.mx_CallView_callControls_button_micOn {
&::before {
2020-11-23 15:27:37 +00:00
background-image: url('$(res)/img/voip/mic-on.svg');
2020-11-18 14:22:38 +00:00
}
}
.mx_CallView_callControls_button_micOff {
&::before {
2020-11-23 15:27:37 +00:00
background-image: url('$(res)/img/voip/mic-off.svg');
2020-11-18 14:22:38 +00:00
}
}
.mx_CallView_callControls_button_vidOn {
&::before {
2020-11-23 15:27:37 +00:00
background-image: url('$(res)/img/voip/vid-on.svg');
2020-11-18 14:22:38 +00:00
}
}
.mx_CallView_callControls_button_vidOff {
&::before {
2020-11-23 15:27:37 +00:00
background-image: url('$(res)/img/voip/vid-off.svg');
2020-11-18 14:22:38 +00:00
}
}
.mx_CallView_callControls_button_hangup {
&::before {
2020-11-23 15:27:37 +00:00
background-image: url('$(res)/img/voip/hangup.svg');
2020-11-18 14:22:38 +00:00
}
}
2020-11-26 14:35:09 +00:00
.mx_CallView_callControls_button_more {
margin-left: auto;
&::before {
background-image: url('$(res)/img/voip/more.svg');
}
}
.mx_CallView_callControls_button_more_hidden {
margin-left: auto;
cursor: initial;
}
2020-11-18 14:22:38 +00:00
.mx_CallView_callControls_button_invisible {
visibility: hidden;
pointer-events: none;
position: absolute;
}