From 2bdfa64c74267d51f2fad1636f77e07c50591e4e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 24 Jun 2010 21:27:49 -0600 Subject: [PATCH] Restore workaround for ADE buggy rendering of anchors as links. However, make it overridable by extra CSS --- resources/templates/html.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/templates/html.css b/resources/templates/html.css index 9e80d54f88..e9b683ca34 100644 --- a/resources/templates/html.css +++ b/resources/templates/html.css @@ -406,3 +406,8 @@ img, object, svg|svg { width: auto; height: auto; } + +/* These are needed because ADE renders anchors the same as links */ + +a { text-decoration: inherit; color: inherit; cursor: inherit } +a[href] { text-decoration: underline; color: blue; cursor: pointer }