From fbe14718d61ff2de75391f3af94970659735cae5 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Tue, 11 Sep 2012 20:29:42 +0200 Subject: [PATCH] Don't strike-through deadlinks that are not quotelinks. --- 4chan_x.user.js | 3 +++ script.coffee | 3 +++ 2 files changed, 6 insertions(+) diff --git a/4chan_x.user.js b/4chan_x.user.js index 503d19404..98e040864 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -5794,6 +5794,9 @@ body.unscroll {\ .quotelink.deadlink {\ text-decoration: underline !important;\ }\ +.deadlink:not(.quotelink) {\ + text-decoration: none !important;\ +}\ .inlined {\ opacity: .5;\ }\ diff --git a/script.coffee b/script.coffee index 0537e23d0..0828bcc4b 100644 --- a/script.coffee +++ b/script.coffee @@ -4723,6 +4723,9 @@ body.unscroll { .quotelink.deadlink { text-decoration: underline !important; } +.deadlink:not(.quotelink) { + text-decoration: none !important; +} .inlined { opacity: .5; }