diff options
Diffstat (limited to 'munia.html')
-rw-r--r-- | munia.html | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -2,6 +2,18 @@ <html lang="en"> <head> <title>Munia</title> +<style> +body { +-webkit-touch-callout: none; +-webkit-user-select: none; +-khtml-user-select: none; +-moz-user-select: none; +-ms-user-select: none; +-o-user-select: none; +user-select: none; +cursor: default; +} +</style> </head> <body id="body"> <select id="color" onchange="update_color();"> @@ -156,6 +168,7 @@ try { else if (i[0] == "add") { var task = document.createElement("div"); task.name = "task"; + task.style.cursor = "move"; task.id = "task_" + i[1]; var taskText = document.createTextNode(i[2] + ": " + i[3] + " :" + task.id); |