mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* better task word wrapping in pda style
This commit is contained in:
parent
6b26b1367f
commit
cf68596cb7
2 changed files with 2 additions and 2 deletions
|
|
@ -68,7 +68,7 @@ function prepareTaskStr(item, noteExp)
|
|||
'<div class="task-left"><div class="task-toggle" onClick="toggleNote('+id+')"></div>'+
|
||||
'<input type="checkbox" '+(readOnly?'disabled':'')+' onClick="completeTask('+id+',this)" '+(item.compl?'checked':'')+'></div>'+
|
||||
'<div class="task-middle">'+prepareDuedate(item.duedate, item.dueClass, item.dueStr)+
|
||||
'<div class="task-through">'+preparePrio(prio,id)+'<span class="task-title">'+prepareHtml(item.title)+'</span>'+
|
||||
'<div class="task-through">'+preparePrio(prio,id)+'<span class="task-title">'+prepareHtml(item.title)+'</span> '+
|
||||
prepareTagsStr(item.tags)+'<span class="task-date">'+item.dateInline+'</span></div>'+
|
||||
'<div class="task-note-block">'+
|
||||
'<div id="tasknote'+id+'" class="task-note"><span>'+prepareHtml(item.note)+'</span></div>'+
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ li.task-expanded .task-toggle { background-position:-48px 0; }
|
|||
.task-title a { color:#000000; }
|
||||
.task-title a:hover { color:#af0000; }
|
||||
#page_tasks.readonly #tasklist li .task-actions { display:none; }
|
||||
.task-tags { margin-left:4px; padding:0px 2px; }
|
||||
.task-tags { padding:0px 2px; }
|
||||
.task-tags .tag { font-size:8pt; font-weight:bold; color:#333333; text-decoration:underline; }
|
||||
.task-tags .tag:hover { }
|
||||
.duedate { color:#333333; border-bottom:1px dotted #333333; padding:0px; padding-left:1px; margin-left:5px; float:right; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue