2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-04-13 09:29:09 +08:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2018-04-12 07:23:35 +08:00
|
|
|
|
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.
|
2018-04-12 07:23:35 +08:00
|
|
|
*/
|
|
|
|
|
2023-04-13 09:29:09 +08:00
|
|
|
.mx_InteractiveAuthEntryComponents {
|
|
|
|
.mx_InteractiveAuthEntryComponents_termsSubmit {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box; /* prevent overflowing */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-12 07:23:35 +08:00
|
|
|
.mx_InteractiveAuthEntryComponents_msisdnWrapper {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_InteractiveAuthEntryComponents_msisdnEntry {
|
|
|
|
font-size: 200%;
|
|
|
|
font-weight: bold;
|
|
|
|
border: 1px solid $strong-input-border-color;
|
|
|
|
border-radius: 3px;
|
|
|
|
width: 6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_InteractiveAuthEntryComponents_msisdnEntry:focus {
|
2021-11-11 21:37:29 +08:00
|
|
|
border: 1px solid $accent;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2018-11-16 11:26:37 +08:00
|
|
|
.mx_InteractiveAuthEntryComponents_msisdnSubmit {
|
2018-04-12 07:23:35 +08:00
|
|
|
margin-top: 4px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* XXX: This should be a common button class */
|
2018-11-16 11:26:37 +08:00
|
|
|
.mx_InteractiveAuthEntryComponents_msisdnSubmit:disabled {
|
2018-04-12 07:23:35 +08:00
|
|
|
background-color: $light-fg-color;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2018-11-15 09:26:08 +08:00
|
|
|
|
|
|
|
.mx_InteractiveAuthEntryComponents_termsPolicy {
|
2021-02-03 02:35:55 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2021-08-04 23:09:48 +08:00
|
|
|
justify-content: flex-start;
|
2021-02-03 02:35:55 +08:00
|
|
|
align-items: center;
|
2019-06-06 16:16:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_InteractiveAuthEntryComponents_passwordSection {
|
|
|
|
width: 300px;
|
|
|
|
}
|
2020-03-31 10:03:46 +08:00
|
|
|
|
|
|
|
.mx_InteractiveAuthEntryComponents_sso_buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
2022-05-13 22:10:22 +08:00
|
|
|
|
|
|
|
.mx_InteractiveAuthEntryComponents_emailWrapper {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* "Resend" button/link */
|
2022-05-13 22:10:22 +08:00
|
|
|
.mx_AccessibleButton_kind_link_inline {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* We need this to be an inline-block so positioning works correctly */
|
2022-05-13 22:10:22 +08:00
|
|
|
display: inline-block !important;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Spinner as end adornment of the "resend" button/link */
|
2022-05-13 22:10:22 +08:00
|
|
|
.mx_Spinner {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Spinners are usually block elements, but we need it as inline element */
|
2022-05-13 22:10:22 +08:00
|
|
|
display: inline-flex !important;
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Spinners by default fill all available width, but we don't want that */
|
2022-05-13 22:10:22 +08:00
|
|
|
width: auto !important;
|
2022-07-27 21:39:29 +08:00
|
|
|
/* We need to center the spinner relative to the button/link */
|
2022-05-13 22:10:22 +08:00
|
|
|
vertical-align: middle !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|