Defect #32889 » 0001-Split-on-5-columns.patch
app/helpers/issues_helper.rb | ||
---|---|---|
126 | 126 |
:project => (issue.project_id != child.project_id)), |
127 | 127 |
:class => 'subject') + |
128 | 128 |
content_tag('td', h(child.status), :class => 'status') + |
129 |
content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') + |
|
129 | 130 |
content_tag('td', format_date(child.start_date), :class => 'start_date') + |
130 | 131 |
content_tag('td', format_date(child.due_date), :class => 'due_date') + |
131 |
content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') + |
|
132 | 132 |
content_tag('td', |
133 | 133 |
(if child.disabled_core_fields.include?('done_ratio') |
134 | 134 |
'' |
... | ... | |
181 | 181 |
}.html_safe, |
182 | 182 |
:class => 'subject') + |
183 | 183 |
content_tag('td', other_issue.status, :class => 'status') + |
184 |
content_tag('td', link_to_user(other_issue.assigned_to), :class => 'assigned_to') + |
|
184 | 185 |
content_tag('td', format_date(other_issue.start_date), :class => 'start_date') + |
185 | 186 |
content_tag('td', format_date(other_issue.due_date), :class => 'due_date') + |
186 |
content_tag('td', link_to_user(other_issue.assigned_to), :class => 'assigned_to') + |
|
187 | 187 |
content_tag('td', |
188 | 188 |
(if other_issue.disabled_core_fields.include?('done_ratio') |
189 | 189 |
'' |
public/stylesheets/responsive.css | ||
---|---|---|
803 | 803 |
} |
804 | 804 | |
805 | 805 |
#issue_tree .issue > td:not(.subject), #relations .issue > td:not(.subject) { |
806 |
width: 33.33%; /* three columns for all cells that are not subject */
|
|
806 |
width: 20%; /* three columns for all cells that are not subject */
|
|
807 | 807 |
} |
808 | 808 | |
809 | 809 |
#issue_tree .issues, #issue_tree .issue, |
- « Previous
- 1
- …
- 3
- 4
- 5
- Next »