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:
parent
e0896bc9b9
commit
4e83100c59
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue