static: add underlines back to links in blog body

Specifically restricted to the "article" class, which is only used on
the blog.

Fixes golang/go#18302.

Change-Id: I5988c3df70f0de93d77544edf091640b0c5df30c
Reviewed-on: https://go-review.googlesource.com/34828
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Chris Broadfoot 2017-01-05 19:19:54 -08:00
parent e0896bc9b9
commit 4e83100c59
2 changed files with 12 additions and 0 deletions

View File

@ -2878,6 +2878,12 @@ a:hover,
.exampleHeading .text:hover {
text-decoration: underline;
}
.article a {
text-decoration: underline;
}
.article .title a {
text-decoration: none;
}
.permalink {
display: none;

View File

@ -48,6 +48,12 @@ a:hover,
.exampleHeading .text:hover {
text-decoration: underline;
}
.article a {
text-decoration: underline;
}
.article .title a {
text-decoration: none;
}
.permalink {
display: none;