The button itself is conditionally enabled because the ILAG dialog already has a continue button. It'd be confusing to users to have 2 continue buttons on the same dialog, so this commit adds the structure required to pass along clicks from the dialog's button down to the UI auth component. The other place the continue button would appear is on the register page (not ILAG). The button's style is different here, however that will be improved in a later commit. Part of https://github.com/vector-im/riot-web/issues/7700
46 lines
1.2 KiB
SCSS
46 lines
1.2 KiB
SCSS
/*
|
|
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.
|
|
*/
|
|
|
|
.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;
|
|
}
|
|
|
|
.mx_InteractiveAuthEntryComponents_msisdnSubmit {
|
|
margin-top: 4px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
// XXX: This should be a common button class
|
|
.mx_InteractiveAuthEntryComponents_msisdnSubmit:disabled {
|
|
background-color: $light-fg-color;
|
|
cursor: default;
|
|
}
|
|
|
|
.mx_InteractiveAuthEntryComponents_termsPolicy {
|
|
display: block;
|
|
} |