From: Toshi MARUYAMA Date: Fri, 4 May 2012 17:07:38 +0000 (+0000) Subject: scm: fix revision graph left padding X-Git-Tag: 2.0.0~62 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6c6467879afd7668d2c97a78af0ac6a92c02f4dd;p=redmine.git scm: fix revision graph left padding git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9621 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/repositories/_revisions.html.erb b/app/views/repositories/_revisions.html.erb index d3059520b..3833e9788 100644 --- a/app/views/repositories/_revisions.html.erb +++ b/app/views/repositories/_revisions.html.erb @@ -33,7 +33,10 @@ end %> <% line_num = 1 %> <% revisions.each do |changeset| %> -><%= link_to_revision(changeset, @repository) %> +<% id_style = (show_revision_graph ? "padding-left:#{(graph_space + 1) * 20}px" : nil) %> +<%= content_tag(:td, :class => 'id', :style => id_style) do %> + <%= link_to_revision(changeset, @repository) %> +<% end %> <%= radio_button_tag('rev', changeset.identifier, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < revisions.size) %> <%= radio_button_tag('rev_to', changeset.identifier, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %> <%= format_time(changeset.committed_on) %>