loading screen
This commit is contained in:
parent
ed05141e97
commit
c4041f8292
3 changed files with 17 additions and 5 deletions
14
css/main.css
14
css/main.css
|
|
@ -97,7 +97,6 @@ a {
|
|||
font-size: 0.875rem;
|
||||
color: #fff;
|
||||
font-weight: 100;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
|
|
@ -824,6 +823,11 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
.text-secondary {color: #3498DB;}
|
||||
.text-white {color: #fff;}
|
||||
|
||||
a.text-gray:hover {color: #fff;}
|
||||
a.text-primary:hover {color: #50E3C2;}
|
||||
a.text-secondary:hover {color: #4A90E2;}
|
||||
a.text-white:hover {color: #ccc;}
|
||||
|
||||
.box-setup-copayers {
|
||||
background: #2C3E50;
|
||||
-moz-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.09), inset 0px 0px 2px 0px rgba(0,0,0,0.20);
|
||||
|
|
@ -831,4 +835,12 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.loading-screen {
|
||||
text-align: center;
|
||||
background-color: #1ABC9C;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 40%;
|
||||
}
|
||||
|
||||
/*-----------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<div ng-controller="SetupController">
|
||||
<div data-alert class="alert-box info" ng-show="loading">
|
||||
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
|
||||
<div data-alert class="loading-screen" ng-show="loading">
|
||||
<i class="size-60 fi-bitcoin-circle icon-rotate spinner"></i>
|
||||
Creating wallet...
|
||||
</div>
|
||||
<div class="setup" ng-show="!loading">
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<div ng-controller="SigninController">
|
||||
<div data-alert class="alert-box info" ng-show="loading && !failure">
|
||||
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
|
||||
<div data-alert class="loading-screen" ng-show="loading && !failure">
|
||||
<i class="size-60 fi-bitcoin-circle icon-rotate spinner"></i>
|
||||
Authenticating and looking for peers...
|
||||
</div>
|
||||
<div class="row signin" ng-show="!loading">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue