From 5ec856a2164c92b7498c9338e1cc718da498dc39 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sat, 19 Aug 2017 16:40:29 -0700 Subject: [PATCH] Prevent accidental highlighting of canvas --- css/winamp.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/css/winamp.css b/css/winamp.css index 69b01ed3..5fc9c0e7 100644 --- a/css/winamp.css +++ b/css/winamp.css @@ -1,5 +1,12 @@ /* Rules used by all windows */ +/* Prevent accidental highlighting */ +canvas { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; +} + /* Range input css reset */ #winamp2-js input[type="range"] { -webkit-appearance: none;