1
0
mirror of https://github.com/golang/go synced 2024-11-18 11:04:42 -07:00

Revert "godoc: better distinguish links and link state"

This reverts commit 9bd2f44268.

Reason for revert: https://github.com/golang/go/issues/22171#issuecomment-339125376

Update golang/go#22171

Change-Id: I41da526912b3484721782e0dad02d97ab2845a12
Reviewed-on: https://go-review.googlesource.com/73151
Reviewed-by: Andrew Bonventre <andybons@golang.org>
This commit is contained in:
Andrew Bonventre 2017-10-24 20:47:09 +00:00
parent 5ec91747d9
commit 9b61fcc4c5
2 changed files with 16 additions and 14 deletions

View File

@ -2925,15 +2925,16 @@ body {
a,
.exampleHeading .text {
color: #375EAB;
}
a,
.exampleHeading .text:hover {
text-decoration: underline;
-webkit-text-decoration: skip;
text-decoration-skip: ink;
text-decoration: none;
}
a:hover,
.exampleHeading .text {
.exampleHeading .text:hover {
text-decoration: underline;
}
.article a {
text-decoration: underline;
}
.article .title a {
text-decoration: none;
}

View File

@ -48,15 +48,16 @@ body {
a,
.exampleHeading .text {
color: #375EAB;
}
a,
.exampleHeading .text:hover {
text-decoration: underline;
-webkit-text-decoration: skip;
text-decoration-skip: ink;
text-decoration: none;
}
a:hover,
.exampleHeading .text {
.exampleHeading .text:hover {
text-decoration: underline;
}
.article a {
text-decoration: underline;
}
.article .title a {
text-decoration: none;
}