2020-10-07 18:35:30 +02:00
|
|
|
<style id="style">
|
2021-10-27 14:53:46 +02:00
|
|
|
@import url($font_url);
|
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
:root {
|
|
|
|
--primary-color: #298aab;
|
|
|
|
--secondary-color: #7081e0;
|
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
body {
|
2020-10-07 18:35:30 +02:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2021-10-27 14:53:46 +02:00
|
|
|
font-family: $font_name, Helvetica, sans-serif;
|
2021-08-18 11:25:16 +02:00
|
|
|
font-size: "7px";
|
2021-02-09 16:47:41 +01:00
|
|
|
zoom: 80%;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
body, html {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
@page {
|
2021-10-06 01:35:13 +02:00
|
|
|
margin: 0 !important;
|
2021-10-05 23:42:41 +02:00
|
|
|
size: $page_size $page_layout;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2021-01-14 15:57:14 +01:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
p {
|
2020-10-07 18:35:30 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-10-06 01:35:13 +02:00
|
|
|
#spacer-table > * > tr > td {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#spacer-table{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#header {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
color: white;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1.5fr 1fr;
|
|
|
|
position:fixed;
|
|
|
|
top: 0;
|
2021-10-06 01:35:13 +02:00
|
|
|
width: 100%;
|
2021-10-05 23:42:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#header, #header-spacer {
|
|
|
|
height: 160px;
|
|
|
|
padding: 3rem;
|
|
|
|
margin-bottom: 3rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
.company-name {
|
2021-02-10 12:31:14 +01:00
|
|
|
text-align: left;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2021-02-10 12:31:14 +01:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#header .company-name {
|
|
|
|
font-size: 2rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#entity-details {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: left;
|
|
|
|
color: #fff4e9 !important;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#entity-details > tr,
|
|
|
|
#entity-details th {
|
2020-10-07 18:35:30 +02:00
|
|
|
font-weight: normal;
|
|
|
|
padding-bottom: 0.5rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
.logo-client-wrapper {
|
2021-10-05 23:42:41 +02:00
|
|
|
margin: 0 2rem 3rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1.5fr 1fr;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
.company-logo {
|
|
|
|
max-width: 55%;
|
|
|
|
}
|
2021-05-18 13:14:09 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#client-details {
|
2020-10-07 18:35:30 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#client-details > * {
|
2020-10-07 18:35:30 +02:00
|
|
|
margin-bottom: 0.5rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
.table-wrapper {
|
2021-02-10 12:31:14 +01:00
|
|
|
margin: 3rem 2rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="table"] {
|
2020-10-07 18:35:30 +02:00
|
|
|
min-width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
overflow-wrap: break-word;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
.task-time-details {
|
2021-01-14 15:58:29 +01:00
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
color: grey;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2021-01-14 15:58:29 +01:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="table"] > thead {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: left;
|
2021-01-14 15:57:14 +01:00
|
|
|
width: 100%;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="table"] th + th {
|
2021-03-02 14:28:33 +01:00
|
|
|
border-left: 2px solid white;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2021-03-02 14:28:33 +01:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="table"] > thead > tr > th {
|
2020-10-07 18:35:30 +02:00
|
|
|
padding: 0.8rem;
|
|
|
|
background-color: var(--secondary-color);
|
|
|
|
color: white;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="table"] > thead > tr > th:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td {
|
2020-10-07 18:35:30 +02:00
|
|
|
border-bottom: 1px solid var(--secondary-color);
|
|
|
|
padding: 1rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td:first-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
font-weight: bold;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
#footer {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
width: 100%;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#footer, #footer-spacer {
|
|
|
|
height: 220px;
|
|
|
|
padding: 1rem 3rem;
|
|
|
|
margin-top: 1rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
.footer-content {
|
|
|
|
display: flex;
|
|
|
|
gap: 20px;
|
2020-10-07 18:35:30 +02:00
|
|
|
width: 100%;
|
2021-08-18 11:25:16 +02:00
|
|
|
/* grid-template-columns: 1fr 1fr 1fr; */
|
2020-10-07 18:35:30 +02:00
|
|
|
color: #fff4e9;
|
2021-02-10 12:31:14 +01:00
|
|
|
max-height: 140px;
|
2021-08-18 11:25:16 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
.footer-company-details-address-wrapper {
|
|
|
|
display: flex;
|
|
|
|
gap: 25px;
|
|
|
|
margin-right: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#company-address,
|
|
|
|
#company-details {
|
2020-10-07 18:35:30 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-top: 2rem;
|
|
|
|
margin-bottom: 2rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#company-address > *,
|
|
|
|
#company-details > * {
|
2020-10-07 18:35:30 +02:00
|
|
|
margin-bottom: 0.5rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#table-totals {
|
2020-10-07 18:35:30 +02:00
|
|
|
page-break-inside: avoid;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#table-totals {
|
2020-10-07 18:35:30 +02:00
|
|
|
display: grid;
|
2021-02-09 16:47:41 +01:00
|
|
|
grid-template-columns: 2fr 1fr;
|
2021-08-18 11:25:16 +02:00
|
|
|
padding-top: 0.5rem;
|
2021-02-10 12:31:14 +01:00
|
|
|
padding-left: 3rem;
|
|
|
|
padding-right: 3rem;
|
2021-02-09 16:47:41 +01:00
|
|
|
gap: 80px;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2021-02-09 16:47:41 +01:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#table-totals .totals-table-right-side > * {
|
2021-02-09 16:47:41 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals > .totals-table-right-side > * > :nth-child(1) {
|
|
|
|
text-align: "left";
|
|
|
|
margin-top: 0.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals
|
|
|
|
> .totals-table-right-side
|
|
|
|
> *
|
|
|
|
> :not([hidden])
|
|
|
|
~ :not([hidden]) {
|
2021-07-21 14:45:42 +02:00
|
|
|
--tw-space-y-reverse: 0;
|
2021-08-18 11:25:16 +02:00
|
|
|
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
|
|
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
|
|
}
|
2021-02-09 16:47:41 +01:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
#table-totals > .totals-table-right-side > * > :nth-child(2) {
|
2021-02-09 16:47:41 +01:00
|
|
|
text-align: right;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals > * [data-element="product-table-balance-due-label"],
|
|
|
|
#table-totals > * [data-element="product-table-balance-due"] {
|
2020-10-07 18:35:30 +02:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.3rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
[data-ref="total_table-footer"] {
|
2021-10-05 23:42:41 +02:00
|
|
|
margin-top: 2rem;
|
|
|
|
margin-bottom: 2rem;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2021-05-26 13:09:37 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
table {
|
2021-10-05 23:42:41 +02:00
|
|
|
width: 100%;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2021-05-26 13:09:37 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
table[data-ref="table"] th,
|
|
|
|
table[data-ref="table"] td {
|
|
|
|
padding: 0.2rem 0.4rem;
|
|
|
|
text-align: left;
|
|
|
|
vertical-align: top;
|
|
|
|
border-top: 1px solid #dee2e6;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
2021-07-29 11:35:13 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/** Markdown-specific styles. **/
|
|
|
|
#product-table h3,
|
|
|
|
#task-table h3,
|
|
|
|
#delivery-note-table h3 {
|
2021-07-29 11:35:13 +02:00
|
|
|
font-size: 1rem;
|
|
|
|
margin-bottom: 0;
|
2021-08-18 11:25:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
[data-ref="product_table-product.description-th"] {
|
|
|
|
width: 23%;
|
|
|
|
}
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-24 16:35:58 +02:00
|
|
|
[data-ref="statement-totals"] {
|
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: .75rem;
|
|
|
|
}
|
|
|
|
|
2021-09-02 12:47:06 +02:00
|
|
|
[data-ref*=".line_total-td"] {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/** Useful snippets, uncomment to enable. **/
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/** Hide company logo **/
|
|
|
|
/* .company-logo { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/* Hide company details */
|
|
|
|
/* #company-details > * { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/* Hide company address */
|
|
|
|
/* #company-address > * { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/* Hide public notes */
|
|
|
|
/* [data-ref="total_table-public_notes"] { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/* Hide terms label */
|
|
|
|
/* [data-ref="total_table-terms-label"] { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/* Hide totals table */
|
|
|
|
/* #table-totals { display: none } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/* Hide totals table left side */
|
|
|
|
/* #table-totals div:first-child > * { display: none !important } */
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-18 11:25:16 +02:00
|
|
|
/* Hide totals table right side */
|
|
|
|
/* .totals-table-right-side { display: none } */
|
|
|
|
|
|
|
|
/** For more info, please check our docs: https://invoiceninja.github.io **/
|
|
|
|
/** To find out selectors on your own: https://invoiceninja.github.io/docs/custom-fields/#snippets **/
|
2020-10-07 18:35:30 +02:00
|
|
|
</style>
|
2021-10-05 23:42:41 +02:00
|
|
|
<div id="header">
|
|
|
|
<h1 class="company-name">$company.name</h1>
|
|
|
|
<table id="entity-details" cellspacing="0" dir="$dir"></table>
|
|
|
|
</div>
|
|
|
|
<div id="body">
|
2021-10-06 01:35:13 +02:00
|
|
|
<table id="spacer-table" cellspacing="0">
|
2021-10-05 23:42:41 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div id="header-spacer"></div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="logo-client-wrapper">
|
|
|
|
<img class="company-logo" src="$company.logo" alt="$company.name logo"/>
|
|
|
|
<div id="client-details"></div>
|
|
|
|
</div>
|
|
|
|
<div class="table-wrapper">
|
|
|
|
<table id="product-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
|
|
|
|
<table id="task-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
|
|
|
|
<table id="delivery-note-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
|
|
|
|
<table id="statement-invoice-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-invoice-table-totals" data-ref="statement-totals"></div>
|
|
|
|
|
|
|
|
<table id="statement-payment-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-payment-table-totals" data-ref="statement-totals"></div>
|
|
|
|
|
|
|
|
<table id="statement-aging-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-aging-table-totals" data-ref="statement-totals"></div>
|
|
|
|
</div>
|
|
|
|
<div id="table-totals" cellspacing="0"></div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tfoot>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div id="footer-spacer"></div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
</table>
|
|
|
|
</div>
|
2020-10-07 18:35:30 +02:00
|
|
|
|
2021-10-05 23:42:41 +02:00
|
|
|
<div id="footer">
|
2021-05-26 13:09:37 +02:00
|
|
|
<div class="footer-content">
|
|
|
|
<div>
|
|
|
|
<p data-ref="total_table-footer">$entity_footer</p>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
// Clear up space a bit, if [product-table, tasks-table, delivery-note-table] isn't present.
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2021-08-24 16:35:58 +02:00
|
|
|
let tables = [
|
2021-10-06 01:35:13 +02:00
|
|
|
'product-table', 'task-table', 'delivery-note-table', 'statement-invoice-table-totals', 'statement-payment-table-totals','statement-invoice-table-totals',
|
|
|
|
'statement-invoice-table', 'statement-payment-table', 'statement-aging-table', 'statement-aging-table-totals', 'statement-payment-table-totals'
|
2021-08-24 16:35:58 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
tables.forEach((tableIdentifier) => {
|
2021-05-26 13:09:37 +02:00
|
|
|
document.getElementById(tableIdentifier).childElementCount === 0
|
2021-10-06 01:35:13 +02:00
|
|
|
? document.getElementById(tableIdentifier).remove()
|
2021-10-05 23:42:41 +02:00
|
|
|
: '';
|
2021-05-26 13:09:37 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</div>
|
2021-08-18 11:25:16 +02:00
|
|
|
<div class="footer-company-details-address-wrapper">
|
|
|
|
<div id="company-details"></div>
|
|
|
|
<div id="company-address"></div>
|
|
|
|
</div>
|
2021-05-26 13:09:37 +02:00
|
|
|
</div>
|
|
|
|
</div>
|