* VRFS-606 - disable text selection in in-session and ftue

This commit is contained in:
Seth Call 2013-09-17 02:20:22 +00:00
parent e76fc73595
commit e0980d5336
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;
}