Defect #37282
closedSubtask isn't displayed correctly since 4.2.7
0%
Description
I can't reproduce a screenshot with 4.2.6 but the subtask looks different / not good since 4.2.7 :
Files
Related issues
Updated by Go MAEDA over 2 years ago
Could you elaborate on what the problem is?
Updated by Nono Nono over 2 years ago
The columns should be distributed evenly, currently there is a line break in every column because the assignee is split across two lines (can't be seen on the screenshot so you have to trust me on this one :)
I suppose it is just a CSS issue: fixing column widths
Updated by Go MAEDA over 2 years ago
- File 37282-confirmed.png 37282-confirmed.png added
Nono Nono wrote:
The columns should be distributed evenly, currently there is a line break in every column because the assignee is split across two lines (can't be seen on the screenshot so you have to trust me on this one :)
Confirmed the issue.
Updated by Go MAEDA over 2 years ago
Probably it is caused by source:trunk/public/stylesheets/application.css@21642#L570 in r21642 (#36453).
Updated by Go MAEDA over 2 years ago
- File 37282-cjk.png 37282-cjk.png added
The appearance is even worse if CJK ( Chinese / Japanese / Korean) characters are used in the assignee's name.
Updated by Go MAEDA over 2 years ago
- Related to Defect #36453: Issue subject overflow in subtasks and relations tables added
Updated by Dmitry Makurin over 2 years ago
- File 37282.patch 37282.patch added
Attaching a patch. It adjusts subject width to 50% (as it was previous, wont take that much space) and fixes line breaks in the assigned_to column for CJK.
Updated by Marius BĂLTEANU over 2 years ago
@Go Maeda, the fix works for you? Or would you prefer to revert the changes?
Updated by Marius BĂLTEANU over 2 years ago
- File fix_for_37282.patch fix_for_37282.patch added
Can you test this one as well?
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 6f4796285..5207cec26 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -567,10 +567,13 @@ body.controller-issues h2.inline-flex {padding-right: 0}
overflow: hidden;
}
#issue_tree .issue > td.subject, #relations .issue > td.subject {
- width: 100%; /* let subject have one full width column */
+ width: 50%; /* let subject have one full width column */
word-break: break-word; /* break word if subject is too long */
padding-right: 25px; /* this is the spaces that .buttons uses next to subject */
}
+#issue_tree .issue > td.assigned_to, #relations .issue > td.assigned_to {
+ white-space: nowrap;
+}
#trackers_description {display:none;}
#trackers_description dt {font-weight: bold; text-decoration: underline;}
#trackers_description dd {margin: 0; padding: 0 0 1em 0;}
diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css
index 3d3a41fff..d6282046d 100644
--- a/public/stylesheets/responsive.css
+++ b/public/stylesheets/responsive.css
@@ -774,6 +774,10 @@
padding-right: 5px;
}
+ #issue_tree .issue > td.subject, #relations .issue > td.subject {
+ width: 100%; /* let subject have one full width column */
+ }
+
#issue_tree .issue > td:not(.subject), #relations .issue > td:not(.subject) {
width: 20%; /* three columns for all cells that are not subject */
}
Updated by Marius BĂLTEANU over 2 years ago
- Subject changed from subtask isn't displayed correctly since 4.2.7 to Subtask isn't displayed correctly since 4.2.7
Updated by Go MAEDA over 2 years ago
I confirmed the both 37282.patch and fix_for_37282.patch fixes the issue described in #37282#6, and didn't find any side effects.
I think we don't have to revert r21642.
Updated by Marius BĂLTEANU about 2 years ago
- Status changed from Confirmed to Resolved
- Assignee set to Marius BĂLTEANU
- Resolution set to Fixed
I've committed the second patch.
Updated by Marius BĂLTEANU about 2 years ago
- Status changed from Resolved to Closed