Not sure what to call it - Magnifer Copy Select All

This is driving me crazy. When I put my finger on anything on any form in which the control is not select-able or clickable, a magnifier pops up and then “Copy Select All Look UP Share…”.

How do I turn this off?

Please help.

*:not(input):not(textarea) {
  -webkit-user-select: none;  /* disable selection/Copy of UIWebView */
  -webkit-touch-callout: none; /* disable the IOS popup when long-press on a link */
}

In the css for just about every control:

user-Select: none; 

In sub Main to kill popup menus especially on right-click on desktop:

document.addEventListener('contextmenu', function(e) {e.preventDefault();});

Put this into the style property of the control.

Thank you all. I put all three into the project global CSS file all it seems to have fixed the problem.

body {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}