mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:47:32 -05:00 
			
		
		
		
	New Design
This commit is contained in:
		
							parent
							
								
									2e0a7069a2
								
							
						
					
					
						commit
						72481481fe
					
				
							
								
								
									
										383
									
								
								resources/views/pdf-designs/calmness.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										383
									
								
								resources/views/pdf-designs/calmness.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,383 @@
 | 
			
		||||
<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%;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
   html {
 | 
			
		||||
        margin: 0;
 | 
			
		||||
        padding-top: 1rem;
 | 
			
		||||
        padding-left: 4rem;
 | 
			
		||||
	    padding-right: 4rem; 
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @page {
 | 
			
		||||
        margin: 0 !important;
 | 
			
		||||
        size: $page_size $page_layout;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    p {
 | 
			
		||||
        margin: 0;
 | 
			
		||||
        padding: 0;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .header-wrapper {
 | 
			
		||||
        display: grid;
 | 
			
		||||
        grid-template-columns: 1fr 0.5fr;
 | 
			
		||||
        line-height: var(--line-height);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .header-wrapper2 {
 | 
			
		||||
        display: grid;
 | 
			
		||||
        grid-template-columns: 1fr 0.5fr;
 | 
			
		||||
        margin-top: 2rem;
 | 
			
		||||
        min-width: 100%;
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    .company-logo {
 | 
			
		||||
        max-width: 65%;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .client-and-entity-wrapper {
 | 
			
		||||
        display: flex;
 | 
			
		||||
        padding: 1rem;
 | 
			
		||||
        border-top: 1px solid #d8d8d8;
 | 
			
		||||
        border-bottom: 1px solid #d8d8d8;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .header-wrapper #company-address {
 | 
			
		||||
        display: flex;
 | 
			
		||||
        flex-direction: column;
 | 
			
		||||
        line-height: var(--line-height);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .header-wrapper #entity-details {
 | 
			
		||||
        margin-top: 0.5rem;
 | 
			
		||||
        text-align: left;
 | 
			
		||||
        width: 100%;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .header-wrapper #entity-details > tr,
 | 
			
		||||
    .header-wrapper #entity-details th {
 | 
			
		||||
        font-weight: normal;
 | 
			
		||||
        padding-left: 0.9rem;
 | 
			
		||||
        padding-top: 0.3rem;
 | 
			
		||||
        padding-bottom: 0.3rem;
 | 
			
		||||
    }
 | 
			
		||||
	
 | 
			
		||||
    .header-wrapper
 | 
			
		||||
    #entity-details
 | 
			
		||||
    [data-element='entity-balance-due-label'],
 | 
			
		||||
    .header-wrapper
 | 
			
		||||
    #entity-details
 | 
			
		||||
    [data-element='entity-balance-due'] {
 | 
			
		||||
        background-color: #e6e6e6;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #client-details {
 | 
			
		||||
        display: flex;
 | 
			
		||||
        flex-direction: column;
 | 
			
		||||
        line-height: var(--line-height);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    [data-ref="table"] {
 | 
			
		||||
        margin-top: 2rem;
 | 
			
		||||
        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 {
 | 
			
		||||
        padding: 1rem;
 | 
			
		||||
        background-color: #f5f5f5;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    [data-ref="table"] > thead > tr > th:last-child {
 | 
			
		||||
        text-align: right;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    [data-ref="table"] > tbody > tr > td {
 | 
			
		||||
        border-bottom: 1px solid #e6e6e6;
 | 
			
		||||
        padding: 0.75rem;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    [data-ref="table"] > tbody > tr > td:last-child {
 | 
			
		||||
        text-align: right;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    [data-ref="table"] > tbody > tr:nth-child(even) {
 | 
			
		||||
        background-color: #f5f5f5;
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    #table-totals {
 | 
			
		||||
        margin-top: 0.5rem;
 | 
			
		||||
        display: grid;
 | 
			
		||||
        grid-template-columns: 1.5fr 1fr;
 | 
			
		||||
        padding-top: .5rem;
 | 
			
		||||
        gap: 80px;
 | 
			
		||||
        page-break-inside:auto;
 | 
			
		||||
        overflow: visible !important;
 | 
			
		||||
        font-weight: bold;
 | 
			
		||||
        line-height: var(--line-height);
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #table-totals .totals-table-right-side>* {
 | 
			
		||||
        display: grid;
 | 
			
		||||
        grid-template-columns: 1fr 1fr;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #table-totals>.totals-table-right-side>*> :nth-child(1) {
 | 
			
		||||
        text-align: left;
 | 
			
		||||
        margin-top: .25rem;
 | 
			
		||||
        padding-left: 7px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #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));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #table-totals>.totals-table-right-side>*> :nth-child(2) {
 | 
			
		||||
        text-align: right;
 | 
			
		||||
        padding-right: 0px;
 | 
			
		||||
    }
 | 
			
		||||
	
 | 
			
		||||
 | 
			
		||||
	#entity-details {
 | 
			
		||||
	 text-align: left;
 | 
			
		||||
     width: 100%;
 | 
			
		||||
	}
 | 
			
		||||
	
 | 
			
		||||
	#entity-details th {
 | 
			
		||||
	 font-weight:normal;
 | 
			
		||||
     line-height: 1.5rem;
 | 
			
		||||
	}
 | 
			
		||||
	
 | 
			
		||||
    #table-totals
 | 
			
		||||
    > *
 | 
			
		||||
    [data-element='total-table-balance-due-label'],
 | 
			
		||||
    #table-totals
 | 
			
		||||
    > *
 | 
			
		||||
    [data-element='total-table-balance-due'] {
 | 
			
		||||
        font-weight: bold;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    #table-totals > * > :last-child {
 | 
			
		||||
        text-align: right;
 | 
			
		||||
        padding-right: 1rem;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    [data-ref="total_table-footer"] {
 | 
			
		||||
        padding-left: 1rem;
 | 
			
		||||
        padding-right: 1rem;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    [data-ref="totals_table-outstanding"] {
 | 
			
		||||
        color: var(--primary-color)
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /** 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: #e6e6e6;
 | 
			
		||||
        color: black;
 | 
			
		||||
        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: 150px;
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
    .repeating-header {
 | 
			
		||||
        position: fixed;
 | 
			
		||||
        top: 0;
 | 
			
		||||
    }
 | 
			
		||||
    .repeating-footer {
 | 
			
		||||
        position: fixed;
 | 
			
		||||
        bottom: 0;
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
#header {
 | 
			
		||||
  position: fixed;
 | 
			
		||||
  top: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#footer {
 | 
			
		||||
  position: fixed;
 | 
			
		||||
  bottom: 0;
 | 
			
		||||
  border-top: 1px solid #000;
 | 
			
		||||
  width: 82%;
 | 
			
		||||
  min-height:100px;
 | 
			
		||||
  padding-top: 0.5rem;
 | 
			
		||||
  margin-top: 40px;
 | 
			
		||||
 }
 | 
			
		||||
 | 
			
		||||
    [data-element='product_table-product.description-td'], td {
 | 
			
		||||
        min-width:100%;
 | 
			
		||||
        max-width: 300px;
 | 
			
		||||
        overflow-wrap: break-word; 
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /** Useful snippets, uncomment to enable. **/
 | 
			
		||||
 | 
			
		||||
    /** Hide company logo **/
 | 
			
		||||
    /* .company-logo { display: none } */
 | 
			
		||||
 | 
			
		||||
    /* Hide company details */
 | 
			
		||||
    /* # > * { display: none } */
 | 
			
		||||
 | 
			
		||||
    /* Hide company address */
 | 
			
		||||
    /* #company-address > * { display: none } */
 | 
			
		||||
 | 
			
		||||
    /* Hide public notes */
 | 
			
		||||
    [data-ref="total_table-public_notes"] { font-weight: normal; } 
 | 
			
		||||
 | 
			
		||||
    /* 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 style="min-width: 100%">
 | 
			
		||||
   <thead>
 | 
			
		||||
      <tr>
 | 
			
		||||
         <td>
 | 
			
		||||
            <div class="repeating-header-space"> </div>
 | 
			
		||||
         </td>
 | 
			
		||||
      </tr>
 | 
			
		||||
   </thead>
 | 
			
		||||
   <tbody>
 | 
			
		||||
      <tr>
 | 
			
		||||
         <td>
 | 
			
		||||
            <div id="body">
 | 
			
		||||
               <div class="header-wrapper">
 | 
			
		||||
                  <div>
 | 
			
		||||
                     <img class="company-logo" src="$company.logo" alt="$company.name logo">
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <div style="float:right; width:100%;">
 | 
			
		||||
                  <div id="company-details"></div>
 | 
			
		||||
                  <div id="company-address" style="margin-top:10px;"></div>
 | 
			
		||||
                  </div>
 | 
			
		||||
               </div>
 | 
			
		||||
               <div class="header-wrapper2">
 | 
			
		||||
               <div id="client-details"></div>
 | 
			
		||||
               <div id="vendor-details"></div>
 | 
			
		||||
 | 
			
		||||
               <div>
 | 
			
		||||
               <p class="entity-label" style="font-size:32px; color:#0096FF;">$entity_label</p>
 | 
			
		||||
               <table id="entity-details" cellspacing="0" dir="ltr"></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 id="footer" style="">
 | 
			
		||||
    <div style="width: 100%;">
 | 
			
		||||
        <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',
 | 
			
		||||
                    'statement-invoice-table-totals', 'statement-payment-table-totals', 'statement-aging-table',
 | 
			
		||||
                    'vendor-details', 'client-details'
 | 
			
		||||
                ];
 | 
			
		||||
 | 
			
		||||
                tables.forEach((tableIdentifier) => {
 | 
			
		||||
                    console.log(document.getElementById(tableIdentifier));
 | 
			
		||||
 | 
			
		||||
                    document.getElementById(tableIdentifier)?.childElementCount === 0
 | 
			
		||||
                        ? document.getElementById(tableIdentifier).style.setProperty('display', 'none', 'important')
 | 
			
		||||
                        : '';
 | 
			
		||||
                });
 | 
			
		||||
            });
 | 
			
		||||
        </script>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
<script>
 | 
			
		||||
document.querySelectorAll('#statement-invoice-table > thead > tr > th, #statement-payment-table > thead > tr > th, #statement-aging-table > thead > tr > th').forEach(t => {
 | 
			
		||||
    t.hidden = false;
 | 
			
		||||
});
 | 
			
		||||
</script>
 | 
			
		||||
<script>
 | 
			
		||||
    document.addEventListener("DOMContentLoaded",function(){document.querySelectorAll("#product-table > tbody > tr > td, #task-table > tbody > tr > td, #delivery-note-table > tbody > tr > td").forEach(t=>{if(""!==t.innerText){let e=t.getAttribute("data-ref").slice(0,-3);document.querySelector(`th[data-ref="${e}-th"]`).removeAttribute("hidden")}}),document.querySelectorAll("#product-table > tbody > tr > td, #task-table > tbody > tr > td, #delivery-note-table > tbody > tr > td").forEach(t=>{let e=t.getAttribute("data-ref").slice(0,-3);(e=document.querySelector(`th[data-ref="${e}-th"]`)).hasAttribute("hidden")&&""==t.innerText&&t.setAttribute("hidden","true")})},!1);</script><script>document.addEventListener("DOMContentLoaded",function(){document.querySelectorAll(`[data-state="encoded-html"]`).forEach(e=>e.innerHTML=e.innerText)},!1);
 | 
			
		||||
</script>
 | 
			
		||||
</div>
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user