2020-12-24 03:02:01 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-12-24 03:02:01 +08:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08: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-24 03:02:01 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_Dialog_dialPadWrapper .mx_Dialog {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal {
|
2021-07-15 16:55:58 +08:00
|
|
|
width: 292px;
|
|
|
|
height: 370px;
|
|
|
|
padding: 16px 0px 0px 0px;
|
2020-12-24 03:02:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal_header {
|
2021-07-15 16:55:58 +08:00
|
|
|
margin-top: 32px;
|
|
|
|
margin-left: 40px;
|
|
|
|
margin-right: 40px;
|
|
|
|
|
|
|
|
/* a separator between the input line and the dial buttons */
|
2021-08-12 17:20:30 +08:00
|
|
|
border-bottom: 1px solid $quaternary-content;
|
2021-07-15 16:55:58 +08:00
|
|
|
transition: border-bottom 0.25s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal_header:focus-within {
|
2021-11-11 21:37:29 +08:00
|
|
|
border-bottom: 1px solid $accent;
|
2020-12-24 03:02:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal_title {
|
|
|
|
color: $muted-fg-color;
|
|
|
|
font-size: 12px;
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2020-12-24 03:02:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal_cancel {
|
2022-05-08 03:08:00 +08:00
|
|
|
@mixin customisedCancelButton;
|
2020-12-24 03:02:01 +08:00
|
|
|
float: right;
|
2021-07-15 16:55:58 +08:00
|
|
|
margin-right: 16px;
|
2020-12-24 03:02:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal_field {
|
|
|
|
border: none;
|
|
|
|
margin: 0px;
|
2021-07-15 16:55:58 +08:00
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal_field .mx_Field_postfix {
|
|
|
|
/* Remove border separator between postfix and field content */
|
|
|
|
border-left: none;
|
2020-12-24 03:02:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal_field input {
|
|
|
|
font-size: 18px;
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2020-12-24 03:02:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DialPadModal_dialPad {
|
|
|
|
margin-left: 16px;
|
|
|
|
margin-right: 16px;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|