Restore workaround for ADE buggy rendering of anchors as links. However, make it overridable by extra CSS

This commit is contained in:
Kovid Goyal 2010-06-24 21:27:49 -06:00
parent 4b965a8f42
commit 2bdfa64c74

View File

@ -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 }