diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-08-31 17:13:52 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-08-31 17:13:52 +0000 |
commit | 49d057a7e3eca6f8281e669882f62dee91ec3097 (patch) | |
tree | 9a3f10801e4741cc7ba32984a7c957e0214351f2 | |
parent | d3d48c40909ffb91ce433bb31200ae24906dcff0 (diff) | |
download | redmine-49d057a7e3eca6f8281e669882f62dee91ec3097.tar.gz redmine-49d057a7e3eca6f8281e669882f62dee91ec3097.zip |
Let long words in subject of subtask break (#23708).
Patch by Felix Gliesche.
git-svn-id: http://svn.redmine.org/redmine/trunk@15781 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/stylesheets/responsive.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css index 3162a1c89..d81820ccc 100644 --- a/public/stylesheets/responsive.css +++ b/public/stylesheets/responsive.css @@ -739,6 +739,7 @@ #issue_tree .issue > td.subject, #relations .issue > td.subject { width: 100% !important; /* let subject have one full width column */ + word-break: break-word; /* break word if subject is too long */ } #issue_tree .issue > td:not(.checkbox), #relations .issue > td:not(.checkbox) { |