Merge pull request #2712 from jryans/reg-spinner
Keep registration spinner inside the auth modalpull/21833/head
commit
c4db9dc315
|
@ -103,3 +103,7 @@ limitations under the License.
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_AuthBody_spinner {
|
||||||
|
margin: 1em 0;
|
||||||
|
}
|
||||||
|
|
|
@ -495,7 +495,9 @@ module.exports = React.createClass({
|
||||||
poll={true}
|
poll={true}
|
||||||
/>;
|
/>;
|
||||||
} else if (this.state.busy || !this.state.flows) {
|
} else if (this.state.busy || !this.state.flows) {
|
||||||
return <Spinner />;
|
return <div className="mx_AuthBody_spinner">
|
||||||
|
<Spinner />
|
||||||
|
</div>;
|
||||||
} else {
|
} else {
|
||||||
let onEditServerDetailsClick = null;
|
let onEditServerDetailsClick = null;
|
||||||
// If custom URLs are allowed and we haven't selected the Free server type, wire
|
// If custom URLs are allowed and we haven't selected the Free server type, wire
|
||||||
|
|
Loading…
Reference in New Issue