Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
a bit cosmetic copy qr buttons #46
Browse files Browse the repository at this point in the history
  • Loading branch information
llybin committed Jun 24, 2019
1 parent 1856614 commit 4e9cd9f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions scan/templates/accounts/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ <h5 class="modal-title text-break small" id="QRModalLabel">BURST-{{ address.id|n
</div>

<h5 class="p-2">Account #{{ address.id }}
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn" href="#" data-clipboard-text="BURST-{{ address.id|num2rs }}"><i class="far fa-copy"></i></a>
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle" href="#" data-toggle="modal" data-target="#QRModal" title="Click to view QR Code"><i class="fa fa-qrcode"></i></a>
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn px-1" href="#" data-clipboard-text="BURST-{{ address.id|num2rs }}"><i class="far fa-copy"></i></a>
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle px-0" href="#" data-toggle="modal" data-target="#QRModal" title="Click to view QR Code"><i class="fa fa-qrcode"></i></a>
</h5>

<div class="card-deck mb-3">
Expand Down
2 changes: 1 addition & 1 deletion scan/templates/assets/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h5 class="p-2">Asset Details</h5>
<th style="width: 160px;">ID</th>
<th>
{{ asset.id }}
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn" href="#" data-clipboard-text="{{ asset.id }}"><i class="far fa-copy"></i></a>
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn px-1" href="#" data-clipboard-text="{{ asset.id }}"><i class="far fa-copy"></i></a>
</th>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion scan/templates/ats/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h5 class="p-2">AT Details</h5>
<th style="width: 160px;">ID</th>
<th>
{{ at.id }}
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn" href="#" data-clipboard-text="{{ at.id }}"><i class="far fa-copy"></i></a>
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn px-1" href="#" data-clipboard-text="{{ at.id }}"><i class="far fa-copy"></i></a>
</th>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion scan/templates/marketplace/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h5 class="p-2">Goods Details</h5>
<th style="width: 160px;">ID</th>
<th>
{{ good.id }}
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn" href="#" data-clipboard-text="{{ good.id }}"><i class="far fa-copy"></i></a>
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn px-1" href="#" data-clipboard-text="{{ good.id }}"><i class="far fa-copy"></i></a>
</th>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion scan/templates/txs/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h5 class="p-2">Transaction Details</h5>
<th style="width: 160px;">ID</th>
<th>
{{ tx.id }}
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn" href="#" data-clipboard-text="{{ tx.id }}"><i class="far fa-copy"></i></a>
<a class="btn btn-sm btn-icon btn-soft-secondary rounded-circle copy-btn px-1" href="#" data-clipboard-text="{{ tx.id }}"><i class="far fa-copy"></i></a>
</th>
</tr>
<tr>
Expand Down

0 comments on commit 4e9cd9f

Please sign in to comment.