summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-25 11:37:50 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-25 11:37:50 +0200
commit2eb16c63689f12245fcbaf863705ddc745951f8c (patch)
tree8d0131b29a1dabbf1ab23601a3acaec89d48d295 /modules
parent9bc35041d52041b9dcd34fb590070d3cc78108fd (diff)
Add sub date in TODO
Diffstat (limited to 'modules')
-rw-r--r--modules/todo/todo.html10
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;