sidebar-mobile
This commit is contained in:
parent
5a61c78c5a
commit
d7b962607f
2 changed files with 50 additions and 25 deletions
|
|
@ -45,7 +45,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.left-off-canvas-menu {
|
.left-off-canvas-menu {
|
||||||
background: #3C4E60;
|
background: #2C3E50;
|
||||||
}
|
}
|
||||||
|
|
||||||
.off-canvas-wrap,.inner-wrap{
|
.off-canvas-wrap,.inner-wrap{
|
||||||
|
|
@ -80,5 +80,23 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.tab-bar h1 {
|
||||||
|
font-weight: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.off-canvas-list li a {
|
||||||
|
border-bottom: 1px solid #425568;
|
||||||
|
padding: 0.66667rem 1rem;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.off-canvas-list li a i {
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-founds {
|
||||||
|
background-color: #213140;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,16 @@
|
||||||
<div ng-controller="SidebarController">
|
<div ng-controller="SidebarController">
|
||||||
<header class="text-center">
|
<header class="text-center">
|
||||||
<div class="text-white m10v">
|
<div class="text-white m10v">
|
||||||
Copay
|
<a href="/" class="db">
|
||||||
|
<img src="../img/logo-negative-beta.svg" alt="" width="80">
|
||||||
|
</a>
|
||||||
<small>v{{version}}</small>
|
<small>v{{version}}</small>
|
||||||
<small ng-if="$root.wallet.getNetworkName()=='livenet'">LIVENET</small>
|
<small ng-if="$root.wallet.getNetworkName()=='livenet'">LIVENET</small>
|
||||||
<small ng-if="$root.wallet.getNetworkName()=='testnet'">TESTNET</small>
|
<small ng-if="$root.wallet.getNetworkName()=='testnet'">TESTNET</small>
|
||||||
</div>
|
</div>
|
||||||
<div class="founds size-12">
|
<div class="line-sidebar-b"></div>
|
||||||
|
<div class="founds size-12 text-center box-founds p10t">
|
||||||
|
<div class="m10b">
|
||||||
Balance
|
Balance
|
||||||
<span ng-if="$root.updatingBalance">
|
<span ng-if="$root.updatingBalance">
|
||||||
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
|
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
|
||||||
|
|
@ -18,7 +22,8 @@
|
||||||
tooltip-placement="bottom">{{totalBalance || 0
|
tooltip-placement="bottom">{{totalBalance || 0
|
||||||
|noFractionNumber}} {{$root.unitName}}
|
|noFractionNumber}} {{$root.unitName}}
|
||||||
</span>
|
</span>
|
||||||
·
|
</div>
|
||||||
|
<div>
|
||||||
Available
|
Available
|
||||||
<span ng-if="$root.updatingBalance">
|
<span ng-if="$root.updatingBalance">
|
||||||
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
|
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
|
||||||
|
|
@ -30,6 +35,8 @@
|
||||||
tooltip-placement="bottom">{{availableBalance || 0|noFractionNumber}} {{$root.unitName}}
|
tooltip-placement="bottom">{{availableBalance || 0|noFractionNumber}} {{$root.unitName}}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="line-sidebar-b"></div>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<ul class="off-canvas-list">
|
<ul class="off-canvas-list">
|
||||||
<li data-ng-repeat="item in menu" ui-route="/{{item.link}}" class="nav-item" data-ng-class="{active: isActive(item)}">
|
<li data-ng-repeat="item in menu" ui-route="/{{item.link}}" class="nav-item" data-ng-class="{active: isActive(item)}">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue