Merge branch 'develop' of bitbucket.org:jamkazam/jam-cloud into develop

This commit is contained in:
Brian Smith 2013-09-17 00:06:47 -04:00
commit 0dfd122316
1 changed files with 10 additions and 0 deletions

View File

@ -444,3 +444,13 @@ input[type="text"], input[type="password"]{
width:128px;
height:128px;
}
// disable text selection for the in-session panel, ftue, and arbitrary elements marked with .no-selection-range
div[layout-id=session], div[layout-id=ftue], .no-selection-range {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}