Files
ThreadNet-Web/res/css/views/voip/_DialPadModal.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-12-23 19:02:01 +00:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2020-12-23 19:02:01 +00:00
Copyright 2020 The Matrix.org Foundation C.I.C.
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
2020-12-23 19:02:01 +00:00
*/
.mx_Dialog_dialPadWrapper .mx_Dialog {
padding: 0px;
}
.mx_DialPadModal {
width: 292px;
height: 370px;
padding: 16px 0px 0px 0px;
2020-12-23 19:02:01 +00:00
}
.mx_DialPadModal_header {
margin-top: 32px;
margin-left: 40px;
margin-right: 40px;
/* a separator between the input line and the dial buttons */
2021-08-12 11:20:30 +02:00
border-bottom: 1px solid $quaternary-content;
transition: border-bottom 0.25s;
}
.mx_DialPadModal_header:focus-within {
2021-11-11 14:37:29 +01:00
border-bottom: 1px solid $accent;
2020-12-23 19:02:01 +00:00
}
.mx_DialPadModal_title {
color: $muted-fg-color;
font-size: 12px;
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2020-12-23 19:02:01 +00:00
}
.mx_DialPadModal_cancel {
2022-05-07 19:08:00 +00:00
@mixin customisedCancelButton;
2020-12-23 19:02:01 +00:00
float: right;
margin-right: 16px;
2020-12-23 19:02:01 +00:00
}
.mx_DialPadModal_field {
border: none;
margin: 0px;
height: 30px;
}
.mx_DialPadModal_field .mx_Field_postfix {
/* Remove border separator between postfix and field content */
border-left: none;
2020-12-23 19:02:01 +00:00
}
.mx_DialPadModal_field input {
font-size: 18px;
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2020-12-23 19:02:01 +00:00
}
.mx_DialPadModal_dialPad {
margin-left: 16px;
margin-right: 16px;
margin-top: 16px;
}