From fe2a6641687f8680c02d40b4cb8e05e680af7b0e Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Fri, 7 Sep 2012 18:51:19 +0200 Subject: [PATCH] Don't strike-through deadlinks. --- 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 a5f5f3455..842e70a71 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -5766,6 +5766,9 @@ body.unscroll {\ .qphl {\ outline: 2px solid rgba(216, 94, 49, .7);\ }\ +.quotelink.deadlink {\ + text-decoration: underline !important;\ +}\ .inlined {\ opacity: .5;\ }\ diff --git a/script.coffee b/script.coffee index 2be1f4181..99763ca6a 100644 --- a/script.coffee +++ b/script.coffee @@ -4674,6 +4674,9 @@ body.unscroll { .qphl { outline: 2px solid rgba(216, 94, 49, .7); } +.quotelink.deadlink { + text-decoration: underline !important; +} .inlined { opacity: .5; }