mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
Merge pull request #6576 from dennisreimann/fix-unconf
UI: Display unconfirmed transactions with lower opacity
This commit is contained in:
commit
9f4acdf8be
3 changed files with 2 additions and 6 deletions
|
@ -43,7 +43,7 @@
|
|||
<tbody>
|
||||
@foreach (var tx in Model.Transactions)
|
||||
{
|
||||
<tr>
|
||||
<tr class="@(tx.IsConfirmed ? "" : "opacity-50")">
|
||||
<td>@tx.Timestamp.ToTimeAgo()</td>
|
||||
<td>
|
||||
<vc:truncate-center text="@tx.Id" link="@tx.Link" classes="truncate-center-id" />
|
||||
|
|
|
@ -43,10 +43,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
.unconf > * {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
#LoadingIndicator {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
}
|
||||
@foreach (var transaction in Model.Transactions)
|
||||
{
|
||||
<tr class="mass-action-row">
|
||||
<tr class="mass-action-row@(transaction.IsConfirmed ? "" : " opacity-50")">
|
||||
<td class="only-for-js mass-action-select-col">
|
||||
<input name="selectedTransactions" type="checkbox" class="form-check-input mass-action-select" form="WalletActions" value="@transaction.Id" />
|
||||
</td>
|
||||
|
|
Loading…
Add table
Reference in a new issue