justintv / Twitch-API

A home for details about our API
www.twitch.tv
1.72k stars 380 forks source link

Disable selection on twitch player #465

Closed Den-dp closed 8 years ago

Den-dp commented 8 years ago

I am used to open stream in full screen by double clicking. But this cause unnecessary text selection on the right top corner (Chrome).

image

But it's simple to fix

.player-hover.player-livestatus.js-livestatus {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

P.s.: I'm not sure I fired issue in correct repo...