2018-04-12 00:23:35 +01:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2018-04-12 00:23:35 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 00:23:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.mx_Login_submit {
|
|
|
|
|
@mixin mx_DialogButton;
|
2022-11-22 07:58:37 +01:00
|
|
|
font-size: 15px;
|
2023-06-29 11:30:25 +01:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2018-04-12 00:23:35 +01:00
|
|
|
width: 100%;
|
2020-11-23 11:28:49 +00:00
|
|
|
margin-top: 24px;
|
2018-04-12 00:23:35 +01:00
|
|
|
margin-bottom: 24px;
|
2019-01-25 23:36:36 -06:00
|
|
|
box-sizing: border-box;
|
2019-01-28 14:58:21 -06:00
|
|
|
text-align: center;
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_Login_submit:disabled {
|
|
|
|
|
opacity: 0.3;
|
2019-06-17 16:57:13 +01:00
|
|
|
cursor: default;
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_Login_loader {
|
|
|
|
|
display: inline;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 2px;
|
|
|
|
|
left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_Login_loader .mx_Spinner {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_Login_loader .mx_Spinner img {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_Login_error {
|
2021-11-11 14:37:29 +01:00
|
|
|
color: $alert;
|
2018-04-12 00:23:35 +01:00
|
|
|
font-weight: bold;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-05 11:32:02 -06:00
|
|
|
.mx_Login_error.mx_Login_serverError {
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-10 19:28:32 -06:00
|
|
|
.mx_Login_error.mx_Login_serverError.mx_Login_serverErrorNonFatal {
|
2022-07-27 14:39:29 +01:00
|
|
|
color: #ff8d13; /* Only used here */
|
2019-06-10 19:28:32 -06:00
|
|
|
}
|
|
|
|
|
|
2018-04-12 00:23:35 +01:00
|
|
|
.mx_Login_type_container {
|
|
|
|
|
display: flex;
|
2019-03-05 17:53:09 +00:00
|
|
|
align-items: center;
|
2019-02-13 14:24:03 +00:00
|
|
|
color: $authpage-primary-color;
|
2019-03-05 17:53:09 +00:00
|
|
|
|
|
|
|
|
.mx_Field {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_Login_type_label {
|
2019-07-02 15:09:48 +01:00
|
|
|
flex: 1;
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|
2019-05-13 17:16:40 -06:00
|
|
|
|
|
|
|
|
.mx_Login_underlinedServerName {
|
2020-12-08 11:56:42 +00:00
|
|
|
width: max-content;
|
2021-11-11 14:37:29 +01:00
|
|
|
border-bottom: 1px dashed $accent;
|
2019-05-13 17:16:40 -06:00
|
|
|
}
|
2020-04-15 14:07:37 +01:00
|
|
|
|
|
|
|
|
div.mx_AccessibleButton_kind_link.mx_Login_forgot {
|
2020-11-23 11:28:49 +00:00
|
|
|
display: block;
|
2022-11-22 07:58:37 +01:00
|
|
|
margin-top: 24px;
|
2020-04-15 14:07:37 +01:00
|
|
|
|
|
|
|
|
&.mx_AccessibleButton_disabled {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-05 17:29:35 +00:00
|
|
|
|
2021-08-19 09:19:02 +02:00
|
|
|
.mx_Login_spinner {
|
2021-08-19 09:12:22 +02:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
align-content: center;
|
|
|
|
|
padding: 14px;
|
|
|
|
|
}
|
2023-06-29 09:08:56 +12:00
|
|
|
|
|
|
|
|
.mx_Login_fullWidthButton {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|