mirror of https://github.com/vector-im/riot-web
Move silence button
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
064544369a
commit
396fd2d012
|
@ -29,7 +29,6 @@ limitations under the License.
|
||||||
background-color: $voipcall-plinth-color; // To match mx_Toast
|
background-color: $voipcall-plinth-color; // To match mx_Toast
|
||||||
|
|
||||||
pointer-events: initial; // restore pointer events so the user can accept/decline
|
pointer-events: initial; // restore pointer events so the user can accept/decline
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
.mx_IncomingCallToast_content {
|
.mx_IncomingCallToast_content {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -119,30 +118,30 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.mx_IncomingCallToast_iconButton {
|
.mx_IncomingCallToast_iconButton {
|
||||||
display: flex;
|
display: flex;
|
||||||
position: absolute;
|
height: 20px;
|
||||||
right: 8px;
|
width: 20px;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: '';
|
content: '';
|
||||||
|
|
||||||
height: 20px;
|
height: inherit;
|
||||||
width: 20px;
|
width: inherit;
|
||||||
background-color: $tertiary-fg-color;
|
background-color: $tertiary-fg-color;
|
||||||
mask-repeat: no-repeat;
|
mask-repeat: no-repeat;
|
||||||
mask-size: contain;
|
mask-size: contain;
|
||||||
mask-position: center;
|
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');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.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');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -113,11 +113,6 @@ export default class IncomingCallToast extends React.Component<IProps, IState> {
|
||||||
<div className="mx_CallEvent_type_icon" />
|
<div className="mx_CallEvent_type_icon" />
|
||||||
{ isVoice ? _t("Voice call") : _t("Video call") }
|
{ isVoice ? _t("Voice call") : _t("Video call") }
|
||||||
</div>
|
</div>
|
||||||
<AccessibleTooltipButton
|
|
||||||
className={silenceClass}
|
|
||||||
onClick={this.onSilenceClick}
|
|
||||||
title={this.state.silenced ? _t("Sound on") : _t("Silence call")}
|
|
||||||
/>
|
|
||||||
<div className="mx_IncomingCallToast_buttons">
|
<div className="mx_IncomingCallToast_buttons">
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
className="mx_IncomingCallToast_button mx_IncomingCallToast_button_decline"
|
className="mx_IncomingCallToast_button mx_IncomingCallToast_button_decline"
|
||||||
|
@ -135,6 +130,11 @@ export default class IncomingCallToast extends React.Component<IProps, IState> {
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<AccessibleTooltipButton
|
||||||
|
className={silenceClass}
|
||||||
|
onClick={this.onSilenceClick}
|
||||||
|
title={this.state.silenced ? _t("Sound on") : _t("Silence call")}
|
||||||
|
/>
|
||||||
</React.Fragment>;
|
</React.Fragment>;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue