mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 22:11:48 +01:00
Restoring table border styling done by KayBeSee
This commit is contained in:
parent
7056aae301
commit
7b337bde49
3 changed files with 59 additions and 6 deletions
|
@ -35,7 +35,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<h3>Information</h3>
|
<h3>Information</h3>
|
||||||
<table class="table table-sm table-responsive-md">
|
<table class="table table-sm table-responsive-md removetopborder">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Store</th>
|
<th>Store</th>
|
||||||
<td><a href="@Model.StoreLink">@Model.StoreName</a></td>
|
<td><a href="@Model.StoreLink">@Model.StoreName</a></td>
|
||||||
|
@ -93,7 +93,7 @@
|
||||||
|
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<h3>Buyer information</h3>
|
<h3>Buyer information</h3>
|
||||||
<table class="table table-sm table-responsive-md">
|
<table class="table table-sm table-responsive-md removetopborder">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<td>@Model.BuyerInformation.BuyerName</td>
|
<td>@Model.BuyerInformation.BuyerName</td>
|
||||||
|
@ -134,7 +134,7 @@
|
||||||
@if (Model.PosData.Count == 0)
|
@if (Model.PosData.Count == 0)
|
||||||
{
|
{
|
||||||
<h3>Product information</h3>
|
<h3>Product information</h3>
|
||||||
<table class="table table-sm table-responsive-md">
|
<table class="table table-sm table-responsive-md removetopborder">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Item code</th>
|
<th>Item code</th>
|
||||||
<td>@Model.ProductInformation.ItemCode</td>
|
<td>@Model.ProductInformation.ItemCode</td>
|
||||||
|
@ -161,7 +161,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<h3>Product information</h3>
|
<h3>Product information</h3>
|
||||||
<table class="table table-sm table-responsive-md">
|
<table class="table table-sm table-responsive-md removetopborder">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Item code</th>
|
<th>Item code</th>
|
||||||
<td>@Model.ProductInformation.ItemCode</td>
|
<td>@Model.ProductInformation.ItemCode</td>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
@if(Model.RateLimits != null)
|
@if(Model.RateLimits != null)
|
||||||
{
|
{
|
||||||
<h5>Current Bitcoin Average Quotas:</h5>
|
<h5>Current Bitcoin Average Quotas:</h5>
|
||||||
<table class="table table-sm">
|
<table class="table table-sm removetopborder">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Quota period</th>
|
<th>Quota period</th>
|
||||||
<td>@Model.RateLimits.TotalPeriod.TimeString()</td>
|
<td>@Model.RateLimits.TotalPeriod.TimeString()</td>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.only-for-js, .input-group-clear{
|
.only-for-js, .input-group-clear {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,6 +27,59 @@
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table {
|
||||||
|
background: #fff;
|
||||||
|
border: 1px solid #DFE3E8;
|
||||||
|
border-radius: 4px;
|
||||||
|
border-collapse: separate !important;
|
||||||
|
border-spacing: 0px !important;
|
||||||
|
margin-top: 16px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table thead > tr {
|
||||||
|
height: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table thead th {
|
||||||
|
border-bottom: none;
|
||||||
|
border-top: none;
|
||||||
|
vertical-align: middle;
|
||||||
|
padding: 4px 12px 4px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table tbody tr:hover {
|
||||||
|
background-color: #f8fafc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table tr {
|
||||||
|
height: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table th {
|
||||||
|
display: table-cell;
|
||||||
|
padding: 4px 12px 4px 12px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table td {
|
||||||
|
display: table-cell;
|
||||||
|
padding: 4px 12px 4px 12px;
|
||||||
|
text-align: left;
|
||||||
|
color: #12161B;
|
||||||
|
font-size: 0.8125rem;
|
||||||
|
font-weight: 400;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.removetopborder tr:first-child td {
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.removetopborder tr:first-child th {
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
|
||||||
a.nav-link {
|
a.nav-link {
|
||||||
color: #66788A;
|
color: #66788A;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue