Merge pull request #230 from colkito/feature/look-and-feel-tables-list
added a new look&feel for tables at home an block list
This commit is contained in:
commit
835612da4e
@ -505,3 +505,13 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
|||||||
|
|
||||||
.page-header { margin-top: 0; }
|
.page-header { margin-top: 0; }
|
||||||
|
|
||||||
|
/* Index */
|
||||||
|
#home .btn-more {
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
margin: 30px auto 0;
|
||||||
|
text-align: center;
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
#home .btn-more .btn-default {
|
||||||
|
margin-top: -23px;
|
||||||
|
}
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
<p class="text-center m20v" data-ng-show="pagination.isToday && !loading">Today</p>
|
<p class="text-center m20v" data-ng-show="pagination.isToday && !loading">Today</p>
|
||||||
<p class="text-center m20v" data-ng-show="!pagination.isToday && !loading">{{humanSince(pagination.currentTs)}}
|
<p class="text-center m20v" data-ng-show="!pagination.isToday && !loading">{{humanSince(pagination.currentTs)}}
|
||||||
<p class="text-center m20v" data-ng-show="loading"> </p>
|
<p class="text-center m20v" data-ng-show="loading"> </p>
|
||||||
|
|
||||||
<div class="m50v text-center">
|
<div class="m50v text-center">
|
||||||
<a class="btn btn-primary" href="/blocks-date/{{pagination.prev}}"><small>← {{pagination.prev}}</small></a>
|
<a class="btn btn-primary" href="/blocks-date/{{pagination.prev}}"><small>← {{pagination.prev}}</small></a>
|
||||||
<a class="btn btn-primary" href="/blocks-date/{{pagination.next}}" data-ng-show="!pagination.isToday"><small>{{pagination.next}} →</small></a>
|
<a class="btn btn-primary" href="/blocks-date/{{pagination.next}}" data-ng-show="!pagination.isToday"><small>{{pagination.next}} →</small></a>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
<small>by date</small>
|
<small>by date</small>
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<table class="table table-hover">
|
<table class="table table-hover table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Height</th>
|
<th>Height</th>
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
<div id="home" class="row">
|
<div id="home" class="row">
|
||||||
<div class="col-xs-12 col-md-8">
|
<div class="col-xs-12 col-md-8">
|
||||||
<h1>Latest Blocks</h1>
|
<h1>Latest Blocks</h1>
|
||||||
<table class="table table-hover" style="table-layout: fixed">
|
<table class="table table-hover table-striped" style="table-layout: fixed">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Height</th>
|
<th>Height</th>
|
||||||
@ -28,10 +28,13 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<div class="btn-more">
|
||||||
|
<a href="/blocks" class="btn btn-default">See all blocks</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>Latest Transactions</h2>
|
<h2>Latest Transactions</h2>
|
||||||
|
|
||||||
<table class="table" style="table-layout: fixed;">
|
<table class="table table-hover table-striped" style="table-layout: fixed;">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Hash</th>
|
<th>Hash</th>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user