diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2020-04-05 09:51:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2020-04-05 09:51:11 +0000 |
commit | f47ed1a5e22b87b304463a9305bd504a49e254e0 (patch) | |
tree | 64323f420865e80755796a50bfcf3e15b54d3781 /app/helpers/issues_helper.rb | |
parent | d6734e62397fff3b806b67d521b1080f6fab03b1 (diff) | |
download | redmine-f47ed1a5e22b87b304463a9305bd504a49e254e0.tar.gz redmine-f47ed1a5e22b87b304463a9305bd504a49e254e0.zip |
Move style to css (#32889).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@19658 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/issues_helper.rb')
-rw-r--r-- | app/helpers/issues_helper.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 0a5abc8b2..f897bc13e 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -124,7 +124,7 @@ module IssuesHelper link_to_issue( child, :project => (issue.project_id != child.project_id)), - :class => 'subject', :style => 'width: 50%') + + :class => 'subject') + content_tag('td', h(child.status), :class => 'status') + content_tag('td', format_date(child.start_date), :class => 'start_date') + content_tag('td', format_date(child.due_date), :class => 'due_date') + @@ -179,8 +179,7 @@ module IssuesHelper other, :project => Setting.cross_project_issue_relations?) }.html_safe, - :class => 'subject', - :style => 'width: 50%') + + :class => 'subject') + content_tag('td', other_issue.status, :class => 'status') + content_tag('td', format_date(other_issue.start_date), :class => 'start_date') + content_tag('td', format_date(other_issue.due_date), :class => 'due_date') + |