diff options
Diffstat (limited to 'modules/todo/todo.html')
-rw-r--r-- | modules/todo/todo.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/todo/todo.html b/modules/todo/todo.html index ae13163..47bf07d 100644 --- a/modules/todo/todo.html +++ b/modules/todo/todo.html @@ -83,6 +83,11 @@ function tablerowfor(task){ e.classList.add("taskdate"); e.appendChild(document.createTextNode(fancydate(task.date))); e.setAttribute("title",task.date.toString()); + e.appendChild(document.createElement("br")); + var e2=document.createElement("span"); + e2.classList.add("subdate"); + e2.appendChild(document.createTextNode(task.date.toString())); + e.appendChild(e2); float.appendChild(e); e=document.createElement("span"); @@ -204,12 +209,17 @@ body{ display:inline-block; cursor:help; } +.subdate{ + color:#ccc; + font-size:8px; +} .taskdelete{ margin-left:60px; font-size:10px; font-family:sans-serif; color:red; cursor:pointer; + vertical-align:top; } #addtaskform{ border:1px #ddd solid; |