]> source.dussan.org Git - redmine.git/commitdiff
Don't truncate activity titles (#23575).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 1 Oct 2016 11:05:21 +0000 (11:05 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 1 Oct 2016 11:05:21 +0000 (11:05 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@15858 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb
public/stylesheets/application.css

index 4a421b1b8dd6cbeb8fca0c14d95a5f734a92c5e6..d257894dd5d090059d8d835414252bcf6e1d405d 100644 (file)
@@ -230,8 +230,9 @@ module ApplicationHelper
     link_to(name, "#", :onclick => onclick)
   end
 
+  # Used to format item titles on the activity view
   def format_activity_title(text)
-    h(truncate_single_line_raw(text, 100))
+    text
   end
 
   def format_activity_day(date)
index 1f47dd42d9b851292536afb9c00b2a84644bed60..8441df9cc8ec22602b5f2e21de12680236b43965 100644 (file)
@@ -447,6 +447,7 @@ div#activity span.project:after, #search-results span.project:after { content: "
 div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
 div#activity dt.grouped {margin-left:5em;}
 div#activity dd.grouped {margin-left:9em;}
+div#activity dt { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; height: 18px;}
 
 #search-results dd { margin-bottom: 1em; padding-left: 20px; margin-left:0px; }