mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
302 lines
7.4 KiB
HTML
302 lines
7.4 KiB
HTML
<style id="style">
|
|
:root {
|
|
--primary-color: $primary_color;
|
|
--secondary-color: $secondary_color;
|
|
--line-height: 1.6;
|
|
}
|
|
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: "$font_size";
|
|
zoom: 80%;
|
|
}
|
|
|
|
@page {
|
|
margin: $global_margin;
|
|
size: $page_size $page_layout;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.header-container {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
gap: 20px;
|
|
}
|
|
|
|
.company-logo {
|
|
max-width: 65%;
|
|
}
|
|
|
|
#company-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
line-height: var(--line-height);
|
|
}
|
|
|
|
#company-details > p:first-child {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
#company-address {
|
|
display: flex;
|
|
flex-direction: column;
|
|
line-height: var(--line-height);
|
|
}
|
|
|
|
.entity-label {
|
|
margin-top: 2.5rem;
|
|
text-transform: uppercase;
|
|
padding-left: 1rem;
|
|
margin-bottom: 1rem;
|
|
font-weight: bold;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.client-and-entity-wrapper {
|
|
display: flex;
|
|
padding: 1rem;
|
|
border-top: 1px solid #d8d8d8;
|
|
border-bottom: 1px solid #d8d8d8;
|
|
}
|
|
|
|
#entity-details {
|
|
text-align: left;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#entity-details > tr,
|
|
#entity-details th {
|
|
font-weight: normal;
|
|
padding-right: 15px;
|
|
padding-top: 2.5px;
|
|
padding-bottom: 2.5px;
|
|
}
|
|
|
|
#client-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
line-height: var(--line-height);
|
|
}
|
|
|
|
#client-details > :first-child {
|
|
font-weight: bold;
|
|
}
|
|
|
|
[data-ref="table"] {
|
|
margin-top: 3rem;
|
|
/* margin-bottom: 200px; */
|
|
min-width: 100%;
|
|
table-layout: fixed;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.task-time-details {
|
|
display: block;
|
|
margin-top: 5px;
|
|
color: grey;
|
|
}
|
|
|
|
[data-ref="table"] > thead {
|
|
text-align: left;
|
|
}
|
|
|
|
[data-ref="table"] > thead > tr > th {
|
|
font-size: 1.1rem;
|
|
padding-bottom: 1.5rem;
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
[data-ref="table"] > tbody > tr > td {
|
|
border-top: 1px solid #d8d8d8;
|
|
border-bottom: 1px solid #d8d8d8;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
[data-ref="table"] > tbody > tr > td:first-child {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
[data-ref="table"] > tbody > tr > td:last-child {
|
|
text-align: right;
|
|
}
|
|
|
|
[data-ref="table"] > tbody > tr:nth-child(odd) {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
#table-totals {
|
|
page-break-inside: avoid;
|
|
}
|
|
|
|
#table-totals {
|
|
margin-top: 1rem;
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
padding-top: .5rem;
|
|
padding-right: 1rem;
|
|
gap: 80px;
|
|
}
|
|
|
|
#table-totals .totals-table-right-side > * {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
#table-totals>.totals-table-right-side>*> :nth-child(1) {
|
|
text-align: "$dir_text_align";
|
|
margin-top: .75rem;
|
|
}
|
|
|
|
#table-totals>.totals-table-right-side>*> :nth-child(2) {
|
|
text-align: right;
|
|
}
|
|
|
|
#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));
|
|
}
|
|
|
|
#table-totals
|
|
> *
|
|
[data-element='product-table-balance-due-label'],
|
|
#table-totals
|
|
> *
|
|
[data-element='product-table-balance-due'] {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#table-totals
|
|
> *
|
|
[data-element='product-table-balance-due'] {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
#table-totals > * > :last-child {
|
|
text-align: right;
|
|
padding-right: 1rem;
|
|
}
|
|
|
|
#footer {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
/** Markdown-specific styles. **/
|
|
#product-table h3,
|
|
#task-table h3,
|
|
#delivery-note-table h3 {
|
|
font-size: 1rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.company-logo-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
[data-ref="statement-totals"] {
|
|
margin-top: 1rem;
|
|
text-align: right;
|
|
margin-right: .75rem;
|
|
}
|
|
|
|
[data-ref*=".line_total-td"] {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/** Useful snippets, uncomment to enable. **/
|
|
|
|
/** 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 **/
|
|
</style>
|
|
|
|
<div id="header"></div>
|
|
|
|
<div id="body">
|
|
<div class="header-container">
|
|
<div class="company-logo-container">
|
|
<img class="company-logo" src="$company.logo" alt="$company.name logo">
|
|
</div>
|
|
|
|
<div id="company-details"></div>
|
|
<div id="company-address"></div>
|
|
</div>
|
|
|
|
<p class="entity-label">$entity_label</p>
|
|
<div class="client-and-entity-wrapper">
|
|
<div>
|
|
<table id="entity-details" cellspacing="0" dir="$dir"></table>
|
|
</div>
|
|
|
|
<div id="client-details"></div>
|
|
</div>
|
|
|
|
<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 id="table-totals" cellspacing="0"></div>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<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', () => {
|
|
let tables = [
|
|
'product-table', 'task-table', 'delivery-note-table',
|
|
'statement-invoice-table', 'statement-payment-table', 'statement-aging-table-totals',
|
|
];
|
|
|
|
tables.forEach((tableIdentifier) => {
|
|
document.getElementById(tableIdentifier).childElementCount === 0
|
|
? document.getElementById(tableIdentifier).style.display = 'none'
|
|
: '';
|
|
});
|
|
});
|
|
</script>
|
|
</div>
|