Change to a Details-button

This commit is contained in:
softsimon 2023-07-17 17:41:38 +09:00
parent 6fe32cdd19
commit 6ab3b89884
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7
2 changed files with 8 additions and 1 deletions

View File

@ -118,7 +118,7 @@
<td i18n="lightning.features" class="text-truncate label">Features</td> <td i18n="lightning.features" class="text-truncate label">Features</td>
<td class="d-flex justify-content-between"> <td class="d-flex justify-content-between">
<span class="text-truncate w-90">{{ bits }}</span> <span class="text-truncate w-90">{{ bits }}</span>
<a href="#" class="w-10" (click)="toggleFeatures()"></a> <button type="button" class="btn btn-outline-info btn-xs" (click)="toggleFeatures()" i18n="transaction.details|Transaction Details">Details</button>
</td> </td>
</ng-template> </ng-template>

View File

@ -1164,3 +1164,10 @@ app-master-page, app-liquid-master-page, app-bisq-master-page {
app-global-footer { app-global-footer {
margin-top: auto; margin-top: auto;
} }
.btn-xs {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 0.5;
border-radius: 0.2rem;
}