mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
7ccd10adf9
- Update designs accordingly - Update ChromiumPdf version - Apply php-cs-fixer
236 lines
5.5 KiB
HTML
236 lines
5.5 KiB
HTML
<style id="style">
|
|
:root {
|
|
--primary-color: $primary_color;
|
|
--secondary-color: $secondary_color;
|
|
}
|
|
|
|
* {
|
|
font-size: "$font_size";
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
margin: $global_margin;
|
|
}
|
|
|
|
.header-wrapper {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
|
|
.header-wrapper .company-logo {
|
|
height: 5rem;
|
|
}
|
|
|
|
.header-wrapper .entity-details-wrapper {
|
|
background-color: var(--primary-color);
|
|
padding: 1rem;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.header-wrapper #entity-details {
|
|
width: 100%;
|
|
color: white;
|
|
text-align: left;
|
|
}
|
|
|
|
.header-wrapper #entity-details > tr,
|
|
.header-wrapper #entity-details th {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.contacts-wrapper {
|
|
margin-top: 3rem;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 40px;
|
|
}
|
|
|
|
.contacts-wrapper .contact-label {
|
|
font-weight: bold;
|
|
color: var(--primary-color);
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.contacts-wrapper #company-address,
|
|
.contacts-wrapper #company-details,
|
|
.contacts-wrapper #client-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.contacts-wrapper .company-info {
|
|
margin-top: 1rem;
|
|
padding: 1rem;
|
|
border-top: 1px solid var(--primary-color);
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 10px;
|
|
}
|
|
|
|
.contacts-wrapper #client-details {
|
|
margin-top: 1rem;
|
|
padding: 1rem;
|
|
border-top: 1px solid var(--primary-color);
|
|
}
|
|
|
|
.contact-wrapper-left-side,
|
|
.contact-wrapper-right-side {
|
|
border-bottom: 1px solid var(--primary-color);
|
|
}
|
|
|
|
#product-table,
|
|
#delivery-note-table,
|
|
#task-table {
|
|
margin-top: 3rem;
|
|
/* margin-bottom: 200px; */
|
|
min-width: 100%;
|
|
table-layout: fixed;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.task-duration {
|
|
display: block;
|
|
margin-top: 5px;
|
|
color: grey;
|
|
}
|
|
|
|
#product-table > thead,
|
|
#delivery-note-table > thead,
|
|
#task-table > thead {
|
|
text-align: left;
|
|
}
|
|
|
|
#product-table > thead > tr > th,
|
|
#delivery-note-table > thead > tr > th,
|
|
#task-table > thead > tr > th {
|
|
font-size: 1.2rem;
|
|
padding: 1rem;
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
#product-table > thead tr > th:last-child,
|
|
#delivery-note-table > thead tr > th:last-child,
|
|
#task-table > thead tr > th:last-child {
|
|
text-align: right;
|
|
}
|
|
|
|
#product-table > thead tr > th:first-child,
|
|
#delivery-note-table > thead tr > th:first-child,
|
|
#task-table > thead tr > th:first-child {
|
|
border-top-left-radius: 10px;
|
|
border-bottom-left-radius: 10px;
|
|
}
|
|
|
|
#product-table > thead tr > th:last-child,
|
|
#delivery-note-table > thead tr > th:last-child,
|
|
#task-table > thead tr > th:last-child {
|
|
border-top-right-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
}
|
|
|
|
#product-table > tbody > tr > td,
|
|
#delivery-note-table > tbody > tr > td,
|
|
#task-table > tbody > tr > td {
|
|
border-bottom: 1px solid var(--primary-color);
|
|
padding: 1rem;
|
|
}
|
|
|
|
#product-table > tbody > tr > td:first-child,
|
|
#delivery-note-table > tbody > tr > td:first-child,
|
|
#task-table > tbody > tr > td:first-child {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
#product-table > tbody > tr > td:last-child,
|
|
#delivery-note-table > tbody > tr > td:last-child,
|
|
#task-table > tbody > tr > td:last-child {
|
|
text-align: right;
|
|
}
|
|
|
|
#table-totals {
|
|
page-break-inside: avoid;
|
|
}
|
|
|
|
#table-totals > * {
|
|
display: grid;
|
|
grid-template-columns: 3fr 1fr 1fr;
|
|
padding-top: 0.5rem;
|
|
padding-left: 1rem;
|
|
gap: 20px;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
</style>
|
|
|
|
<div id="header"></div>
|
|
|
|
<div id="body">
|
|
<div class="header-wrapper">
|
|
<img
|
|
class="company-logo"
|
|
src="$company.logo"
|
|
alt="$company.name logo"
|
|
/>
|
|
|
|
<div></div>
|
|
|
|
<div class="entity-details-wrapper">
|
|
<table id="entity-details" cellspacing="0"></table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="contacts-wrapper">
|
|
<div class="contact-wrapper-left-side">
|
|
<p class="contact-label">$to_label:</p>
|
|
<div class="company-info">
|
|
<div id="company-details"></div>
|
|
<div id="company-address"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="contact-wrapper-right-side">
|
|
<p class="contact-label">$from_label:</p>
|
|
<div id="client-details"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<table id="product-table" cellspacing="0"></table>
|
|
|
|
<table id="task-table" cellspacing="0"></table>
|
|
|
|
<div id="table-totals" cellspacing="0"></div>
|
|
|
|
<table id="delivery-note-table" cellspacing="0"></table>
|
|
</div>
|
|
|
|
<div id="footer">$entity_footer</div>
|
|
|