From ef3ac421ca641fd0fc1f41aac3ce238ac88b81d2 Mon Sep 17 00:00:00 2001 From: Mayhem Date: Tue, 21 Jan 2014 14:13:46 +0100 Subject: [PATCH] Use text-decoration instead of border for forwardlinks. --- css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/css/style.css b/css/style.css index 21fb6dc8c..f697b45e2 100644 --- a/css/style.css +++ b/css/style.css @@ -506,6 +506,15 @@ a.hide-announcement { text-decoration: none; border-bottom: 1px dashed; } +@supports (text-decoration-style: dashed) or (-moz-text-decoration-style: dashed) { + .quotelink.forwardlink, + .backlink.forwardlink { + text-decoration: underline; + -moz-text-decoration-style: dashed; + text-decoration-style: dashed; + border-bottom: none; + } +} .filtered { text-decoration: underline line-through; }