loading screen

This commit is contained in:
bechi 2014-07-21 21:16:06 -03:00
commit c4041f8292
3 changed files with 17 additions and 5 deletions

View file

@ -97,7 +97,6 @@ a {
font-size: 0.875rem; font-size: 0.875rem;
color: #fff; color: #fff;
font-weight: 100; font-weight: 100;
margin-bottom: 0.5rem;
} }
a:hover { a:hover {
@ -824,6 +823,11 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
.text-secondary {color: #3498DB;} .text-secondary {color: #3498DB;}
.text-white {color: #fff;} .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 { .box-setup-copayers {
background: #2C3E50; 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); -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; margin-bottom: 20px;
} }
.loading-screen {
text-align: center;
background-color: #1ABC9C;
width: 100%;
position: absolute;
top: 40%;
}
/*-----------------------------------------------------------------*/ /*-----------------------------------------------------------------*/

View file

@ -1,6 +1,6 @@
<div ng-controller="SetupController"> <div ng-controller="SetupController">
<div data-alert class="alert-box info" ng-show="loading"> <div data-alert class="loading-screen" ng-show="loading">
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i> <i class="size-60 fi-bitcoin-circle icon-rotate spinner"></i>
Creating wallet... Creating wallet...
</div> </div>
<div class="setup" ng-show="!loading"> <div class="setup" ng-show="!loading">

View file

@ -1,6 +1,6 @@
<div ng-controller="SigninController"> <div ng-controller="SigninController">
<div data-alert class="alert-box info" ng-show="loading && !failure"> <div data-alert class="loading-screen" ng-show="loading && !failure">
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i> <i class="size-60 fi-bitcoin-circle icon-rotate spinner"></i>
Authenticating and looking for peers... Authenticating and looking for peers...
</div> </div>
<div class="row signin" ng-show="!loading"> <div class="row signin" ng-show="!loading">