mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Plain design shipping address
This commit is contained in:
parent
434ef21043
commit
c55e5298fc
@ -15,7 +15,9 @@
|
||||
zoom: 80%;
|
||||
}
|
||||
|
||||
table tr td, table tr, th {
|
||||
table tr td,
|
||||
table tr,
|
||||
th {
|
||||
font-size: $font_size !important;
|
||||
}
|
||||
|
||||
@ -42,12 +44,21 @@
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
line-height: var(--line-height);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.client-wrapper{
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-areas: "a b";
|
||||
grid-auto-columns: minmax(0, 1fr);
|
||||
grid-auto-flow: column;
|
||||
justify-content:left;
|
||||
}
|
||||
|
||||
.company-logo {
|
||||
/* max-width: 65%;*/
|
||||
max-width: $company_logo_size;
|
||||
max-width: 65%;
|
||||
/* max-width: $company_logo_size;*/
|
||||
}
|
||||
|
||||
.header-wrapper #company-address {
|
||||
@ -62,7 +73,7 @@
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header-wrapper #entity-details > tr,
|
||||
.header-wrapper #entity-details>tr,
|
||||
.header-wrapper #entity-details th {
|
||||
font-weight: normal;
|
||||
padding-left: 0.9rem;
|
||||
@ -70,37 +81,23 @@
|
||||
padding-bottom: 0.3rem;
|
||||
}
|
||||
|
||||
.entity-details-cell {
|
||||
display: table-cell;
|
||||
border-right: 10px solid transparent;
|
||||
}
|
||||
|
||||
.header-wrapper
|
||||
#entity-details
|
||||
[data-element='entity-balance-due-label'],
|
||||
.header-wrapper
|
||||
#entity-details
|
||||
[data-element='entity-balance-due'] {
|
||||
.header-wrapper #entity-details [data-element='entity-balance-due-label'],
|
||||
.header-wrapper #entity-details [data-element='entity-balance-due'] {
|
||||
background-color: #e6e6e6;
|
||||
}
|
||||
|
||||
.client-or-vendor-wrapper {
|
||||
display: flex;
|
||||
padding: 0.2rem;
|
||||
}
|
||||
|
||||
#client-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-right: 30px;
|
||||
line-height: var(--line-height);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#shipping-details {
|
||||
display: $show_shipping_address;
|
||||
flex-direction: column;
|
||||
padding-right: 30px;
|
||||
line-height: var(--line-height);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
[data-ref="table"] {
|
||||
@ -108,7 +105,7 @@
|
||||
min-width: 100%;
|
||||
table-layout: fixed;
|
||||
overflow-wrap: break-word;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.task-time-details {
|
||||
@ -117,25 +114,25 @@
|
||||
color: grey;
|
||||
}
|
||||
|
||||
[data-ref="table"] > thead {
|
||||
[data-ref="table"]>thead {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
[data-ref="table"] > thead > tr > th {
|
||||
[data-ref="table"]>thead>tr>th {
|
||||
padding: 0.5rem;
|
||||
background-color: #e6e6e6;
|
||||
}
|
||||
|
||||
[data-ref="table"] > thead > tr > th:last-child {
|
||||
[data-ref="table"]>thead>tr>th:last-child {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
[data-ref="table"] > tbody > tr > td {
|
||||
[data-ref="table"]>tbody>tr>td {
|
||||
border-bottom: 1px solid #e6e6e6;
|
||||
padding: 0.75rem;
|
||||
}
|
||||
|
||||
[data-ref="table"] > tbody > tr > td:last-child {
|
||||
[data-ref="table"]>tbody>tr>td:last-child {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
@ -147,7 +144,7 @@
|
||||
padding-left: 1rem;
|
||||
margin-right: .75rem;
|
||||
gap: 80px;
|
||||
page-break-inside:auto;
|
||||
page-break-inside: auto;
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
@ -162,7 +159,7 @@
|
||||
padding-left: 7px;
|
||||
}
|
||||
|
||||
#table-totals>.totals-table-right-side> * > :not([hidden]) ~ :not([hidden]) {
|
||||
#table-totals>.totals-table-right-side>*> :not([hidden])~ :not([hidden]) {
|
||||
--tw-space-y-reverse: 0;
|
||||
margin-top: calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
|
||||
margin-bottom: calc(.25rem * var(--tw-space-y-reverse));
|
||||
@ -173,16 +170,12 @@
|
||||
padding-right: 7px;
|
||||
}
|
||||
|
||||
#table-totals
|
||||
> *
|
||||
[data-element='total-table-balance-due-label'],
|
||||
#table-totals
|
||||
> *
|
||||
[data-element='total-table-balance-due'] {
|
||||
#table-totals>* [data-element='total-table-balance-due-label'],
|
||||
#table-totals>* [data-element='total-table-balance-due'] {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#table-totals > * > :last-child {
|
||||
#table-totals>*> :last-child {
|
||||
text-align: right;
|
||||
padding-right: 1rem;
|
||||
}
|
||||
@ -230,17 +223,20 @@
|
||||
.repeating-footer-space {
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.repeating-header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.repeating-footer {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
[data-element='product_table-product.description-td'], td {
|
||||
min-width:100%;
|
||||
[data-element='product_table-product.description-td'],
|
||||
td {
|
||||
min-width: 100%;
|
||||
max-width: 300px;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
@ -257,7 +253,7 @@
|
||||
border-radius: 1rem;
|
||||
font-family: 'Courier';
|
||||
mix-blend-mode: multiply;
|
||||
z-index:200 !important;
|
||||
z-index: 200 !important;
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
}
|
||||
@ -271,10 +267,8 @@
|
||||
border-radius: 0;
|
||||
padding: 0.5rem;
|
||||
opacity: 0.2;
|
||||
z-index:200 !important;
|
||||
z-index: 200 !important;
|
||||
position: fixed;
|
||||
display: $show_paid_stamp;
|
||||
|
||||
}
|
||||
|
||||
.project-header {
|
||||
@ -288,9 +282,7 @@
|
||||
color: #505050;
|
||||
}
|
||||
|
||||
.pqrcode {
|
||||
|
||||
}
|
||||
.pqrcode {}
|
||||
|
||||
/** Useful snippets, uncomment to enable. **/
|
||||
|
||||
@ -338,15 +330,11 @@
|
||||
<div id="company-details"></div>
|
||||
<div id="company-address"></div>
|
||||
<div>
|
||||
<img
|
||||
class="company-logo"
|
||||
src="$company.logo"
|
||||
alt="$company.name logo"
|
||||
/>
|
||||
<div id="entity-details"></div>
|
||||
<img class="company-logo" src="$company.logo" alt="$company.name logo" />
|
||||
<table id="entity-details" cellspacing="0" dir="$dir"></table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-wrapper">
|
||||
<div class="client-wrapper">
|
||||
<div id="client-details"></div>
|
||||
<div id="vendor-details"></div>
|
||||
<div id="shipping-details"></div>
|
||||
@ -360,7 +348,7 @@
|
||||
<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 id="table-totals" cellspacing="0">$status_logo</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@ -388,7 +376,7 @@ $entity_images
|
||||
'product-table', 'task-table', 'delivery-note-table',
|
||||
'statement-invoice-table', 'statement-payment-table', 'statement-aging-table-totals',
|
||||
'statement-invoice-table-totals', 'statement-payment-table-totals', 'statement-aging-table',
|
||||
'client-details','vendor-details'
|
||||
'client-details', 'vendor-details'
|
||||
];
|
||||
|
||||
tables.forEach((tableIdentifier) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user