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-75d572ba1dddmaster
parent
4cc0e5c78d
commit
9c2148a983
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue