1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/resources/views/pdf-designs/hipster.html

438 lines
12 KiB
HTML
Raw Normal View History

<style id="style">
2021-10-27 14:53:46 +02:00
@import url($font_url);
:root {
--primary-color: $primary_color;
--secondary-color: $secondary_color;
--line-height: 1.6;
}
2022-03-19 02:54:59 +01:00
html {
width: 210mm;
height: 200mm;
}
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%;
}
@page {
margin: $global_margin;
2022-03-18 23:10:39 +01:00
size: $page_size $page_layout;
}
2021-01-14 15:57:14 +01:00
p {
margin: 0;
padding: 0;
}
.header-wrapper {
display: grid;
grid-template-columns: 1.2fr 1.8fr;
gap: 20px;
line-height: var(--line-height);
}
.header-wrapper .header-text-label {
font-size: 1.1rem;
color: var(--primary-color);
text-transform: uppercase;
font-weight: bold;
}
.header-wrapper .header-left-side-wrapper {
grid-template-columns: 1fr 1fr;
gap: 10px;
border-left: 1px solid #303030;
padding-left: 1rem;
}
.header-wrapper .header-left-side-wrapper > * {
margin-bottom: 0.8rem;
}
.header-wrapper .header-left-side-wrapper #company-details,
.header-wrapper .header-left-side-wrapper #company-address {
display: flex;
flex-direction: column;
}
.header-wrapper .header-right-side-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
border-left: 1px solid #303030;
padding-left: 1rem;
}
.header-wrapper .header-right-side-wrapper #client-details {
display: flex;
flex-direction: column;
margin-top: 0.8rem;
}
2021-05-18 13:14:09 +02:00
.header-wrapper {
margin-left: auto;
}
2021-05-18 13:14:09 +02:00
.company-logo {
2021-07-08 11:53:06 +02:00
max-width: 65%;
}
.entity-label {
font-size: 3rem;
text-transform: uppercase;
2021-02-10 12:31:14 +01:00
margin: 2rem 0;
}
.entity-details-wrapper > * {
margin-right: 1.5rem;
}
.entity-details-wrapper .entity-property-label {
text-transform: uppercase;
}
.entity-details-wrapper
[data-element='entity-details-wrapper-invoice-number-label'],
.entity-details-wrapper
[data-element='entity-details-wrapper-amount-due'] {
color: var(--primary-color);
font-weight: bold;
}
2021-08-24 16:43:56 +02:00
[data-ref="table"] {
2022-03-19 02:54:59 +01:00
margin-top: 1rem;
2022-05-19 11:19:46 +02:00
margin-bottom: 50px;
min-width: 100%;
table-layout: fixed;
overflow-wrap: break-word;
}
.task-time-details {
display: block;
margin-top: 5px;
color: grey;
}
2021-08-24 16:43:56 +02:00
[data-ref="table"] > thead {
text-align: left;
text-transform: uppercase;
font-weight: bold;
}
2021-08-24 16:43:56 +02:00
[data-ref="table"] > thead > tr > th {
font-size: 1.1rem;
padding-bottom: 1.5rem;
padding-left: 1rem;
border-left: 1px solid;
}
2021-08-24 16:43:56 +02:00
[data-ref="table"] > thead > tr > th:last-child {
text-align: right;
}
2021-08-24 16:43:56 +02:00
[data-ref="table"] > tbody > tr > td {
padding: 1rem;
border-left: 1px solid;
}
2021-08-24 16:43:56 +02:00
[data-ref="table"] > tbody > tr td:last-child {
text-align: right;
}
2021-02-09 16:47:41 +01:00
#table-totals {
2021-05-20 15:02:44 +02:00
margin-top: 1rem;
display: grid;
2021-02-09 16:47:41 +01:00
grid-template-columns: 2fr 1fr;
padding-top: 0.5rem;
2021-07-21 14:45:42 +02:00
margin-right: .75rem;
2021-02-09 16:47:41 +01:00
gap: 80px;
2022-03-16 08:50:34 +01:00
page-break-inside:auto;
overflow: visible !important;
2021-02-09 16:47:41 +01:00
}
#table-totals .totals-table-right-side>* {
display: grid;
grid-template-columns: 1fr 1fr;
}
#table-totals>.totals-table-right-side>*> :nth-child(1) {
2022-03-06 08:06:07 +01:00
text-align: $dir_text_align;
2021-07-21 14:45:42 +02:00
margin-top: .75rem;
}
#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;
}
2020-11-05 14:47:20 +01:00
#table-totals
> *
[data-element='product-table-balance-due-label'],
2020-11-05 14:47:20 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
font-weight: bold;
}
2020-11-05 14:47:20 +01:00
#table-totals
> *
[data-element='product-table-balance-due'] {
color: var(--primary-color);
}
2020-11-05 14:47:20 +01:00
#table-totals > * > :last-child {
text-align: right;
padding-right: 1rem;
}
2021-05-20 15:02:44 +02:00
#footer {
margin-top: 30px;
}
2021-07-29 11:35:13 +02:00
/** Markdown-specific styles. **/
2021-08-24 16:43:56 +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-16 11:52:38 +02:00
.entity-details-wrapper > * {
direction: $dir;
}
.entity-details-wrapper {
display: flex;
flex-wrap: wrap;
direction: $dir;
}
[data-ref="product_table-product.unit_cost-td"] { text-align: right; }
[data-ref="totals_table-outstanding"] { color: var(--primary-color); }
2021-08-24 16:43:56 +02:00
[data-ref="statement-totals"] {
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-10-29 17:25:14 +02:00
/** .repeating-header,
.repeating-header-space, **/
.repeating-footer,
.repeating-footer-space {
2022-03-16 08:50:34 +01:00
height: 0;
2021-10-29 17:25:14 +02:00
}
.repeating-header {
position: fixed;
top: 0;
}
.repeating-footer {
position: fixed;
bottom: 0;
}
2022-06-21 12:42:43 +02:00
[data-element='product_table-product.description-td'], td {
min-width:100%;
max-width: 300px;
overflow-wrap: break-word;
}
2022-11-17 06:41:23 +01:00
.stamp {
transform: rotate(12deg);
color: #555;
font-size: 3rem;
font-weight: 700;
border: 0.25rem solid #555;
display: inline-block;
padding: 0.25rem 1rem;
text-transform: uppercase;
border-radius: 1rem;
font-family: 'Courier';
mix-blend-mode: multiply;
z-index:200 !important;
position: fixed;
text-align: center;
}
.is-paid {
color: #D23;
border: 1rem double #D23;
transform: rotate(-5deg);
font-size: 6rem;
font-family: "Open sans", Helvetica, Arial, sans-serif;
border-radius: 0;
padding: 0.5rem;
opacity: 0.2;
z-index:200 !important;
position: fixed;
}
2022-11-24 10:33:52 +01:00
.project-header {
font-size: 1.2em;
margin-top: 0.1em;
margin-bottom: 0;
padding-bottom: 0;
margin-left: 0;
margin-right: 0;
font-weight: bold;
color: #505050;
}
.pqrcode {
}
2021-08-10 14:25:27 +02:00
/** Useful snippets, uncomment to enable. **/
2021-08-24 16:43:56 +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 **/
</style>
2021-11-09 17:44:28 +01:00
<table style="min-width: 100%">
2021-10-29 17:25:14 +02:00
<thead>
<tr>
<td>
<div class="repeating-header-space">&nbsp;</div>
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<div id="body">
<div class="header-wrapper">
<div class="header-left-side-wrapper">
<p class="header-text-label">$from_label:</p>
<div id="company-details"></div>
<div id="company-address"></div>
</div>
<div class="header-right-side-wrapper">
<div class="header-right-side-wrapper-left">
<p class="header-text-label">$to_label:</p>
<div id="client-details"></div>
2022-06-07 12:36:47 +02:00
<div id="vendor-details"></div>
2021-10-29 17:25:14 +02:00
</div>
<div class="header-right-side-wrapper-right">
<img
class="company-logo"
src="$company.logo"
alt="$company.name logo"
/>
</div>
</div>
</div>
<h1 class="entity-label">$entity_label</h1>
<div class="entity-details-wrapper">
<div>
<span class="entity-property-label" data-element="entity-details-wrapper-invoice-number-label">
$entity_number_label:
</span>
<span class="entity-property-value">$entity_number</span>
</div>
<div>
<span class="entity-property-label">$date_label:</span>
<span class="entity-property-value">$date</span>
</div>
<div>
<span class="entity-property-label">$payment_due_label:</span>
<span class="entity-property-value">$payment_due</span>
</div>
<div>
<span class="entity-property-label">$amount_due_label:</span>
<span
class="entity-property-value"
data-element="entity-details-wrapper-amount-due"
>$amount_due</span
>
</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>
2020-07-21 16:59:30 +02:00
</div>
2021-10-29 17:25:14 +02:00
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>
<div class="repeating-footer-space">&nbsp;</div>
</td>
</tr>
</tfoot>
</table>
<div class="repeating-header" id="header"></div>
2021-11-30 11:50:50 +01:00
$entity_images
2022-03-16 08:50:34 +01:00
<div class="repeating-footerx" id="footer">
2021-10-29 17:25:14 +02:00
<p data-ref="total_table-footer">$entity_footer</p>
2021-11-30 11:50:50 +01:00
<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',
2022-06-07 12:36:47 +02:00
'statement-invoice-table-totals', 'statement-payment-table-totals', 'statement-aging-table',
'vendor-details','client-details'
2021-11-30 11:50:50 +01:00
];
tables.forEach((tableIdentifier) => {
console.log(document.getElementById(tableIdentifier));
document.getElementById(tableIdentifier)?.childElementCount === 0
? document.getElementById(tableIdentifier).style.setProperty('display', 'none', 'important')
: '';
});
});
</script>
</div>