diff --git a/web/app/assets/stylesheets/client/jamkazam.css.scss b/web/app/assets/stylesheets/client/jamkazam.css.scss index 48f71a781..0c637b16f 100644 --- a/web/app/assets/stylesheets/client/jamkazam.css.scss +++ b/web/app/assets/stylesheets/client/jamkazam.css.scss @@ -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; +}