* VRFS-606 - disable text selection in in-session and ftue
This commit is contained in:
parent
e76fc73595
commit
e0980d5336
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue