]> source.dussan.org Git - redmine.git/commitdiff
Split subtasks/relations information into 5 columns (#32889).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 5 Apr 2020 09:52:51 +0000 (09:52 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 5 Apr 2020 09:52:51 +0000 (09:52 +0000)
Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@19659 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/issues_helper.rb
public/stylesheets/responsive.css

index f897bc13e596fe41375969ea6130c36cc2f37659..f212f1a2a245f36f09f087c1417011640322d459 100644 (file)
@@ -126,9 +126,9 @@ module IssuesHelper
                            :project => (issue.project_id != child.project_id)),
                          :class => 'subject') +
              content_tag('td', h(child.status), :class => 'status') +
+             content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') +
              content_tag('td', format_date(child.start_date), :class => 'start_date') +
              content_tag('td', format_date(child.due_date), :class => 'due_date') +
-             content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') +
              content_tag('td',
                          (if child.disabled_core_fields.include?('done_ratio')
                             ''
@@ -181,9 +181,9 @@ module IssuesHelper
                          }.html_safe,
                          :class => 'subject') +
              content_tag('td', other_issue.status, :class => 'status') +
+             content_tag('td', link_to_user(other_issue.assigned_to), :class => 'assigned_to') +
              content_tag('td', format_date(other_issue.start_date), :class => 'start_date') +
              content_tag('td', format_date(other_issue.due_date), :class => 'due_date') +
-             content_tag('td', link_to_user(other_issue.assigned_to), :class => 'assigned_to') +
              content_tag('td',
                          (if other_issue.disabled_core_fields.include?('done_ratio')
                             ''
index 167961f44a98d81d6aa9e560e2a80d233134a992..6ac4299d68b4605b5f3b70df4feae4939b38aaa5 100644 (file)
   }
 
   #issue_tree .issue > td:not(.subject), #relations .issue > td:not(.subject) {
-    width: 33.33%; /* three columns for all cells that are not subject */
+    width: 20%; /* three columns for all cells that are not subject */
   }
 
   #issue_tree .issues, #issue_tree .issue,