Fix TXP modal events

This commit is contained in:
Gustavo Maximiliano Cortez 2015-04-17 18:10:22 -03:00
commit 30511f9d7a
4 changed files with 20 additions and 11 deletions

View file

@ -9,7 +9,6 @@
body {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@ -17,14 +16,12 @@ body {
input {
-webkit-user-select: auto !important;
-khtml-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;
}
* {
-webkit-user-drag: none;
-moz-user-drag: none;
-ms-user-drag: none;
user-drag: none;
}
@ -36,7 +33,6 @@ body, div, .row {
.enable_text_select {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}