ui cleanup
diff --git a/erpnext/public/js/pos/pos.html b/erpnext/public/js/pos/pos.html
index 54abf7e..e8a394c 100644
--- a/erpnext/public/js/pos/pos.html
+++ b/erpnext/public/js/pos/pos.html
@@ -90,9 +90,9 @@
 	<div class="col-sm-5 list-customers">
 		<div class="col-sm-12"><h6 class="form-section-heading uppercase">{{ __("Customers in Queue") }}</h6></div>
 		<div class="pos-list-row pos-bill-header">
-			<div class="cell"><input class="list-select-all" type="checkbox">{{ __("Customer") }}</div>
+			<div class="cell subject"><input class="list-select-all" type="checkbox">{{ __("Customer") }}</div>
 			<div class="cell text-left">{{ __("Status") }}</div>
-			<div class="cell text-right">{{ __("Paid Amount") }}</div>
+			<div class="cell text-right">{{ __("Amount") }}</div>
 			<div class="cell text-right">{{ __("Grand Total") }}</div>
 		</div>
 		<div class="list-customers-table border-left border-right border-bottom">
diff --git a/erpnext/public/js/pos/pos_invoice_list.html b/erpnext/public/js/pos/pos_invoice_list.html
index fb15c86..9680cd5 100644
--- a/erpnext/public/js/pos/pos_invoice_list.html
+++ b/erpnext/public/js/pos/pos_invoice_list.html
@@ -1,5 +1,8 @@
 <div class="pos-list-row" invoice-name = "{{name}}">
-	<div class="list-column cell"><input class="list-delete" type="checkbox">{%= customer %}</div>
+	<div class="list-column cell subject">
+		<input class="list-delete" type="checkbox">
+		<a class="grey list-id" title="{{ customer }}">{%= customer %}</a>
+	</div>
 	<div class="list-column cell text-left"><span class="indicator {{data.indicator}}">{{ data.status }}</span></div>
 	<div class="list-column cell text-right">{%= paid_amount %}</div>
 	<div class="list-column cell text-right">{%= grand_total %}</div>