diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-09-30 15:22:56 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-09-30 15:22:56 +0000 |
commit | 40ff34ce2cbfb5efe9f957de6b235caac30d0ec7 (patch) | |
tree | 69bd6cf52f99732236712d2885698d91726f80cf /public/stylesheets/application.css | |
parent | c2c33357f61bd6882ab3e12f3cb7a1549790793b (diff) | |
download | redmine-40ff34ce2cbfb5efe9f957de6b235caac30d0ec7.tar.gz redmine-40ff34ce2cbfb5efe9f957de6b235caac30d0ec7.zip |
Merge r21872 and r21873 from trunk to 5.0-stable (#37282)
git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@21874 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/stylesheets/application.css')
-rw-r--r-- | public/stylesheets/application.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index ea177eab3..c8e4b842c 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%; 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;} |