Move silence button

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-24 20:39:44 +02:00
parent 064544369a
commit 396fd2d012
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D
2 changed files with 26 additions and 27 deletions

View file

@ -29,7 +29,6 @@ limitations under the License.
background-color: $voipcall-plinth-color; // To match mx_Toast
pointer-events: initial; // restore pointer events so the user can accept/decline
cursor: pointer;
.mx_IncomingCallToast_content {
display: flex;
@ -119,30 +118,30 @@ limitations under the License.
}
}
}
}
.mx_IncomingCallToast_iconButton {
display: flex;
position: absolute;
right: 8px;
.mx_IncomingCallToast_iconButton {
display: flex;
height: 20px;
width: 20px;
&::before {
content: '';
&::before {
content: '';
height: 20px;
width: 20px;
background-color: $tertiary-fg-color;
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
}
}
.mx_IncomingCallToast_silence::before {
mask-image: url('$(res)/img/voip/silence.svg');
}
.mx_IncomingCallToast_unSilence::before {
mask-image: url('$(res)/img/voip/un-silence.svg');
height: inherit;
width: inherit;
background-color: $tertiary-fg-color;
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
}
}
.mx_IncomingCallToast_silence::before {
mask-image: url('$(res)/img/voip/silence.svg');
}
.mx_IncomingCallToast_unSilence::before {
mask-image: url('$(res)/img/voip/un-silence.svg');
}
}