2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-01-22 01:33:17 +01:00
|
|
|
Copyright 2019 New Vector Ltd
|
2018-04-12 01:23:35 +02:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_Login_submit {
|
|
|
|
@mixin mx_DialogButton;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 35px;
|
|
|
|
margin-bottom: 24px;
|
2019-01-26 06:36:36 +01:00
|
|
|
box-sizing: border-box;
|
2019-01-28 21:58:21 +01:00
|
|
|
text-align: center;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Login_submit:hover {
|
|
|
|
@mixin mx_DialogButton_hover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Login_submit:disabled {
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
2019-01-26 06:36:36 +01:00
|
|
|
.mx_AuthBody a.mx_Login_sso_link:link,
|
|
|
|
.mx_AuthBody a.mx_Login_sso_link:hover,
|
|
|
|
.mx_AuthBody a.mx_Login_sso_link:visited {
|
|
|
|
color: $button-primary-fg-color;
|
2018-11-15 20:05:39 +01:00
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02: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 {
|
|
|
|
color: $warning-color;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 12px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Login_type_container {
|
|
|
|
display: flex;
|
2019-03-05 18:53:09 +01:00
|
|
|
align-items: center;
|
2019-02-13 15:24:03 +01:00
|
|
|
color: $authpage-primary-color;
|
2019-03-05 18:53:09 +01:00
|
|
|
|
|
|
|
.mx_Field {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Login_type_label {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Login_type_dropdown {
|
2019-03-05 18:53:09 +01:00
|
|
|
min-width: 200px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|