From 698984755cdc9ca92fd68ad51fb2c006b79d1f04 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 23 Mar 2012 23:33:08 -0700 Subject: [PATCH] Need overflow: hidden for software-cursor, otherwise the cursor exiting the side of the display actually extends the display, and the mouse pointer can be moved off the display entirely if moved slowly enough. --- src/main/webapp/styles/client.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/webapp/styles/client.css b/src/main/webapp/styles/client.css index 067d73d..c6d1959 100644 --- a/src/main/webapp/styles/client.css +++ b/src/main/webapp/styles/client.css @@ -30,6 +30,7 @@ img { .software-cursor { cursor: url('../images/mouse/dot.gif'),url('../images/mouse/blank.cur'),default; + overflow: hidden; } * { -- 1.7.10.4