mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
parent
3fc9d0c010
commit
8b7ea6c71f
1 changed files with 15 additions and 3 deletions
|
@ -5,8 +5,6 @@
|
|||
ViewData.SetActivePageAndTitle(WalletsNavPages.Transactions);
|
||||
}
|
||||
<style type="text/css">
|
||||
|
||||
|
||||
.smMaxWidth {
|
||||
max-width: 200px;
|
||||
}
|
||||
|
@ -20,6 +18,10 @@
|
|||
.unconf {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.transactionLabel:not(:last-child) {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
</style>
|
||||
@if (TempData.ContainsKey("TempDataProperty-StatusMessage"))
|
||||
{
|
||||
|
@ -64,7 +66,17 @@
|
|||
<td style="text-align:left">
|
||||
@foreach (var label in transaction.Labels)
|
||||
{
|
||||
<a asp-route-labelFilter="@label.Value"><span class="badge" style="display:block;background-color:@label.Color;color:white;">@label.Value</span></a>
|
||||
<a
|
||||
asp-route-labelFilter="@label.Value"
|
||||
class="badge transactionLabel"
|
||||
style="
|
||||
background-color: @label.Color;
|
||||
color: white;
|
||||
display: block;
|
||||
"
|
||||
>
|
||||
@label.Value
|
||||
</a>
|
||||
}
|
||||
</td>
|
||||
<td class="smMaxWidth text-truncate @(transaction.IsConfirmed ? "" : "unconf")">
|
||||
|
|
Loading…
Add table
Reference in a new issue