From 31188b796ed56be22d9bc725422b5ef1386241b9 Mon Sep 17 00:00:00 2001 From: Sakthipriyan Vairamani Date: Sat, 22 Aug 2015 13:40:55 +0530 Subject: [PATCH] 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 --- doc/api_assets/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index 709a835f814..d40253e5ae1 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -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; }