summaryrefslogtreecommitdiff
path: root/munia.html
diff options
context:
space:
mode:
Diffstat (limited to 'munia.html')
-rw-r--r--munia.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/munia.html b/munia.html
index 46feb61..3f95443 100644
--- a/munia.html
+++ b/munia.html
@@ -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);