浏览代码

Prevent dragging of background image (#425)

There are many ways to do this (https://stackoverflow.com/questions/4211909/disable-dragging-an-image-from-an-html-page), so I just choose this one. It may also prevent other useless things of the background image.

Tested in Firefox 58.
rugk 7 年之前
父节点
当前提交
c407341d70
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/sass/layout/_main.scss

+ 1 - 0
src/sass/layout/_main.scss

@@ -10,6 +10,7 @@
     -moz-user-select: none;
     -webkit-user-select: none;
     user-select: none;
+    pointer-events: none;
 }
 
 #main-wrapper {