diff --git a/BTCPayServer/Views/Wallets/WalletTransactions.cshtml b/BTCPayServer/Views/Wallets/WalletTransactions.cshtml index 94aa71c00..8d78dd7f3 100644 --- a/BTCPayServer/Views/Wallets/WalletTransactions.cshtml +++ b/BTCPayServer/Views/Wallets/WalletTransactions.cshtml @@ -28,10 +28,16 @@ text-overflow: ellipsis; } - .transactionLabel:not(:last-child) { + .badge-container:not(:last-child) { margin-bottom: 4px; } + .badge-container { + display: flex; + align-items: center; + flex-wrap: nowrap; + } + .removeTransactionLabelForm { display: inline; position: absolute; @@ -39,14 +45,19 @@ } .removeTransactionLabelForm button { - color: #212529; cursor: pointer; display: inline; padding: 0; background-color: transparent; border: 0; } - + + .transaction-details-icon { + position: relative; + padding-left: 12px; + left: -8px; + } + @if (TempData.HasStatusMessage()) {
@@ -106,30 +117,37 @@ @foreach (var label in transaction.Labels) { -
- @label.Value - +
+
+ @label.Value + +
+ + +
+
@if (!string.IsNullOrEmpty(label.Link)) { - + + + Transaction details + + } -
- - -
}