]> source.dussan.org Git - redmine.git/commitdiff
Fix subtask list is not properly displayed (#37282).
authorMarius Balteanu <marius.balteanu@zitec.com>
Fri, 30 Sep 2022 15:17:58 +0000 (15:17 +0000)
committerMarius Balteanu <marius.balteanu@zitec.com>
Fri, 30 Sep 2022 15:17:58 +0000 (15:17 +0000)
git-svn-id: https://svn.redmine.org/redmine/trunk@21872 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/stylesheets/application.css
public/stylesheets/responsive.css

index 6f4796285c22443060e13d9967a0329e45908cca..5207cec26b22e35e71a1fae89be6ac8b2a66c7bb 100644 (file)
@@ -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;}
index 3d3a41fff8c4e6f7362e861ae686a88e5711f52d..d6282046df7776b210befaddc2ab86a6458fafdc 100644 (file)
     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 */
   }