diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-03-22 10:32:04 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-03-22 10:32:04 +0100 |
commit | 4ae66c9fe069e90f96408c3bfa5554faf5a37c6d (patch) | |
tree | 42aecca0438fa4a2308556fbf52ab5b982e7023b /munia.html | |
parent | 83310e21ccedaf049a6765c1fd541edf25642274 (diff) |
Highlight drop targets on mouse over.
Diffstat (limited to 'munia.html')
-rw-r--r-- | munia.html | 42 |
1 files changed, 25 insertions, 17 deletions
@@ -4,28 +4,35 @@ <title>Munia</title> <style> body { -cursor: default; + cursor: default; } .task { --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: move; -background-color: grey; -border-style: solid; -border-width: medium; -border-radius: 15px; -padding: 4px; + -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: move; + background-color: grey; + border-style: solid; + border-width: medium; + border-radius: 15px; + padding: 4px; + margin: 6px; } -.task:hover -{ -background-color:yellow; +.task:hover { + background-color:yellow; +} + +.board { + background-color: #666; + width: *; + min-height: 300px; + padding: 20px; } </style> </head> @@ -35,6 +42,7 @@ background-color:yellow; <input type="button" value="submit" onclick="submit()"/> <div id="wslm_lastmsg"></div> </div> +<div id="board" class="board"></div> <script type="text/javascript" charset="utf-8" src="/proto.js"></script> </body> |