Commit 48fb20f5 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixed TOC positionning in wiki pages.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@791 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 0fc93a11
......@@ -60,6 +60,7 @@ module Redmine
text.gsub!(/<p>\{\{([<>]?)toc\}\}<\/p>/i) do
div_class = 'toc'
div_class << ' right' if $1 == '>'
div_class << ' left' if $1 == '<'
out = "<div class=\"#{div_class}\">"
@toc.each_with_index do |heading, index|
# remove wiki links from the item
......
......@@ -310,14 +310,12 @@ div.wiki div.toc {
line-height: 1.2em;
margin-bottom: 12px;
margin-right: 12px;
float: left;
display: table
}
* html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
div.wiki div.toc.right {
float: right;
margin-left: 12px;
margin-right: 0;
}
div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
div.wiki div.toc a {
display: block;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment