[imp] some design improvements in payment

bzr revid: nicolas.vanhoren@openerp.com-20111005150651-beakw4xaeh2yngv4
This commit is contained in:
niv-openerp 2011-10-05 17:06:51 +02:00
parent 321c9a3321
commit 84dc81adfc
2 changed files with 37 additions and 21 deletions

View File

@ -406,3 +406,17 @@
.point-of-sale li.selected-order button {
font-weight: 900;
}
.point-of-sale .step-screen {
text-align: center;
}
.point-of-sale .step-screen header h2 {
margin-top: 0px;
padding-top: 7px;
}
.point-of-sale .pos-payment-container {
display: inline-block;
text-align: left;
font-size: 2em;
}

View File

@ -91,27 +91,29 @@
<div id="rightpane">
<div id="products-screen" class="step-screen selected-step"></div>
<div id="payment-screen" class="step-screen" style="display:none">
<header>Payment</header>
<section>
<p>
Due:
<span id="payment-due-total"></span>
</p>
<p>Paid:</p>
<ol id="paymentlines"></ol>
</section>
<footer>
<p>
Total paid:
<span id="payment-paid-total"></span>
</p>
<p>
<span id="payment-remaining"></span>
</p>
<p>
<button id="validate-order">Validate</button>
</p>
</footer>
<header><h2>Payment</h2></header>
<div class="pos-payment-container">
<section>
<p>
Due:
<span id="payment-due-total"></span>
</p>
<p>Paid:</p>
<ol id="paymentlines"></ol>
</section>
<footer>
<p>
Total paid:
<span id="payment-paid-total"></span>
</p>
<p>
<span id="payment-remaining"></span>
</p>
<p>
<button id="validate-order">Validate</button>
</p>
</footer>
</div>
</div>
<div id="receipt-screen" class="step-screen" style="display:none">
<header>Receipt</header>