ui cleanup
diff --git a/erpnext/accounts/page/pos/pos.js b/erpnext/accounts/page/pos/pos.js
index c0b8c35..62d8247 100644
--- a/erpnext/accounts/page/pos/pos.js
+++ b/erpnext/accounts/page/pos/pos.js
@@ -464,7 +464,7 @@
 
 	toggle_totals_area: function(show) {
 
-		if(!show) {
+		if(show === undefined) {
 			show = this.is_totals_area_collapsed;
 		}
 
diff --git a/erpnext/public/css/erpnext.css b/erpnext/public/css/erpnext.css
index d92559e..f59883d 100644
--- a/erpnext/public/css/erpnext.css
+++ b/erpnext/public/css/erpnext.css
@@ -275,7 +275,7 @@
   vertical-align: middle;
 }
 .pos-list-row .subject {
-  width: 50%;
+  width: 40%;
 }
 .pos-list-row .list-row-checkbox,
 .pos-list-row .list-select-all {
@@ -307,7 +307,7 @@
   justify-content: center;
   height: 100%;
 }
-.pos .items .pos-list-row:last-child {
+.pos .pos-list-row:last-child {
   border-bottom: none;
 }
 .pos .form-section-heading {
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>
diff --git a/erpnext/public/less/erpnext.less b/erpnext/public/less/erpnext.less
index 5c4622d..214130b 100644
--- a/erpnext/public/less/erpnext.less
+++ b/erpnext/public/less/erpnext.less
@@ -330,7 +330,7 @@
 	}
 
 	.subject {
-		width: 50%
+		width: 40%
 	}
 
 	.list-row-checkbox, .list-select-all {
@@ -369,7 +369,7 @@
 	height: 100%;
 }
 
-.pos .items .pos-list-row:last-child {
+.pos .pos-list-row:last-child {
 	border-bottom: none;
 }