From 0797ac9063f198c9ee3be7b4b63eb2960e855a62 Mon Sep 17 00:00:00 2001 From: Max Pozdeev Date: Wed, 15 Dec 2010 17:22:48 +0300 Subject: [PATCH] * show list of task in all tasks tab --- src/mytinytodo.js | 3 ++- src/themes/default/style.css | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mytinytodo.js b/src/mytinytodo.js index 5f973e3..9d96dfe 100644 --- a/src/mytinytodo.js +++ b/src/mytinytodo.js @@ -797,7 +797,8 @@ function prepareTaskStr(item, noteExp) '
'+prepareDuedate(item)+ ''+item.dateInline+'—'+ ''+item.dateCompletedInline+'
'+"\n"+ - '
'+preparePrio(prio,id)+''+prepareHtml(item.title)+' '+"\n"+ + '
'+preparePrio(prio,id)+''+prepareHtml(item.title)+' '+ + (curList.id == -1 ? ''+ tabLists.get(item.listId).name +'' : '') + "\n" + prepareTagsStr(item)+''+item.dateInlineTitle+'
'+ '
'+ '
'+prepareHtml(item.note)+'
'+ diff --git a/src/themes/default/style.css b/src/themes/default/style.css index f8bf7a3..46109bd 100644 --- a/src/themes/default/style.css +++ b/src/themes/default/style.css @@ -174,6 +174,7 @@ li.task-expanded .task-toggle { background-position:-80px -16px; } .task-title a { color:#000000; } .task-title a:hover { color:#af0000; } #page_tasks.readonly #tasklist li .task-actions { display:none; } +.task-listname { background-color:#eee; color:#555; padding:0px 3px; } .task-tags { padding:0px 2px; } .task-tags .tag { font-size:0.8em; font-weight:bold; color:#333333; text-decoration:underline; } .task-tags .tag:hover { }