Add ability to change audio and video devices during a call (#7173)

This commit is contained in:
Šimon Brandner 2022-05-04 16:41:56 +02:00 committed by GitHub
parent ce3bc9dc07
commit 3c36a7f704
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 247 additions and 24 deletions

View file

@ -46,6 +46,10 @@ limitations under the License.
justify-content: center;
align-items: center;
position: relative;
box-shadow: 0px 4px 4px 0px #00000026; // Same on both themes
&::before {
content: '';
display: inline-block;
@ -60,6 +64,25 @@ limitations under the License.
width: 24px;
}
&.mx_CallViewButtons_dropdownButton {
width: 16px;
height: 16px;
position: absolute;
right: 0;
bottom: 0;
&::before {
width: 14px;
height: 14px;
mask-image: url('$(res)/img/element-icons/message/chevron-up.svg');
}
&.mx_CallViewButtons_dropdownButton_collapsed::before {
transform: rotate(180deg);
}
}
// State buttons
&.mx_CallViewButtons_button_on {
background-color: $call-view-button-on-background;