From: Jean-Philippe Lang Date: Mon, 21 Feb 2011 15:06:11 +0000 (+0000) Subject: Prevent text wrap in gantt subjects (#7280). X-Git-Tag: 1.2.0~910 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2f7084f7a27671c5f0b2db55fe3bdafe507f4f12;p=redmine.git Prevent text wrap in gantt subjects (#7280). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4913 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb index 33220eea9..1e38647ee 100644 --- a/app/views/gantts/show.html.erb +++ b/app/views/gantts/show.html.erb @@ -60,7 +60,7 @@ end # Width of the entire chart g_width = (@gantt.date_to - @gantt.date_from + 1)*zoom -@gantt.render(:top => headers_height + 8, :zoom => zoom, :g_width => g_width) +@gantt.render(:top => headers_height + 8, :zoom => zoom, :g_width => g_width, :subject_width => subject_width) g_height = [(20 * (@gantt.number_of_rows + 6))+150, 206].max t_height = g_height + headers_height diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index b0d722906..d4492ec68 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -709,7 +709,10 @@ module Redmine end def html_subject(params, subject, options={}) - output = "
" + style = "position: absolute;line-height:1.2em;height:16px;top:#{params[:top]}px;left:#{params[:indent]}px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis;" + style << "width:#{params[:subject_width] - params[:indent]}px;" if params[:subject_width] + + output = "
" output << subject output << "
" @subjects << output