mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
Implementing tables fix per dennisreimann suggestion
This commit is contained in:
parent
9cac8d36ad
commit
54dd602be4
@ -119,7 +119,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body p-0">
|
<div class="modal-body p-0">
|
||||||
<table id="js-cart-summary" class="table w-100 m-0">
|
<table id="js-cart-summary" class="table m-0">
|
||||||
<tbody class="my-3">
|
<tbody class="my-3">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="border-top-0 h5">Summary</td>
|
<td colspan="2" class="border-top-0 h5">Summary</td>
|
||||||
@ -276,7 +276,7 @@
|
|||||||
<a class="js-cart-destroy btn btn-danger pull-right" href="#" style="display: none;">Empty cart <i class="fa fa-trash fa-fw fa-lg"></i></a>
|
<a class="js-cart-destroy btn btn-danger pull-right" href="#" style="display: none;">Empty cart <i class="fa fa-trash fa-fw fa-lg"></i></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table id="js-cart-list" class="table table-responsive table-light w-100 m-0">
|
<table id="js-cart-list" class="table table-responsive table-light mt-0 mb-0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="3" width="55%">Product</th>
|
<th colspan="3" width="55%">Product</th>
|
||||||
@ -291,7 +291,7 @@
|
|||||||
<tbody></tbody>
|
<tbody></tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<table id="js-cart-extra" class="table table-light w-100 m-0">
|
<table id="js-cart-extra" class="table table-light mt-0 mb-0">
|
||||||
<thead></thead>
|
<thead></thead>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -10844,12 +10844,12 @@ textarea.w-auto {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Pull tables out of the grid by their horizontal column padding */
|
/* Pull tables out of the grid by their horizontal column padding */
|
||||||
*:not([class^="table-responsive"]) > .table {
|
main *:not([class^="table-responsive"]) > .table {
|
||||||
width: calc(100% + 1rem);
|
width: calc(100% + 1rem);
|
||||||
margin: 1.5rem -0.5rem;
|
margin: 1.5rem -0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
[class^="table-responsive"] {
|
main [class^="table-responsive"] {
|
||||||
width: calc(100% + 1rem);
|
width: calc(100% + 1rem);
|
||||||
margin: 1.5rem -0.5rem;
|
margin: 1.5rem -0.5rem;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user