diff options
author | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-08 14:56:55 +0000 |
---|---|---|
committer | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-08 14:56:55 +0000 |
commit | 2f6f96739b23c9d9a7573c4acf27430b4cb04cf0 (patch) | |
tree | c60c6ad236a2c738e10e47123b24faa62601f68b /lib | |
parent | bcf72db844b54492aca33b068711992bd73caccf (diff) |
Fix CSS typo that meant h2 headings were invisible
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rdoc/generators/template/html/html.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rdoc/generators/template/html/html.rb b/lib/rdoc/generators/template/html/html.rb index fd9917b43a..72e57baa3a 100644 --- a/lib/rdoc/generators/template/html/html.rb +++ b/lib/rdoc/generators/template/html/html.rb @@ -122,8 +122,8 @@ div#description { border: 1px dotted #999; } -div#description h1,h3,h3,h4,h5,h6 { - color: black; +div#description h1,h2,h3,h4,h5,h6 { + color: #125;; background: transparent; } |