diff --git a/src/lang/en.php b/src/lang/en.php
index 6eae93a..87db54c 100644
--- a/src/lang/en.php
+++ b/src/lang/en.php
@@ -38,9 +38,9 @@ class Lang extends DefaultLang
'advanced_add' => "Advanced",
'searching' => "Searching for",
'tasks' => "Tasks",
- 'taskdate_inline_created' => "Created: %s",
- 'taskdate_inline_completed' => "Completed: %s",
- 'taskdate_inline_duedate' => "Due: %s",
+ 'taskdate_inline_created' => "created at %s",
+ 'taskdate_inline_completed' => "Completed at %s",
+ 'taskdate_inline_duedate' => "Due %s",
'taskdate_created' => "Created",
'taskdate_completed' => "Completed",
'go_back' => "<< Back",
diff --git a/src/mytinytodo.js b/src/mytinytodo.js
index bb5c167..ece0090 100644
--- a/src/mytinytodo.js
+++ b/src/mytinytodo.js
@@ -773,18 +773,19 @@ function loadTasks(opts)
function prepareTaskStr(item, noteExp)
{
+ // — = — = —
var id = item.id;
var prio = item.prio;
return '
' +
''+"\n"+
''+
- '
'+
- '
'+item.dateInline+' '+"\n"+
+ ''+"\n"+
''+prepareDuedate(item)+
- ''+item.dateCompletedInline+'
'+"\n"+
+ '
'+item.dateInline+'—'+
+ ''+item.dateCompletedInline+' '+"\n"+
''+preparePrio(prio,id)+''+prepareHtml(item.title)+' '+"\n"+
- prepareTagsStr(item)+'
'+
+ prepareTagsStr(item)+''+item.dateInlineTitle+''+
''+
'
'+prepareHtml(item.note)+'
'+
'
'+
diff --git a/src/themes/default/style.css b/src/themes/default/style.css
index 5dec58f..99b101e 100644
--- a/src/themes/default/style.css
+++ b/src/themes/default/style.css
@@ -154,11 +154,11 @@ li.task-expanded .task-toggle { background-position:-80px -16px; }
#tasklist li { padding:6px 2px 6px 6px; border-bottom:1px solid #DEDEDE; min-height:18px; margin-bottom:1px; background-color:#fff; }
#tasklist li:hover { background-color:#f6f6f6; }
.task-actions { float:right; width:20px; text-align:right; }
-.task-date { display:none; min-width:55px; color:#999999; margin-right:10px; margin-left:5px; text-align:right; }
+.task-date { color:#999999; font-size:0.8em; margin-left:4px; display:none; }
.task-date-completed { color:#999999; display:none; margin-left:5px; }
-.show-inline-date .task-middle { margin-left:110px; }
-.show-inline-date .task-date { display:inline-block; }
+.show-inline-date .task-date { display:inline; }
.show-inline-date li.task-completed .task-date-completed { display:inline; }
+.show-inline-date li.task-completed .task-date { display:none; }
.task-through { overflow:hidden; }
.task-through-right { float:right; }
.task-title a { color:#000000; }