Add #statement-invoice-table to Plain

This commit is contained in:
Benjamin Beganović 2021-08-20 15:40:09 +02:00
parent 2553297edd
commit 3912e8c4fe

View File

@ -70,7 +70,8 @@
#product-table, #product-table,
#delivery-note-table, #delivery-note-table,
#task-table { #task-table,
#statement-invoice-table {
min-width: 100%; min-width: 100%;
table-layout: fixed; table-layout: fixed;
overflow-wrap: break-word; overflow-wrap: break-word;
@ -86,33 +87,38 @@
#product-table > thead, #product-table > thead,
#delivery-note-table > thead, #delivery-note-table > thead,
#task-table > thead { #task-table > thead,
#statement-invoice-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 {
padding: 1rem; padding: 1rem;
background-color: #e6e6e6; background-color: #e6e6e6;
} }
#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 {
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 {
border-bottom: 1px solid #e6e6e6; border-bottom: 1px solid #e6e6e6;
padding: 1rem; padding: 1rem;
} }
#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 {
text-align: right; text-align: right;
} }
@ -181,7 +187,8 @@
/** Markdown-specific styles. **/ /** Markdown-specific styles. **/
#product-table h3, #product-table h3,
#task-table h3, #task-table h3,
#delivery-note-table h3 { #delivery-note-table,
#statement-invoice-table h3 {
font-size: 1rem; font-size: 1rem;
margin-bottom: 0; margin-bottom: 0;
} }
@ -251,6 +258,8 @@
<table id="delivery-note-table" cellspacing="0"></table> <table id="delivery-note-table" cellspacing="0"></table>
<table id="statement-invoice-table" cellspacing="0"></table>
<div id="table-totals" cellspacing="0"></div> <div id="table-totals" cellspacing="0"></div>
</div> </div>