2020-07-07 05:42:46 +08: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-13 02:09:56 +08:00
|
|
|
.mx_CallView {
|
2020-12-07 23:38:55 +08:00
|
|
|
border-radius: 8px;
|
2021-03-01 19:53:10 +08:00
|
|
|
background-color: $dark-panel-bg-color;
|
2020-11-13 02:09:56 +08: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;
|
|
|
|
}
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2020-11-13 02:09:56 +08:00
|
|
|
.mx_CallView_large {
|
|
|
|
padding-bottom: 10px;
|
2020-12-10 23:52:03 +08:00
|
|
|
margin: 5px 5px 5px 18px;
|
2021-03-03 03:33:34 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2020-11-13 02:09:56 +08:00
|
|
|
.mx_CallView_voice {
|
2021-03-03 03:33:34 +08:00
|
|
|
flex: 1;
|
2020-07-07 05:42:46 +08:00
|
|
|
}
|
2020-11-13 02:09:56 +08:00
|
|
|
}
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2020-11-13 02:09:56 +08:00
|
|
|
.mx_CallView_pip {
|
|
|
|
width: 320px;
|
2020-12-19 02:08:04 +08:00
|
|
|
padding-bottom: 8px;
|
2021-07-26 19:17:06 +08:00
|
|
|
background-color: $toast-bg-color;
|
2021-04-27 21:27:11 +08:00
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.20);
|
2020-12-19 02:08:04 +08:00
|
|
|
border-radius: 8px;
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2020-11-13 02:09:56 +08:00
|
|
|
.mx_CallView_voice {
|
2020-11-13 02:12:38 +08:00
|
|
|
height: 180px;
|
2020-07-07 05:42:46 +08:00
|
|
|
}
|
2020-12-04 01:45:49 +08:00
|
|
|
|
|
|
|
.mx_CallView_callControls {
|
|
|
|
bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_callControls_button {
|
|
|
|
&::before {
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
}
|
|
|
|
}
|
2020-12-08 01:56:36 +08:00
|
|
|
|
2021-03-26 03:56:21 +08:00
|
|
|
.mx_CallView_holdTransferContent {
|
2020-12-08 01:56:36 +08:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
}
|
2020-11-13 02:09:56 +08:00
|
|
|
}
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2021-04-16 18:50:23 +08:00
|
|
|
.mx_CallView_content {
|
2020-11-18 22:22:38 +08:00
|
|
|
position: relative;
|
2020-11-13 02:09:56 +08:00
|
|
|
display: flex;
|
2021-06-12 17:50:16 +08:00
|
|
|
justify-content: center;
|
2021-04-16 18:50:23 +08:00
|
|
|
border-radius: 8px;
|
2021-07-22 00:14:21 +08:00
|
|
|
|
|
|
|
> .mx_VideoFeed {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&.mx_VideoFeed_voice {
|
|
|
|
// We don't want to collide with the call controls that have 52px of height
|
2021-07-29 21:05:26 +08:00
|
|
|
margin-bottom: 52px;
|
2021-07-22 00:14:21 +08:00
|
|
|
background-color: $inverted-bg-color;
|
2021-07-22 00:30:25 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-07-22 00:14:21 +08:00
|
|
|
}
|
|
|
|
|
2021-07-29 21:05:26 +08:00
|
|
|
.mx_VideoFeed_video {
|
|
|
|
height: 100%;
|
2021-07-22 00:14:21 +08:00
|
|
|
background-color: #000;
|
|
|
|
}
|
2021-07-29 21:05:26 +08:00
|
|
|
|
|
|
|
.mx_VideoFeed_mic {
|
|
|
|
left: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
2021-07-22 00:14:21 +08:00
|
|
|
}
|
2021-04-16 18:50:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_voice {
|
2020-11-13 02:09:56 +08:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-04-16 18:50:23 +08:00
|
|
|
flex-direction: column;
|
2020-11-13 02:09:56 +08:00
|
|
|
background-color: $inverted-bg-color;
|
|
|
|
}
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2020-12-08 02:28:43 +08: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-26 03:56:21 +08:00
|
|
|
.mx_CallView_voice .mx_CallView_holdTransferContent {
|
2020-11-26 22:35:09 +08: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-26 03:56:21 +08:00
|
|
|
.mx_CallView_holdTransferContent {
|
2020-12-01 21:44:24 +08:00
|
|
|
height: 20px;
|
2020-12-07 23:42:35 +08:00
|
|
|
padding-top: 20px;
|
2020-12-04 01:45:49 +08:00
|
|
|
padding-bottom: 15px;
|
2020-11-26 22:35:09 +08:00
|
|
|
color: $accent-fg-color;
|
|
|
|
.mx_AccessibleButton_hasKind {
|
|
|
|
padding: 0px;
|
2020-12-09 03:05:58 +08:00
|
|
|
font-weight: bold;
|
2020-11-26 22:35:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-30 01:56:24 +08:00
|
|
|
.mx_CallView_video {
|
|
|
|
width: 100%;
|
2021-03-03 03:33:34 +08:00
|
|
|
height: 100%;
|
2020-10-30 01:56:24 +08:00
|
|
|
z-index: 30;
|
2020-12-07 23:38:55 +08:00
|
|
|
overflow: hidden;
|
2020-10-30 01:56:24 +08:00
|
|
|
}
|
|
|
|
|
2020-11-26 22:35:09 +08: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);
|
2020-12-08 00:22:57 +08:00
|
|
|
&::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 22:35:09 +08:00
|
|
|
}
|
|
|
|
|
2021-03-26 03:56:21 +08:00
|
|
|
.mx_CallView_video .mx_CallView_holdTransferContent {
|
2020-11-26 22:35:09 +08: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 21:44:24 +08:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2020-11-26 22:35:09 +08:00
|
|
|
background-image: url('$(res)/img/voip/paused.svg');
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
2020-12-01 21:44:24 +08:00
|
|
|
.mx_CallView_pip &::before {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
2020-11-26 22:35:09 +08:00
|
|
|
.mx_AccessibleButton_hasKind {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-13 02:09:56 +08:00
|
|
|
.mx_CallView_header {
|
|
|
|
height: 44px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: left;
|
2021-03-03 03:33:34 +08:00
|
|
|
flex-shrink: 0;
|
2021-08-04 23:25:12 +08:00
|
|
|
cursor: pointer;
|
2020-11-13 02:09:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_header_callType {
|
2020-12-09 03:26:57 +08:00
|
|
|
font-size: 1.2rem;
|
2020-11-13 02:09:56 +08:00
|
|
|
font-weight: bold;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2020-12-04 01:45:49 +08:00
|
|
|
.mx_CallView_header_secondaryCallInfo {
|
2020-12-08 01:56:36 +08:00
|
|
|
&::before {
|
|
|
|
content: '·';
|
|
|
|
margin-left: 6px;
|
|
|
|
margin-right: 6px;
|
2020-12-04 01:45:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_header_controls {
|
2020-11-13 02:09:56 +08:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2020-11-20 00:36:23 +08:00
|
|
|
.mx_CallView_header_button {
|
2020-11-13 02:09:56 +08: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;
|
2020-11-20 00:36:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_header_button_fullscreen {
|
|
|
|
&::before {
|
2020-11-13 02:09:56 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/call/fullscreen.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-20 00:36:23 +08:00
|
|
|
.mx_CallView_header_button_expand {
|
|
|
|
&::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/call/expand.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-05 04:36:08 +08:00
|
|
|
.mx_CallView_header_callInfo {
|
2020-12-08 01:56:36 +08:00
|
|
|
margin-left: 12px;
|
2020-12-05 04:36:08 +08:00
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
2020-11-13 02:09:56 +08:00
|
|
|
.mx_CallView_header_roomName {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: initial;
|
2020-12-05 04:36:08 +08:00
|
|
|
height: 15px;
|
2020-12-08 01:56:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_secondaryCall_roomName {
|
|
|
|
margin-left: 4px;
|
2020-11-13 02:09:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_header_callTypeSmall {
|
|
|
|
font-size: 12px;
|
|
|
|
color: $secondary-fg-color;
|
|
|
|
line-height: initial;
|
2020-12-08 01:56:36 +08:00
|
|
|
height: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 240px;
|
2020-11-13 02:09:56 +08:00
|
|
|
}
|
|
|
|
|
2021-07-25 23:24:18 +08:00
|
|
|
.mx_CallView_header_callTypeIcon {
|
2020-11-13 02:09:56 +08:00
|
|
|
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;
|
2021-07-25 23:24:18 +08:00
|
|
|
background-color: $secondary-fg-color;
|
2020-11-13 02:09:56 +08:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-position: center;
|
2021-07-25 23:24:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_CallView_header_callTypeIcon_voice::before {
|
2020-11-13 02:09:56 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/call/voice-call.svg');
|
|
|
|
}
|
2021-07-25 23:24:18 +08:00
|
|
|
|
|
|
|
&.mx_CallView_header_callTypeIcon_video::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/call/video-call.svg');
|
|
|
|
}
|
2020-11-13 02:09:56 +08:00
|
|
|
}
|
2020-11-18 22:22:38 +08:00
|
|
|
|
|
|
|
.mx_CallView_callControls {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
bottom: 5px;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.5s;
|
2021-05-10 19:06:25 +08:00
|
|
|
z-index: 200; // To be above _all_ feeds
|
2020-11-18 22:22:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_callControls_hidden {
|
2020-11-23 23:13:19 +08:00
|
|
|
opacity: 0.001; // opacity 0 can cause a re-layout
|
2020-11-18 22:22:38 +08:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2021-06-12 17:50:16 +08:00
|
|
|
.mx_CallView_presenting {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.5s;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
margin-top: 18px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
// Same on both themes
|
|
|
|
color: white;
|
|
|
|
background-color: #17191c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_presenting_hidden {
|
|
|
|
opacity: 0.001; // opacity 0 can cause a re-layout
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2020-11-18 22:22:38 +08:00
|
|
|
.mx_CallView_callControls_button {
|
|
|
|
cursor: pointer;
|
2021-07-20 23:22:36 +08:00
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: 2px;
|
2020-11-19 23:15:31 +08:00
|
|
|
|
2020-11-18 22:22:38 +08:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
height: 48px;
|
|
|
|
width: 48px;
|
|
|
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-05 04:01:43 +08:00
|
|
|
.mx_CallView_callControls_dialpad {
|
|
|
|
&::before {
|
|
|
|
background-image: url('$(res)/img/voip/dialpad.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-18 22:22:38 +08:00
|
|
|
.mx_CallView_callControls_button_micOn {
|
|
|
|
&::before {
|
2020-11-23 23:27:37 +08:00
|
|
|
background-image: url('$(res)/img/voip/mic-on.svg');
|
2020-11-18 22:22:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_callControls_button_micOff {
|
|
|
|
&::before {
|
2020-11-23 23:27:37 +08:00
|
|
|
background-image: url('$(res)/img/voip/mic-off.svg');
|
2020-11-18 22:22:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_callControls_button_vidOn {
|
|
|
|
&::before {
|
2020-11-23 23:27:37 +08:00
|
|
|
background-image: url('$(res)/img/voip/vid-on.svg');
|
2020-11-18 22:22:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_callControls_button_vidOff {
|
|
|
|
&::before {
|
2020-11-23 23:27:37 +08:00
|
|
|
background-image: url('$(res)/img/voip/vid-off.svg');
|
2020-11-18 22:22:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-08 02:29:45 +08:00
|
|
|
.mx_CallView_callControls_button_screensharingOn {
|
|
|
|
&::before {
|
|
|
|
background-image: url('$(res)/img/voip/screensharing-on.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_callControls_button_screensharingOff {
|
|
|
|
&::before {
|
|
|
|
background-image: url('$(res)/img/voip/screensharing-off.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-12 23:20:13 +08:00
|
|
|
.mx_CallView_callControls_button_sidebarOn {
|
|
|
|
&::before {
|
|
|
|
background-image: url('$(res)/img/voip/sidebar-on.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_callControls_button_sidebarOff {
|
|
|
|
&::before {
|
|
|
|
background-image: url('$(res)/img/voip/sidebar-off.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-18 22:22:38 +08:00
|
|
|
.mx_CallView_callControls_button_hangup {
|
|
|
|
&::before {
|
2020-11-23 23:27:37 +08:00
|
|
|
background-image: url('$(res)/img/voip/hangup.svg');
|
2020-11-18 22:22:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 22:35:09 +08:00
|
|
|
.mx_CallView_callControls_button_more {
|
|
|
|
&::before {
|
|
|
|
background-image: url('$(res)/img/voip/more.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-18 22:22:38 +08:00
|
|
|
.mx_CallView_callControls_button_invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
}
|