2020-07-06 23:42:46 +02: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 19:09:56 +01:00
|
|
|
.mx_CallView {
|
2020-12-07 16:38:55 +01:00
|
|
|
border-radius: 8px;
|
2021-03-01 12:53:10 +01:00
|
|
|
background-color: $dark-panel-bg-color;
|
2020-11-12 19:09:56 +01:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
2022-01-13 12:10:41 +01:00
|
|
|
// XXX: PiPContainer sets pointer-events: none - should probably be set back in a better place
|
2020-11-12 19:09:56 +01:00
|
|
|
pointer-events: initial;
|
|
|
|
}
|
2020-07-06 23:42:46 +02:00
|
|
|
|
2020-11-12 19:09:56 +01:00
|
|
|
.mx_CallView_large {
|
|
|
|
padding-bottom: 10px;
|
2021-12-06 13:10:52 +01:00
|
|
|
margin: $container-gap-width;
|
2022-01-13 12:10:41 +01:00
|
|
|
// The left side gap is fully handled by this margin. To prohibit bleeding on webkit browser.
|
|
|
|
margin-right: calc($container-gap-width / 2);
|
2021-12-06 13:10:52 +01:00
|
|
|
margin-bottom: 10px;
|
2021-03-02 20:33:34 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
2020-07-06 23:42:46 +02:00
|
|
|
|
2020-11-12 19:09:56 +01:00
|
|
|
.mx_CallView_voice {
|
2021-03-02 20:33:34 +01:00
|
|
|
flex: 1;
|
2020-07-06 23:42:46 +02:00
|
|
|
}
|
2021-11-23 11:13:51 +01:00
|
|
|
|
|
|
|
&.mx_CallView_belowWidget {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2020-11-12 19:09:56 +01:00
|
|
|
}
|
2020-07-06 23:42:46 +02:00
|
|
|
|
2020-11-12 19:09:56 +01:00
|
|
|
.mx_CallView_pip {
|
|
|
|
width: 320px;
|
2020-12-18 19:08:04 +01:00
|
|
|
padding-bottom: 8px;
|
2021-08-12 16:20:30 +02:00
|
|
|
background-color: $system;
|
2022-01-13 12:10:41 +01:00
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
|
2020-12-18 19:08:04 +01:00
|
|
|
border-radius: 8px;
|
2020-07-06 23:42:46 +02:00
|
|
|
|
2021-08-13 18:42:55 +02:00
|
|
|
.mx_CallView_video_hold,
|
2020-11-12 19:09:56 +01:00
|
|
|
.mx_CallView_voice {
|
2020-11-12 19:12:38 +01:00
|
|
|
height: 180px;
|
2020-07-06 23:42:46 +02:00
|
|
|
}
|
2020-12-03 18:45:49 +01:00
|
|
|
|
2021-08-08 11:20:17 +02:00
|
|
|
.mx_CallViewButtons {
|
2021-11-15 18:24:11 +01:00
|
|
|
bottom: 13px;
|
2020-12-03 18:45:49 +01:00
|
|
|
}
|
|
|
|
|
2021-08-08 11:20:17 +02:00
|
|
|
.mx_CallViewButtons_button {
|
2021-11-15 18:24:11 +01:00
|
|
|
width: 34px;
|
|
|
|
height: 34px;
|
|
|
|
|
2020-12-03 18:45:49 +01:00
|
|
|
&::before {
|
2021-11-15 18:24:11 +01:00
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
2020-12-03 18:45:49 +01:00
|
|
|
}
|
|
|
|
}
|
2020-12-07 18:56:36 +01:00
|
|
|
|
2021-03-25 20:56:21 +01:00
|
|
|
.mx_CallView_holdTransferContent {
|
2020-12-07 18:56:36 +01:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 25px;
|
|
|
|
}
|
2020-11-12 19:09:56 +01:00
|
|
|
}
|
2020-07-06 23:42:46 +02:00
|
|
|
|
2021-04-16 12:50:23 +02:00
|
|
|
.mx_CallView_content {
|
2020-11-18 15:22:38 +01:00
|
|
|
position: relative;
|
2020-11-12 19:09:56 +01:00
|
|
|
display: flex;
|
2021-06-12 11:50:16 +02:00
|
|
|
justify-content: center;
|
2021-04-16 12:50:23 +02:00
|
|
|
border-radius: 8px;
|
2021-07-21 18:14:21 +02:00
|
|
|
|
|
|
|
> .mx_VideoFeed {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&.mx_VideoFeed_voice {
|
2021-07-21 18:30:25 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-07-21 18:14:21 +02:00
|
|
|
}
|
|
|
|
|
2021-07-29 15:05:26 +02:00
|
|
|
.mx_VideoFeed_video {
|
|
|
|
height: 100%;
|
2021-07-21 18:14:21 +02:00
|
|
|
background-color: #000;
|
|
|
|
}
|
2021-07-29 15:05:26 +02:00
|
|
|
|
|
|
|
.mx_VideoFeed_mic {
|
|
|
|
left: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
2021-07-21 18:14:21 +02:00
|
|
|
}
|
2021-04-16 12:50:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_CallView_voice {
|
2020-11-12 19:09:56 +01:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-04-16 12:50:23 +02:00
|
|
|
flex-direction: column;
|
2020-11-12 19:09:56 +01:00
|
|
|
background-color: $inverted-bg-color;
|
|
|
|
}
|
2020-07-06 23:42:46 +02:00
|
|
|
|
2020-12-07 19:28:43 +01: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 20:56:21 +01:00
|
|
|
.mx_CallView_voice .mx_CallView_holdTransferContent {
|
2020-11-26 15:35:09 +01: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 20:56:21 +01:00
|
|
|
.mx_CallView_holdTransferContent {
|
2020-12-01 14:44:24 +01:00
|
|
|
height: 20px;
|
2020-12-07 16:42:35 +01:00
|
|
|
padding-top: 20px;
|
2020-12-03 18:45:49 +01:00
|
|
|
padding-bottom: 15px;
|
2020-11-26 15:35:09 +01:00
|
|
|
color: $accent-fg-color;
|
2021-11-17 13:49:43 +01:00
|
|
|
user-select: none;
|
|
|
|
|
2020-11-26 15:35:09 +01:00
|
|
|
.mx_AccessibleButton_hasKind {
|
|
|
|
padding: 0px;
|
2020-12-08 20:05:58 +01:00
|
|
|
font-weight: bold;
|
2020-11-26 15:35:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-29 18:56:24 +01:00
|
|
|
.mx_CallView_video {
|
|
|
|
width: 100%;
|
2021-03-02 20:33:34 +01:00
|
|
|
height: 100%;
|
2020-10-29 18:56:24 +01:00
|
|
|
z-index: 30;
|
2020-12-07 16:38:55 +01:00
|
|
|
overflow: hidden;
|
2020-10-29 18:56:24 +01:00
|
|
|
}
|
|
|
|
|
2020-11-26 15:35:09 +01: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-07 17:22:57 +01:00
|
|
|
&::after {
|
2022-01-13 12:10:41 +01:00
|
|
|
content: "";
|
2020-12-07 17:22:57 +01:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
|
}
|
2020-11-26 15:35:09 +01:00
|
|
|
}
|
|
|
|
|
2021-03-25 20:56:21 +01:00
|
|
|
.mx_CallView_video .mx_CallView_holdTransferContent {
|
2020-11-26 15:35:09 +01: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;
|
2022-01-13 12:10:41 +01:00
|
|
|
content: "";
|
2020-12-01 14:44:24 +01:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2022-01-13 12:10:41 +01:00
|
|
|
background-image: url("$(res)/img/voip/paused.svg");
|
2020-11-26 15:35:09 +01:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
2020-12-01 14:44:24 +01:00
|
|
|
.mx_CallView_pip &::before {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
2020-11-26 15:35:09 +01:00
|
|
|
.mx_AccessibleButton_hasKind {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-12 11:50:16 +02:00
|
|
|
.mx_CallView_presenting {
|
|
|
|
position: absolute;
|
|
|
|
margin-top: 18px;
|
|
|
|
padding: 4px 8px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
// Same on both themes
|
|
|
|
color: white;
|
|
|
|
background-color: #17191c;
|
|
|
|
}
|