Prevent accidental highlighting of canvas

This commit is contained in:
Jordan Eldredge 2017-08-19 16:40:29 -07:00
parent e3cbdfbdf3
commit 5ec856a216

View file

@ -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;