How to hide mouse on webApp SmartTv?

105 Views Asked by At

I'm trying to code a STB to Panasonic tv. I have a vps with bind9 to resolve DNS and redirect the tv app to my web app, and a nginx server configured with some locations.

The donor app is wowtv, after I change the DNS server on tv, and open the app, appears a mouse.

I tested other STBs like http://player.clouddy.online and http://ott-play.com/f and the mouse don't appears.

What I need to do to Disable mouse?

I thought the JavaScript or css can do it but nothing works!

Now I thing that must be a server configuration to solve it, I searched on internet but nobody has this problem

1

There are 1 best solutions below

3
SrAlbert On

You can use CSS rule

*, *:hover {
    cursor: none !important;
}