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