fix history section

This commit is contained in:
bechi 2014-10-31 09:33:00 -03:00
parent 9788235003
commit 5159508d41
2 changed files with 13 additions and 18 deletions

View File

@ -382,8 +382,8 @@ a:hover {
table.last-transactions-content {
padding: 0;
border: 0;
background-color: #fff;
margin: 0;
background-color: #F8F8FB;
margin: 15px 0;
}
.last-transactions-content .box-status {
@ -560,22 +560,17 @@ a.button-setup {
}
.line {
border-top: 1px solid #f2f2f2;
margin: 0.5rem 0 1rem;
}
.line-sidebar {
border-top: 1px solid #34495E;
border-top: 1px solid #F8F8FB;
margin: 0.7rem 0;
}
.line-sidebar-t {
border-top: 1px solid #3C5269;
.line-t {
border-top: 1px solid #F8F8FB;
padding-top: 0.5rem;
}
.line-sidebar-b {
border-bottom: 1px solid #3C5269;
.line-b {
border-bottom: 1px solid #F8F8FB;
padding-bottom: 0.5rem;
}

View File

@ -8,8 +8,8 @@
<em><strong translate>No transactions yet.</strong></em>
</div>
<div class="panel large-12 columns" ng-repeat="btx in blockchain_txs | orderBy: 'time':true">
<div class="row collapse">
<div class="large-2 medium-2 small-4 columns">
<div class="row collapse size-12">
<div class="large-3 medium-3 small-4 columns">
<span ng-hide="btx.ts">&nbsp;</span>
<time ng-if="btx.ts">{{btx.ts | amCalendar}}</time>
<span class="label alert" ng-show="!btx.ts && (!btx.confirmations || btx.confirmations == 0)">
@ -17,7 +17,7 @@
</span>
</div>
<div class="large-3 medium-3 small-5 columns">
<div class="large-2 medium-2 small-5 columns">
{{btx.amount| noFractionNumber}} {{$root.wallet.settings.unitName}}
{{btx.action}}
</div>
@ -34,8 +34,8 @@
<div class="large-1 medium-1 small-4 columns size-10 text-right"
ng-init="btx.showDetails = false">
<a ng-click="btx.showDetails = !btx.showDetails">
<i ng-if="!btx.showDetails" class="icon-arrow-down2"></i>
<i ng-if="btx.showDetails" class="icon-arrow-up2"></i>
<i ng-if="!btx.showDetails" class="icon-arrow-down4"></i>
<i ng-if="btx.showDetails" class="icon-arrow-up4 size-12"></i>
</a>
</div>
</div>
@ -61,7 +61,7 @@
</tr>
</tbody>
</table>
<div class="line-sidebar-t m10t">
<div class="line-t m10t">
<small class="ellipsis">Transaction ID:
<a
href="http://{{getShortNetworkName()}}.insight.is/tx/{{btx.txid}}"