2020-10-07 18:35:30 +02:00
|
|
|
<style id="style">
|
2021-10-27 14:53:46 +02:00
|
|
|
@import url($font_url);
|
|
|
|
|
2021-01-14 15:57:14 +01:00
|
|
|
:root {
|
|
|
|
--primary-color: $primary_color;
|
|
|
|
--secondary-color: $secondary_color;
|
2021-08-24 15:34:40 +02:00
|
|
|
--line-height: 1.6;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
-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-01-14 15:57:14 +01:00
|
|
|
font-size: "$font_size";
|
2021-02-09 16:47:41 +01:00
|
|
|
zoom: 80%;
|
2021-01-14 15:57:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@page {
|
2020-12-15 11:45:04 +01:00
|
|
|
margin: $global_margin;
|
2021-04-08 17:49:28 +02:00
|
|
|
size: $page_size $page_layout;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-01-14 15:57:14 +01:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
.header-wrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
2021-08-17 18:51:20 +02:00
|
|
|
line-height: var(--line-height);
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-05-18 13:14:09 +02:00
|
|
|
.company-logo {
|
2021-07-08 11:53:06 +02:00
|
|
|
max-width: 65%;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper #company-address {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-17 18:51:20 +02:00
|
|
|
line-height: var(--line-height);
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper #entity-details {
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper #entity-details > tr,
|
|
|
|
.header-wrapper #entity-details th {
|
|
|
|
font-weight: normal;
|
|
|
|
padding-left: 0.9rem;
|
|
|
|
padding-top: 0.3rem;
|
|
|
|
padding-bottom: 0.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-wrapper
|
|
|
|
#entity-details
|
|
|
|
[data-element='entity-balance-due-label'],
|
|
|
|
.header-wrapper
|
|
|
|
#entity-details
|
|
|
|
[data-element='entity-balance-due'] {
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
}
|
|
|
|
|
|
|
|
#client-details {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-17 18:51:20 +02:00
|
|
|
line-height: var(--line-height);
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
[data-ref="table"] {
|
2020-10-07 18:35:30 +02:00
|
|
|
min-width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
margin-top: 3rem;
|
2020-11-06 13:12:28 +01:00
|
|
|
/* margin-bottom: 200px; */
|
|
|
|
}
|
|
|
|
|
2021-01-14 15:58:29 +01:00
|
|
|
.task-time-details {
|
2020-11-06 13:12:28 +01:00
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
color: grey;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
[data-ref="table"] > thead {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
[data-ref="table"] > thead > tr > th {
|
2020-10-07 18:35:30 +02:00
|
|
|
padding: 1rem;
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
[data-ref="table"] > thead > tr > th:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td {
|
2020-10-07 18:35:30 +02:00
|
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
[data-ref="table"] > tbody > tr > td:last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-11-04 11:23:06 +01:00
|
|
|
#table-totals {
|
2020-10-07 18:35:30 +02:00
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
|
2021-02-09 16:47:41 +01:00
|
|
|
#table-totals {
|
2021-05-20 14:55:32 +02:00
|
|
|
margin-top: 1rem;
|
2020-10-07 18:35:30 +02:00
|
|
|
display: grid;
|
2021-02-09 16:47:41 +01:00
|
|
|
grid-template-columns: 2fr 1fr;
|
2020-10-07 18:35:30 +02:00
|
|
|
padding-top: .5rem;
|
|
|
|
padding-left: 1rem;
|
2021-07-21 14:45:42 +02:00
|
|
|
margin-right: .75rem;
|
2021-02-09 16:47:41 +01:00
|
|
|
gap: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals .totals-table-right-side>* {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals>.totals-table-right-side>*> :nth-child(1) {
|
2021-08-16 11:27:43 +02:00
|
|
|
text-align: "$dir_text_align";
|
2021-07-21 14:45:42 +02:00
|
|
|
margin-top: .75rem;
|
2021-08-17 18:58:17 +02:00
|
|
|
padding-left: 7px;
|
2021-07-21 14:45:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals>.totals-table-right-side> * > :not([hidden]) ~ :not([hidden]) {
|
|
|
|
--tw-space-y-reverse: 0;
|
|
|
|
margin-top: calc(.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
|
|
margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
|
2021-02-09 16:47:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#table-totals>.totals-table-right-side>*> :nth-child(2) {
|
|
|
|
text-align: right;
|
2021-08-17 18:58:17 +02:00
|
|
|
padding-right: 7px;
|
2020-10-07 18:35:30 +02:00
|
|
|
}
|
|
|
|
|
2020-11-04 11:23:06 +01:00
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
2020-11-04 11:23:06 +01:00
|
|
|
[data-element='total-table-balance-due-label'],
|
|
|
|
#table-totals
|
2020-10-07 18:35:30 +02:00
|
|
|
> *
|
2020-11-04 11:23:06 +01:00
|
|
|
[data-element='total-table-balance-due'] {
|
2020-10-07 18:35:30 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-11-04 11:23:06 +01:00
|
|
|
#table-totals > * > :last-child {
|
2020-10-07 18:35:30 +02:00
|
|
|
text-align: right;
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
2021-04-19 13:51:00 +02:00
|
|
|
|
2021-04-25 15:22:29 +02:00
|
|
|
[data-ref="total_table-footer"] {
|
2021-04-19 13:51:00 +02:00
|
|
|
padding-left: 1rem
|
|
|
|
}
|
2021-05-20 14:55:32 +02:00
|
|
|
|
|
|
|
#footer {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
2021-05-29 13:39:20 +02:00
|
|
|
|
|
|
|
[data-ref="totals_table-outstanding"] {
|
|
|
|
color: var(--primary-color)
|
|
|
|
}
|
2021-07-29 11:35:13 +02:00
|
|
|
|
|
|
|
/** Markdown-specific styles. **/
|
2021-08-24 16:40:28 +02:00
|
|
|
[data-ref="table"] h3 {
|
2021-07-29 11:35:13 +02:00
|
|
|
font-size: 1rem;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-08-10 14:25:27 +02:00
|
|
|
|
2021-08-17 18:58:17 +02:00
|
|
|
[data-ref="totals_table-outstanding-label"],
|
|
|
|
[data-ref="totals_table-outstanding"] {
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
color: black;
|
|
|
|
padding-top: 7px;
|
|
|
|
padding-bottom: 7px;
|
|
|
|
padding-right: 7px;
|
|
|
|
}
|
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
[data-ref="statement-totals"] {
|
2021-08-24 15:34:40 +02:00
|
|
|
margin-top: 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-10 14:25:27 +02:00
|
|
|
/** Useful snippets, uncomment to enable. **/
|
2021-08-24 15:34:40 +02:00
|
|
|
|
2021-08-10 14:25:27 +02:00
|
|
|
/** Hide company logo **/
|
|
|
|
/* .company-logo { display: none } */
|
|
|
|
|
|
|
|
/* Hide company details */
|
|
|
|
/* #company-details > * { display: none } */
|
|
|
|
|
|
|
|
/* Hide company address */
|
|
|
|
/* #company-address > * { display: none } */
|
|
|
|
|
|
|
|
/* Hide public notes */
|
|
|
|
/* [data-ref="total_table-public_notes"] { display: none } */
|
|
|
|
|
|
|
|
/* Hide terms label */
|
|
|
|
/* [data-ref="total_table-terms-label"] { display: none } */
|
|
|
|
|
|
|
|
/* Hide totals table */
|
|
|
|
/* #table-totals { display: none } */
|
|
|
|
|
|
|
|
/* Hide totals table left side */
|
|
|
|
/* #table-totals div:first-child > * { display: none !important } */
|
|
|
|
|
|
|
|
/* 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-08-17 18:51:20 +02:00
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
<div id="header"></div>
|
|
|
|
|
|
|
|
<div id="body">
|
|
|
|
<div class="header-wrapper">
|
2021-03-10 16:56:41 +01:00
|
|
|
<div id="company-details"></div>
|
2020-10-07 18:35:30 +02:00
|
|
|
<div id="company-address"></div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
class="company-logo"
|
|
|
|
src="$company.logo"
|
|
|
|
alt="$company.name logo"
|
|
|
|
/>
|
|
|
|
|
2021-08-16 11:27:43 +02:00
|
|
|
<table id="entity-details" cellspacing="0" dir="$dir"></table>
|
2020-07-20 17:41:07 +02:00
|
|
|
</div>
|
2020-10-07 18:35:30 +02:00
|
|
|
</div>
|
2020-07-20 17:41:07 +02:00
|
|
|
|
2020-10-07 18:35:30 +02:00
|
|
|
<div id="client-details"></div>
|
2020-09-08 13:14:44 +02:00
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
<table id="product-table" cellspacing="0" data-ref="table"></table>
|
2020-07-20 17:41:07 +02:00
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
<table id="task-table" cellspacing="0" data-ref="table"></table>
|
2020-11-04 14:42:29 +01:00
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
<table id="delivery-note-table" cellspacing="0" data-ref="table"></table>
|
2021-05-20 14:55:32 +02:00
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
<table id="statement-invoice-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-invoice-table-totals" data-ref="statement-totals"></div>
|
2021-08-20 15:40:09 +02:00
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
<table id="statement-payment-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-payment-table-totals" data-ref="statement-totals"></div>
|
2021-08-23 14:22:38 +02:00
|
|
|
|
2021-08-24 16:25:01 +02:00
|
|
|
<table id="statement-aging-table" cellspacing="0" data-ref="table"></table>
|
|
|
|
<div id="statement-aging-table-totals" data-ref="statement-totals"></div>
|
2021-08-23 14:50:52 +02:00
|
|
|
|
2021-05-20 14:55:32 +02:00
|
|
|
<div id="table-totals" cellspacing="0"></div>
|
2020-10-07 18:35:30 +02:00
|
|
|
</div>
|
|
|
|
|
2021-04-19 13:51:00 +02:00
|
|
|
<div id="footer">
|
2021-04-25 15:17:47 +02:00
|
|
|
<p data-ref="total_table-footer">$entity_footer</p>
|
2021-05-20 14:55:32 +02:00
|
|
|
|
|
|
|
<script>
|
|
|
|
// Clear up space a bit, if [product-table, tasks-table, delivery-note-table] isn't present.
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2021-08-24 16:13:52 +02:00
|
|
|
let tables = [
|
|
|
|
'product-table', 'task-table', 'delivery-note-table',
|
|
|
|
'statement-invoice-table', 'statement-payment-table', 'statement-aging-table-totals',
|
|
|
|
];
|
|
|
|
|
|
|
|
tables.forEach((tableIdentifier) => {
|
2021-05-20 14:55:32 +02:00
|
|
|
document.getElementById(tableIdentifier).childElementCount === 0
|
|
|
|
? document.getElementById(tableIdentifier).style.display = 'none'
|
|
|
|
: '';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2021-04-19 13:51:00 +02:00
|
|
|
</div>
|