diff options
author | Luke Arduini <luke.arduini@me.com> | 2012-12-27 20:32:53 -0500 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-12-27 18:38:56 -0800 |
commit | 192192a09e2d2e0d6bdd0934f602d2dbbf10ed06 (patch) | |
tree | 2e14a21c6cde70dbbcdc4a23cd2e9aaa77de5985 /doc/api_assets | |
parent | e576208eba9c0b343b9c1510be0839282fa1aff5 (diff) | |
download | node-new-192192a09e2d2e0d6bdd0934f602d2dbbf10ed06.tar.gz |
Colorize API stabilitity index headers in docs
Noted in @shtylman's #3898, API stability notes are easy to overlook
in the html documentation. This can be especially troublesome if the API
is deprecated. This commit gives visual feedback by adding in a class
to the html docs when they're generated. The API headers with
corresponding colors are also listed in the 'About this Documentation'
page for easy reference.
Diffstat (limited to 'doc/api_assets')
-rw-r--r-- | doc/api_assets/style.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index 5523984ce1..de3f07c58c 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -67,6 +67,30 @@ code a:hover { margin: 0; } +.api_stability_0 { + border-color: #D60027; +} + +.api_stability_1 { + border-color: #EC5315; +} + +.api_stability_2 { + border-color: #FFD700; +} + +.api_stability_3 { + border-color: #AEC516; +} + +.api_stability_4 { + border-color: #009431; +} + +.api_stability_5 { + border-color: #0084B6; +} + ul.plain { list-style: none; } |