mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 22:11:48 +01:00
Remove Store ID
from Store Settings & various minor UI tweaks (#3881)
* ui+layout: update main container padding * ui+invoice: updates archive button * ui+users: updates search input
This commit is contained in:
parent
c943303a45
commit
9d41a52d3b
3 changed files with 4 additions and 4 deletions
|
@ -106,7 +106,7 @@
|
|||
<button href="#" class="btn btn-secondary text-nowrap" data-bs-toggle="tooltip" title="You can only refund an invoice that has been settled. Please wait for the transaction to confirm on the blockchain before attempting to refund it." disabled>Issue refund</button>
|
||||
}
|
||||
<form asp-action="ToggleArchive" asp-route-invoiceId="@Model.Id" method="post">
|
||||
<button type="submit" class="btn @(Model.Archived ? "btn-warning" : "btn btn-danger")" id="btn-archive-toggle">
|
||||
<button type="submit" class="btn btn-secondary" id="btn-archive-toggle">
|
||||
@if (Model.Archived)
|
||||
{
|
||||
<span class="text-nowrap" data-bs-toggle="tooltip" title="Unarchive this invoice">Unarchive</span>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
var sortByAsc = "Sort by ascending...";
|
||||
}
|
||||
|
||||
<div class="d-flex align-items-center justify-content-between mb-4">
|
||||
<div class="d-flex align-items-center justify-content-between mb-3">
|
||||
<h3 class="mb-0">@ViewData["Title"]</h3>
|
||||
<a asp-action="CreateUser" class="btn btn-primary" role="button" id="CreateUser">
|
||||
<span class="fa fa-plus"></span>
|
||||
|
@ -31,7 +31,7 @@
|
|||
</a>
|
||||
</div>
|
||||
|
||||
<form asp-action="ListUsers" asp-route-sortOrder="@(userEmailSortOrder)" style="max-width:960px" class="mb-4">
|
||||
<form asp-action="ListUsers" asp-route-sortOrder="@(userEmailSortOrder)" style="max-width:640px">
|
||||
<div class="input-group">
|
||||
<input asp-for="SearchTerm" class="form-control" placeholder="Search by email..." />
|
||||
<button type="submit" class="btn btn-secondary" title="Search by email">
|
||||
|
|
|
@ -553,7 +553,7 @@
|
|||
--header-height: var(--desktop-header-height);
|
||||
--content-padding-top: 5rem;
|
||||
--content-padding-bottom: 5rem;
|
||||
--content-padding-horizontal: var(--btcpay-space-xl);
|
||||
--content-padding-horizontal: 5rem;
|
||||
}
|
||||
|
||||
#mainMenu {
|
||||
|
|
Loading…
Add table
Reference in a new issue