diff options
author | Johan Sørensen <johan@johansorensen.com> | 2009-12-09 13:34:11 +0100 |
---|---|---|
committer | Johan Sørensen <johan@johansorensen.com> | 2009-12-09 13:34:57 +0100 |
commit | 437b9f2fb795f3b9fc405b9e85a65aaf7dfc3ae4 (patch) | |
tree | 1dd01478b9921a86cdaa633a242157f496a2c785 | |
parent | 8b3a664c4a70a20cb84fe12e2634ac36e6938458 (diff) | |
download | gitorious-mainline-outdated-437b9f2fb795f3b9fc405b9e85a65aaf7dfc3ae4.zip gitorious-mainline-outdated-437b9f2fb795f3b9fc405b9e85a65aaf7dfc3ae4.tar.gz gitorious-mainline-outdated-437b9f2fb795f3b9fc405b9e85a65aaf7dfc3ae4.tar.bz2 |
Set a max-width on comment bodies
-rw-r--r-- | public/stylesheets/base.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/stylesheets/base.css b/public/stylesheets/base.css index 04cf2a7..c3ebd4a 100644 --- a/public/stylesheets/base.css +++ b/public/stylesheets/base.css @@ -1825,6 +1825,10 @@ ul.diff_stats small.deletions { color: #DC0000; } color: #666; } +.comments .comment .body { + max-width: 75%; +} + .comment .body ul, .page ol, .diff-comment .body ul { margin-left: 30px; } .comment .body ul li, .diff-comment .body ul li { list-style-type: disc; } .comment .body ol li, diff-comment .body ol li { list-style-type: decimal; } |