This commit is contained in:
bechi 2015-01-14 16:21:08 -03:00
parent 639adb3735
commit dae33e0d56
3 changed files with 27 additions and 30 deletions

View File

@ -142,15 +142,11 @@ header .alt-currency {
right: 0; right: 0;
} }
.head .title { .head .founds {
float: left; float: left;
padding-left: 2rem; padding-left: 2rem;
} }
.head .title h1 {
margin: 0;
}
.head .menu { .head .menu {
float: right; float: right;
position: relative; position: relative;
@ -267,7 +263,6 @@ input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill, inpu
padding: 0.5rem 0.65rem; padding: 0.5rem 0.65rem;
background-color: #fff; background-color: #fff;
color: #1ABC9C; color: #1ABC9C;
border-radius: 3px;
line-height: 24px; line-height: 24px;
text-align: center; text-align: center;
} }
@ -671,11 +666,8 @@ a.button-setup {
.name-wallet { .name-wallet {
font-size: 14px; font-size: 14px;
width: 72%;
float: left;
color: #fff; color: #fff;
text-transform: lowercase; font-weight: 700;
font-weight: 500;
} }
.name-wallet i { .name-wallet i {
@ -689,16 +681,15 @@ a.button-setup {
} }
.founds { .founds {
font-weight: 100; font-size: 20px;
color: #B6E9DF; color: #7A8C9E;
font-weight: 700;
} }
.locked { .locked {
font-size: 11px; font-size: 11px;
background-color: #213140; margin-top: 0.2rem;
width: 100%; color: #7A8C9E;
padding: 0.3rem 0.7rem;
color: white;
} }
.hidden { .hidden {
@ -1112,7 +1103,7 @@ ul.wallet-selection.wallets {
} }
.side-nav.wallets li { .side-nav.wallets li {
margin: 1.2rem 0; margin: 0.8rem 0;
padding: 0.3rem 0.1rem; padding: 0.3rem 0.1rem;
} }

View File

@ -154,7 +154,6 @@
} }
ul.off-canvas-list li a { ul.off-canvas-list li a {
text-transform: uppercase;
font-size: 12px; font-size: 12px;
vertical-align: middle; vertical-align: middle;
font-weight: 100; font-weight: 100;

View File

@ -1,15 +1,22 @@
<div class="title"> <div class="founds">
<h1> <span ng-if="!$root.wallet.isComplete()">Waiting for copayers...</span>
{{$root.title}} <div ng-if="$root.wallet.isComplete()">
<small ng-if="$root.wallet"> <span ng-if="$root.wallet.balanceInfo.updatingBalance"><i class="fi-bitcoin-circle icon-rotate spinner"></i></span>
<a class="text-gray" ng-click="refresh()" ng-if="$root.wallet.isComplete() && !$root.updatingBalance"> <div ng-if="$root.wallet && !$root.wallet.balanceInfo.updatingBalance" data-options="disable_for_touch:true">
<i class="fi-refresh"></i> <small class="db text-light">Balance:</small>
</a> <b class="m5r">{{$root.wallet.balanceInfo.totalBalance || 0}} {{$root.wallet.settings.unitName}}</b>
<span ng-if="$root.updatingBalance"> <span ng-if="$root.wallet.balanceInfo.alternativeBalanceAvailable" class="alt-currency gray">{{$root.wallet.balanceInfo.totalBalanceAlternative}} {{$root.wallet.balanceInfo.alternativeIsoCode}}</span>
<i class="fi-bitcoin-circle icon-rotate spinner"></i> <span ng-if="!$root.wallet.balanceInfo.alternativeBalanceAvailable" class="alt-currency gray">N/A</span>
</span> <small ng-if="$root.wallet">
</small> <a class="text-gray" ng-click="refresh()" ng-if="$root.wallet.isComplete() && !$root.updatingBalance">
</h1> <i class="fi-refresh"></i>
</a>
<span ng-if="$root.updatingBalance">
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
</span>
</small>
</div>
</div>
</div> </div>