2020-07-07 05:42:46 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2022-05-04 23:16:38 +08:00
|
|
|
Copyright 2020 - 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
Copyright 2021 - 2022 Šimon Brandner <simon.bra.ag@gmail.com>
|
2020-07-07 05:42:46 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView {
|
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;
|
2022-07-27 21:39:29 +08:00
|
|
|
/* XXX: PiPContainer sets pointer-events: none - should probably be set back in a better place */
|
2020-11-13 02:09:56 +08:00
|
|
|
pointer-events: initial;
|
2021-11-23 18:13:51 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView_toast {
|
2022-05-04 23:16:38 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 74px;
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
padding: 4px 8px;
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
border-radius: 4px;
|
|
|
|
z-index: 50;
|
2020-12-04 01:45:49 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Same on both themes */
|
2022-05-04 23:16:38 +08:00
|
|
|
color: white;
|
|
|
|
background-color: #17191c;
|
2020-12-04 01:45:49 +08:00
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView_content_wrapper {
|
2022-05-04 23:16:38 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2021-11-16 01:24:11 +08:00
|
|
|
|
2021-07-22 00:14:21 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView_content {
|
2022-05-04 23:16:38 +08:00
|
|
|
position: relative;
|
|
|
|
|
2021-07-22 00:30:25 +08:00
|
|
|
display: flex;
|
2022-05-04 23:16:38 +08:00
|
|
|
flex-direction: column;
|
2021-07-22 00:30:25 +08:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-07-22 00:14:21 +08:00
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
flex: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
|
|
padding: 10px;
|
2022-07-27 21:39:29 +08:00
|
|
|
padding-right: calc(20% + 20px); /* Space for the sidebar */
|
2022-05-04 23:16:38 +08:00
|
|
|
|
|
|
|
background-color: $call-view-content-background;
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView_status {
|
2022-05-04 23:16:38 +08:00
|
|
|
z-index: 50;
|
|
|
|
color: $accent-fg-color;
|
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView_avatarsContainer {
|
2022-05-04 23:16:38 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
div {
|
|
|
|
margin-left: 12px;
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView_holdBackground {
|
2022-05-04 23:16:38 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_LegacyCallView_content_hold .mx_LegacyCallView_status {
|
2022-05-04 23:16:38 +08:00
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
content: "";
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
background-image: url("$(res)/img/voip/paused.svg");
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView_pip &::before {
|
2022-05-04 23:16:38 +08:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
}
|
2021-07-22 00:14:21 +08:00
|
|
|
}
|
2022-05-04 23:16:38 +08:00
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&:not(.mx_LegacyCallView_sidebar) .mx_LegacyCallView_content {
|
2022-05-04 23:16:38 +08:00
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.mx_VideoFeed_primary {
|
|
|
|
aspect-ratio: unset;
|
|
|
|
border: 0;
|
2021-07-29 21:05:26 +08:00
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-07-29 21:05:26 +08:00
|
|
|
}
|
2021-07-22 00:14:21 +08:00
|
|
|
}
|
2021-04-16 18:50:23 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_LegacyCallView_pip {
|
2022-05-04 23:16:38 +08:00
|
|
|
width: 320px;
|
|
|
|
padding-bottom: 8px;
|
2020-07-07 05:42:46 +08:00
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
border-radius: 8px;
|
2020-12-08 02:28:43 +08:00
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
background-color: $system;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallViewButtons {
|
2022-05-04 23:16:38 +08:00
|
|
|
bottom: 13px;
|
2020-11-26 22:35:09 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallViewButtons_button {
|
2022-05-04 23:16:38 +08:00
|
|
|
width: 34px;
|
|
|
|
height: 34px;
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_LegacyCallViewButtons_dropdownButton {
|
|
|
|
width: var(--LegacyCallViewButtons_dropdownButton-size);
|
|
|
|
height: var(--LegacyCallViewButtons_dropdownButton-size);
|
2022-05-24 23:49:04 +08:00
|
|
|
}
|
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
&::before {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-17 20:49:43 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallView_content {
|
2022-05-04 23:16:38 +08:00
|
|
|
min-height: 180px;
|
|
|
|
}
|
2020-11-26 22:35:09 +08:00
|
|
|
}
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_LegacyCallView_large {
|
2022-05-04 23:16:38 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2020-10-30 01:56:24 +08:00
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
flex: 1;
|
2020-11-26 22:35:09 +08:00
|
|
|
|
2022-05-04 23:16:38 +08:00
|
|
|
padding-bottom: 10px;
|
2020-11-26 22:35:09 +08:00
|
|
|
|
2023-05-03 17:24:41 +08:00
|
|
|
margin: var(--container-gap-width);
|
2022-07-27 21:39:29 +08:00
|
|
|
/* The left side gap is fully handled by this margin. To prohibit bleeding on webkit browser. */
|
2023-05-03 17:24:41 +08:00
|
|
|
margin-right: calc(var(--container-gap-width) / 2);
|
2022-05-04 23:16:38 +08:00
|
|
|
margin-bottom: 10px;
|
2020-12-08 00:22:57 +08:00
|
|
|
}
|
2020-11-26 22:35:09 +08:00
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&.mx_LegacyCallView_belowWidget {
|
2022-05-04 23:16:38 +08:00
|
|
|
margin-top: 0;
|
2020-11-26 22:35:09 +08:00
|
|
|
}
|
|
|
|
}
|