diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-20 19:10:24 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-20 19:10:24 +0000 |
commit | 31c6ebb31046470d41a625195662dfccdff116c4 (patch) | |
tree | ab099bc278f30009158a7afe93a1ca46e9594ef9 /public/stylesheets/scm.css | |
parent | 3d5381b24bb488e4e9edd5a9eec2ba8be4de5c63 (diff) | |
download | redmine-31c6ebb31046470d41a625195662dfccdff116c4.tar.gz redmine-31c6ebb31046470d41a625195662dfccdff116c4.zip |
Added wiki annotate view. It's accessible for each version from the page history view.
Slight style change: pre-wrap added on file/diff contents.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1020 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/stylesheets/scm.css')
-rw-r--r-- | public/stylesheets/scm.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/public/stylesheets/scm.css b/public/stylesheets/scm.css index c3dc307d6..66847af8c 100644 --- a/public/stylesheets/scm.css +++ b/public/stylesheets/scm.css @@ -10,6 +10,11 @@ table.filecontent th.line-num { width: 2%; padding-right: 3px; } +table.filecontent td.line-code pre { + white-space: pre-wrap; /* CSS2.1 compliant */ + white-space: -moz-pre-wrap; /* Mozilla-based browsers */ + white-space: -o-pre-wrap; /* Opera 7+ */ +} /* 12 different colors for the annonate view */ table.annotate tr.bloc-0 {background: #FFFFBF;} @@ -40,6 +45,7 @@ table.annotate td.author { padding-right: 1em; width: 3%; background: inherit; + font-size: 90%; } table.annotate td.line-code { background-color: #fafafa; } |