From 018753689e8ad00ff836fb86e7e6be93564b7a4d Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Thu, 26 Jan 2012 18:33:30 +0100 Subject: [PATCH] Disable text selection in the dump list. --- 4chan_x.user.js | 4 ++++ script.coffee | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/4chan_x.user.js b/4chan_x.user.js index 88767abdb..0fd10c0be 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3546,6 +3546,10 @@ a[href="javascript:;"] {\ display: block;\ height: 100px;\ position: relative;\ + -webkit-user-select: none;\ + -moz-user-select: none;\ + -o-user-select: none;\ + user-select: none;\ }\ #replies > div {\ top: 0; right: 0; bottom: 0; left: 0;\ diff --git a/script.coffee b/script.coffee index 95271e030..30b909707 100644 --- a/script.coffee +++ b/script.coffee @@ -2783,6 +2783,10 @@ a[href="javascript:;"] { display: block; height: 100px; position: relative; + -webkit-user-select: none; + -moz-user-select: none; + -o-user-select: none; + user-select: none; } #replies > div { top: 0; right: 0; bottom: 0; left: 0;