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-08-12 22:20:30 +08:00
|
|
|
background-color: $system;
|
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
|
|
|
|
2021-08-14 00:42:55 +08:00
|
|
|
.mx_CallView_video_hold,
|
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
|
|
|
|
2021-08-08 17:20:17 +08:00
|
|
|
.mx_CallViewButtons {
|
2020-12-04 01:45:49 +08:00
|
|
|
bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2021-08-08 17:20:17 +08:00
|
|
|
.mx_CallViewButtons_button {
|
2020-12-04 01:45:49 +08:00
|
|
|
&::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%;
|
2021-08-19 17:05:08 +08:00
|
|
|
border-width: 0 !important; // Override mx_VideoFeed_speaking
|
2021-07-22 00:14:21 +08:00
|
|
|
|
|
|
|
&.mx_VideoFeed_voice {
|
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-18 22:22:38 +08:00
|
|
|
|
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;
|
|
|
|
}
|