]> source.dussan.org Git - redmine.git/commitdiff
Merged r21642 to 5.0-stable (#36453).
authorMarius Balteanu <marius.balteanu@zitec.com>
Fri, 17 Jun 2022 07:09:11 +0000 (07:09 +0000)
committerMarius Balteanu <marius.balteanu@zitec.com>
Fri, 17 Jun 2022 07:09:11 +0000 (07:09 +0000)
git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@21648 e93f8b46-1217-0410-a6f0-8f06a7374b81

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

index 6a043ff2fbb3c214eea14a8ff77c420f7760a41c..6d7402f66119649073009468c5cd92ff7abdfafb 100644 (file)
@@ -541,7 +541,7 @@ p.footnote { font-size: 0.9em; margin-top: 0px; margin-bottom: 0px; }
 .wiki-class-ltr {direction:ltr !important;}
 .wiki-class-rtl {direction:rtl !important;}
 
-div.issue div.subject div div { padding-left: 16px; }
+div.issue div.subject div div { padding-left: 16px; word-break: break-word; }
 div.issue div.subject p {margin: 0; margin-bottom: 0.1em; font-size: 90%; color: #999;}
 div.issue div.subject>div>p { margin-top: 0.5em; }
 div.issue div.subject h3 {margin: 0; margin-bottom: 0.1em;}
@@ -559,11 +559,18 @@ body.controller-issues h2.inline-flex {padding-right: 0}
 
 #issue_tree table.issues, #relations table.issues { border: 0; }
 #issue_tree td.checkbox, #relations td.checkbox {display:none;}
-#issue_tree td.subject, #relations td.subject {width: 50%;}
 #issue_tree td.buttons, #relations td.buttons {padding:0;}
 #issue_tree .issues-stat, #relations .issues-stat {font-size: 80%}
 #issue_tree .issues-stat .badge, #relations .issues-stat .badge {bottom: initial;}
-
+#issue_tree .issue > td, #relations .issue > td, #issue_tree .issue .user {
+  text-overflow: ellipsis; /* if text exceeds its space, add ... */
+  overflow: hidden;
+}
+#issue_tree .issue > td.subject, #relations .issue > td.subject {
+  width: 100%; /* 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 */
+}
 #trackers_description {display:none;}
 #trackers_description dt {font-weight: bold; text-decoration: underline;}
 #trackers_description dd {margin: 0; padding: 0 0 1em 0;}
index 9899a90c161a83c18bdd0df28478ad575c6590ae..3d3a41fff8c4e6f7362e861ae686a88e5711f52d 100644 (file)
     padding-right: 5px;
   }
 
-  #issue_tree .issue > td, #relations .issue > td, #issue_tree .issue .user {
-    text-overflow: ellipsis; /* if text exceeds its space, add ... */
-    overflow: hidden;
-  }
-
-  #issue_tree .issue > td.subject, #relations .issue > td.subject {
-    width: 100%; /* 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:not(.subject), #relations .issue > td:not(.subject) {
     width: 20%; /* three columns for all cells that are not subject */
   }