summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-08 14:56:55 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-08 14:56:55 +0000
commit686e28fcadf1e1674232579c01664165d8ecb062 (patch)
treee71d715541836f7ed43ee99bc861028aa1215186
parent47ffc8fa0156e5f2370a299476304d5c31e5946d (diff)
downloadruby-686e28fcadf1e1674232579c01664165d8ecb062.tar.gz
ruby-686e28fcadf1e1674232579c01664165d8ecb062.tar.xz
ruby-686e28fcadf1e1674232579c01664165d8ecb062.zip
Fix CSS typo that meant h2 headings were invisible
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/rdoc/generators/template/html/html.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d61d113bd..05863653f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Dec 8 23:54:29 2004 Dave Thomas <dave@pragprog.com>
+
+ * lib/rdoc/generators/template/html/html.rb (RDoc::Page): Typo
+ meant that h2 tag was invisible.
+
Wed Dec 8 22:10:02 2004 Tanaka Akira <akr@m17n.org>
* rubyio.h, io.c, ext/dl/dl.c, ext/pty/pty.c, ext/socket/socket.c:
diff --git a/lib/rdoc/generators/template/html/html.rb b/lib/rdoc/generators/template/html/html.rb
index fd9917b43..72e57baa3 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;
}