todo list with assigned to others list
diff --git a/erpnext/utilities/page/todo/todo.css b/erpnext/utilities/page/todo/todo.css
index 0b00b39..ee9b4f1 100644
--- a/erpnext/utilities/page/todo/todo.css
+++ b/erpnext/utilities/page/todo/todo.css
@@ -14,7 +14,7 @@
 }
 
 .todoitem .close {
-	margin-left: 14px;
+	margin-left: 5px;
 	font-size: 17px;
 }
 
@@ -31,6 +31,7 @@
 	cursor: pointer;
 	padding: 3px 0px;
 	display: inline-block;
+	width: 80%;
 }
 
 #todo-list, #assigned-todo-list {
diff --git a/erpnext/utilities/page/todo/todo.js b/erpnext/utilities/page/todo/todo.js
index bbac46d..79279b4 100644
--- a/erpnext/utilities/page/todo/todo.js
+++ b/erpnext/utilities/page/todo/todo.js
@@ -50,7 +50,7 @@
 		
 		todo.fullname = '';
 		if(todo.assigned_by) {
-			todo.fullname = repl("[By %(fullname)s] ", {
+			todo.fullname = repl("[By %(fullname)s]  ", {
 				fullname: wn.boot.user_info[todo.assigned_by].fullname
 			});
 		}
@@ -58,7 +58,7 @@
 		var parent_list = "#todo-list";
 		if(todo.owner !== user) {
 			parent_list = "#assigned-todo-list";
-			todo.fullname = repl("[To %(fullname)s] ", {
+			todo.fullname = repl("[To %(fullname)s]  ", {
 				fullname: wn.boot.user_info[todo.owner].fullname
 			});
 		}