Add #statement-payment-table to Plain

This commit is contained in:
Benjamin Beganović 2021-08-23 14:22:38 +02:00
parent 053f951fef
commit c7cd6e8281

View File

@ -71,7 +71,8 @@
#product-table, #product-table,
#delivery-note-table, #delivery-note-table,
#task-table, #task-table,
#statement-invoice-table { #statement-invoice-table,
#statement-payment-table {
min-width: 100%; min-width: 100%;
table-layout: fixed; table-layout: fixed;
overflow-wrap: break-word; overflow-wrap: break-word;
@ -88,14 +89,16 @@
#product-table > thead, #product-table > thead,
#delivery-note-table > thead, #delivery-note-table > thead,
#task-table > thead, #task-table > thead,
#statement-invoice-table > thead { #statement-invoice-table > thead,
#statement-payment-table > thead {
text-align: left; text-align: left;
} }
#product-table > thead > tr > th, #product-table > thead > tr > th,
#delivery-note-table > thead > tr > th, #delivery-note-table > thead > tr > th,
#task-table > thead > tr > th, #task-table > thead > tr > th,
#statement-invoice-table > thead > tr > th { #statement-invoice-table > thead > tr > th,
#statement-payment-table > thead > tr > th {
padding: 1rem; padding: 1rem;
background-color: #e6e6e6; background-color: #e6e6e6;
} }
@ -103,14 +106,16 @@
#product-table > thead > tr > th:last-child, #product-table > thead > tr > th:last-child,
#delivery-note-table > thead > tr > th:last-child, #delivery-note-table > thead > tr > th:last-child,
#task-table > thead > tr > th:last-child, #task-table > thead > tr > th:last-child,
#statement-invoice-table > thead > tr > th:last-child { #statement-invoice-table > thead > tr > th:last-child,
#statement-payment-table > thead > tr > th:last-child {
text-align: right; text-align: right;
} }
#product-table > tbody > tr > td, #product-table > tbody > tr > td,
#delivery-note-table > tbody > tr > td, #delivery-note-table > tbody > tr > td,
#task-table > tbody > tr > td, #task-table > tbody > tr > td,
#statement-invoice-table > tbody > tr > td { #statement-invoice-table > tbody > tr > td,
#statement-payment-table > tbody > tr > td {
border-bottom: 1px solid #e6e6e6; border-bottom: 1px solid #e6e6e6;
padding: 1rem; padding: 1rem;
} }
@ -118,7 +123,8 @@
#product-table > tbody > tr > td:last-child, #product-table > tbody > tr > td:last-child,
#delivery-note-table > tbody > tr > td:last-child, #delivery-note-table > tbody > tr > td:last-child,
#task-table > tbody > tr > td:last-child, #task-table > tbody > tr > td:last-child,
#statement-invoice-table > tbody > tr > td:last-child { #statement-invoice-table > tbody > tr > td:last-child,
#statement-payment-table > tbody > tr > td:last-child {
text-align: right; text-align: right;
} }
@ -188,7 +194,8 @@
#product-table h3, #product-table h3,
#task-table h3, #task-table h3,
#delivery-note-table, #delivery-note-table,
#statement-invoice-table h3 { #statement-invoice-table h3,
#statement-payment-table h3 {
font-size: 1rem; font-size: 1rem;
margin-bottom: 0; margin-bottom: 0;
} }
@ -260,6 +267,8 @@
<table id="statement-invoice-table" cellspacing="0"></table> <table id="statement-invoice-table" cellspacing="0"></table>
<table id="statement-payment-table" cellspacing="0"></table>
<div id="table-totals" cellspacing="0"></div> <div id="table-totals" cellspacing="0"></div>
</div> </div>