mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
369 lines
9.3 KiB
HTML
369 lines
9.3 KiB
HTML
<style id="style">
|
|
@import url($font_url);
|
|
|
|
: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: $font_name, 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: 1.8fr 1fr 1fr;
|
|
grid-gap: 20px;
|
|
}
|
|
|
|
.company-logo {
|
|
max-width: 65%;
|
|
}
|
|
|
|
.header-container > span {
|
|
display: block;
|
|
}
|
|
|
|
#company-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: #AAA9A9;
|
|
line-height: var(--line-height);
|
|
}
|
|
|
|
#company-address {
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: #b1b1b1;
|
|
line-height: var(--line-height);
|
|
}
|
|
|
|
.entity-issued-to {
|
|
margin-top: 3rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.client-and-entity-wrapper {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
}
|
|
|
|
#client-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 1rem;
|
|
line-height: var(--line-height);
|
|
}
|
|
|
|
#client-details > p:nth-child(1) {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
#entity-details {
|
|
background-color: var(--primary-color);
|
|
padding: 1.2rem;
|
|
border-radius: 1rem;
|
|
width: 100%;
|
|
color: white;
|
|
text-align: left;
|
|
}
|
|
|
|
#entity-details p { margin-right: 20px; }
|
|
|
|
#entity-details th {
|
|
font-weight: normal;
|
|
padding-bottom: .5rem;
|
|
}
|
|
|
|
#entity-details > tbody > tr > th:nth-child(2) {
|
|
text-align: right;
|
|
}
|
|
|
|
[data-ref="table"] {
|
|
margin-top: 3.5rem;
|
|
/* 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;
|
|
background: var(--secondary-color);
|
|
}
|
|
|
|
[data-ref="table"] > thead > tr > th {
|
|
padding: 1rem;
|
|
color: white;
|
|
font-weight: semibold;
|
|
}
|
|
|
|
[data-ref="table"] > thead > tr > th:first-child {
|
|
border-top-left-radius: 1rem;
|
|
}
|
|
|
|
[data-ref="table"] > thead > tr > th:last-child {
|
|
border-top-right-radius: 1rem;
|
|
text-align: right;
|
|
}
|
|
|
|
[data-ref="table"] > tbody > tr > td {
|
|
padding: 1rem;
|
|
}
|
|
|
|
[data-ref="table"] > tbody > tr > td:last-child {
|
|
text-align: right;
|
|
}
|
|
|
|
[data-ref="table"] > tbody > tr:nth-child(odd) > td {
|
|
background: #F7F7F7;
|
|
}
|
|
|
|
[data-ref="table"] > tbody > tr:nth-child(even) > td {
|
|
background: #f7f7f7;
|
|
}
|
|
|
|
[data-element='product-table-balance-due-label'],
|
|
[data-element='product-table-balance-due'],
|
|
[data-element='task-table-balance-due-label'],
|
|
[data-element='task-table-balance-due'] {
|
|
color: var(--secondary-color) !important;
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
#table-totals {
|
|
page-break-inside: avoid;
|
|
}
|
|
|
|
#table-totals > *:last-child {
|
|
border-bottom-left-radius: 1rem;
|
|
border-bottom-right-radius: 1rem;
|
|
}
|
|
|
|
#table-totals {
|
|
margin-top: 1rem;
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 80px;
|
|
padding-left: 1rem;
|
|
padding-top: 0.5rem;
|
|
padding-bottom: 0.8rem;
|
|
margin-right: .5rem;
|
|
}
|
|
|
|
#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;
|
|
padding-left: 7px;
|
|
}
|
|
|
|
#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>.totals-table-right-side>*> :nth-child(2) {
|
|
text-align: right;
|
|
padding-right: 7px;
|
|
}
|
|
|
|
#table-totals
|
|
> *
|
|
[data-element='product-table-balance-due-label'],
|
|
#table-totals
|
|
> *
|
|
[data-element='product-table-balance-due'] {
|
|
font-weight: bold;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
#table-totals
|
|
> *
|
|
[data-element='product-table-balance-due'] {
|
|
color: red;
|
|
}
|
|
|
|
#table-totals > * > :last-child {
|
|
text-align: right;
|
|
padding-right: 1rem;
|
|
}
|
|
|
|
[data-ref="total_table-footer"] {
|
|
padding-left: 1rem
|
|
}
|
|
|
|
#footer {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
/** Markdown-specific styles. **/
|
|
[data-ref="table"] h3 {
|
|
font-size: 1rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
[data-ref="totals_table-outstanding-label"],
|
|
[data-ref="totals_table-outstanding"] {
|
|
background-color: var(--secondary-color);
|
|
color: white;
|
|
padding-top: 7px;
|
|
padding-bottom: 7px;
|
|
padding-right: 7px;
|
|
}
|
|
|
|
[data-ref="statement-totals"] {
|
|
margin-top: 1rem;
|
|
text-align: right;
|
|
margin-right: .75rem;
|
|
}
|
|
|
|
[data-ref*=".line_total-td"] {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/** .repeating-header,
|
|
.repeating-header-space, **/
|
|
.repeating-footer,
|
|
.repeating-footer-space {
|
|
height: 160px;
|
|
}
|
|
.repeating-header {
|
|
position: fixed;
|
|
top: 0;
|
|
}
|
|
.repeating-footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|
|
|
|
/** 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>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td>
|
|
<div class="repeating-header-space"> </div>
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<div id="body">
|
|
<div class="header-container">
|
|
<img
|
|
src="$company.logo"
|
|
class="company-logo"
|
|
alt="$company.name logo"
|
|
/>
|
|
<div id="company-details"></div>
|
|
<div id="company-address"></div>
|
|
</div>
|
|
<p class="entity-issued-to">$entity_issued_to_label:</p>
|
|
<div class="client-and-entity-wrapper">
|
|
<div id="client-details"></div>
|
|
<div class="entity-details-wrapper">
|
|
<table id="entity-details" cellspacing="0" dir="$dir"></table>
|
|
</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>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td>
|
|
<div class="repeating-footer-space"> </div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
<div class="repeating-header" id="header"></div>
|
|
|
|
<div class="repeating-footer" id="footer">
|
|
<p data-ref="total_table-footer">$entity_footer</p>
|
|
</div>
|
|
|
|
<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>
|