diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-09-30 15:17:58 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-09-30 15:17:58 +0000 |
commit | c6997016688edbd728d42ed4cc6284e5c3b14e20 (patch) | |
tree | e2807ee0339abcfb952e1c5441b767436c3b7b26 | |
parent | df88b9c7ddb485784b1c74c40e7b34675d68f983 (diff) | |
download | redmine-c6997016688edbd728d42ed4cc6284e5c3b14e20.tar.gz redmine-c6997016688edbd728d42ed4cc6284e5c3b14e20.zip |
Fix subtask list is not properly displayed (#37282).
git-svn-id: https://svn.redmine.org/redmine/trunk@21872 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/stylesheets/application.css | 5 | ||||
-rw-r--r-- | public/stylesheets/responsive.css | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 6f4796285..5207cec26 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%; /* 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;} diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css index 3d3a41fff..d6282046d 100644 --- a/public/stylesheets/responsive.css +++ b/public/stylesheets/responsive.css @@ -774,6 +774,10 @@ 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 */ } |