0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

tools: fix anchors in generated documents

When an anchor tag is used within a pre tag, the link is not
distinguishable. This patch makes sure that the links are highlighted
by underlining them.

PR-URL: https://github.com/nodejs/node/pull/2491
Reviewed-By: Roman Reiss <me@silverwind.io>
This commit is contained in:
Sakthipriyan Vairamani 2015-08-22 13:40:55 +05:30
parent ccc790b628
commit 31188b796e

View File

@ -79,6 +79,15 @@ code a:hover {
color: white !important;
}
.api_stability_0 a,
.api_stability_1 a,
.api_stability_2 a,
.api_stability_3 a,
.api_stability_4 a,
.api_stability_5 a {
text-decoration: underline;
}
.api_stability_0 {
background-color: #D60027;
}