Fixes issue with r2045 that prevented selecting text in various controls

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2048 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Adrian Jones 2011-10-14 15:07:24 +00:00
parent 4cc0e5c78d
commit 9c2148a983
1 changed files with 6 additions and 6 deletions

View File

@ -3,13 +3,13 @@
}
html, body, div{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-o-user-select: text;
user-select: text;
/* this will work for QtWebKit in future */
-webkit-user-drag: none;
-webkit-user-drag: text;
}
#browser-not-supported {