2020-10-30 21:47:43 +08:00
|
|
|
/*
|
2020-11-05 17:25:52 +08:00
|
|
|
Copyright 2015, 2016, 2020 The Matrix.org Foundation C.I.C.
|
2020-10-30 21:47:43 +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.
|
|
|
|
*/
|
|
|
|
|
2021-07-22 15:06:20 +08:00
|
|
|
.mx_VideoFeed {
|
2021-07-29 21:05:26 +08:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2021-08-19 17:05:08 +08:00
|
|
|
box-sizing: border-box;
|
2021-08-22 15:08:33 +08:00
|
|
|
border: transparent 2px solid;
|
2021-08-22 16:10:05 +08:00
|
|
|
display: flex;
|
2021-07-22 15:06:20 +08:00
|
|
|
|
|
|
|
&.mx_VideoFeed_voice {
|
|
|
|
background-color: $inverted-bg-color;
|
2021-08-04 23:17:21 +08:00
|
|
|
aspect-ratio: 16 / 9;
|
2021-07-22 15:06:20 +08:00
|
|
|
}
|
|
|
|
|
2021-08-19 17:05:08 +08:00
|
|
|
&.mx_VideoFeed_speaking {
|
|
|
|
border: $accent-color 2px solid;
|
2021-08-22 16:10:05 +08:00
|
|
|
|
|
|
|
.mx_VideoFeed_video {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2021-08-19 17:05:08 +08:00
|
|
|
}
|
|
|
|
|
2021-07-29 21:05:26 +08:00
|
|
|
.mx_VideoFeed_video {
|
|
|
|
width: 100%;
|
2021-07-22 15:06:20 +08:00
|
|
|
background-color: transparent;
|
2021-07-29 21:05:26 +08:00
|
|
|
|
|
|
|
&.mx_VideoFeed_video_mirror {
|
|
|
|
transform: scale(-1, 1);
|
|
|
|
}
|
2021-07-22 15:06:20 +08:00
|
|
|
}
|
|
|
|
|
2021-07-29 21:05:26 +08:00
|
|
|
.mx_VideoFeed_mic {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.5); // Same on both themes
|
|
|
|
border-radius: 100%;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
content: "";
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-position: center;
|
|
|
|
background-color: white; // Same on both themes
|
|
|
|
border-radius: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_VideoFeed_mic_muted::before {
|
|
|
|
mask-image: url('$(res)/img/voip/mic-muted.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_VideoFeed_mic_unmuted::before {
|
|
|
|
mask-image: url('$(res)/img/voip/mic-unmuted.svg');
|
|
|
|
}
|
|
|
|
}
|
2020-10-30 21:47:43 +08:00
|
|
|
}
|