mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
72ec6c7062
This hides the identity server at first from the custom server auth flows. For the flows that may need an IS if the HS requires it (registration, password reset), we then check with the HS before proceeding further and reveal the IS field if it is in fact needed. Fixes https://github.com/vector-im/riot-web/issues/10553
36 lines
945 B
SCSS
36 lines
945 B
SCSS
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
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_ServerConfig_help:link {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.mx_ServerConfig_error {
|
|
display: block;
|
|
color: $warning-color;
|
|
}
|
|
|
|
.mx_ServerConfig_identityServer {
|
|
transform: scaleY(0);
|
|
transform-origin: top;
|
|
transition: transform 0.25s;
|
|
|
|
&.mx_ServerConfig_identityServer_shown {
|
|
transform: scaleY(1);
|
|
}
|
|
}
|