2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-11-11 16:07:57 +01:00
|
|
|
.mx_InteractiveAuthEntryComponents_emailWrapper {
|
2020-12-17 11:47:03 +01:00
|
|
|
padding-right: 100px;
|
2020-11-11 16:07:57 +01:00
|
|
|
position: relative;
|
|
|
|
margin-top: 32px;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
|
|
|
&::before, &::after {
|
|
|
|
position: absolute;
|
|
|
|
width: 116px;
|
|
|
|
height: 116px;
|
|
|
|
content: "";
|
|
|
|
right: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
background-color: rgba(244, 246, 250, 0.91);
|
|
|
|
border-radius: 50%;
|
|
|
|
top: -20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
background-image: url('$(res)/img/element-icons/email-prompt.svg');
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: contain;
|
|
|
|
top: -25px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
border: 1px solid $accent-color;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-11-16 04:26:37 +01:00
|
|
|
.mx_InteractiveAuthEntryComponents_termsSubmit {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +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
|
|
|
|
2018-11-16 04:26:37 +01:00
|
|
|
.mx_InteractiveAuthEntryComponents_termsSubmit:disabled {
|
2019-06-26 14:34:26 +02:00
|
|
|
background-color: $accent-color-darker;
|
2018-11-16 04:26:37 +01:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2018-11-15 02:26:08 +01:00
|
|
|
.mx_InteractiveAuthEntryComponents_termsPolicy {
|
|
|
|
display: block;
|
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;
|
|
|
|
}
|
|
|
|
}
|