Fix text wrapping in issue list

This commit is contained in:
mrliptontea
2020-06-15 20:51:07 +01:00
parent 8bf71cf947
commit f87c391547
3 changed files with 16 additions and 3 deletions

View File

@@ -56,6 +56,10 @@ If you need to customize styles for [Redmine Backlogs][redmine_backlogs] remembe
## Changelog ## Changelog
Latest (master):
* Fixed #196: text wrapping in certain column types.
v2.11.0 (2020-05-08): v2.11.0 (2020-05-08):
* Fixed #179: full screen mode issues when using redmine_wysiwyg_editor plugin. * Fixed #179: full screen mode issues when using redmine_wysiwyg_editor plugin.

View File

@@ -193,10 +193,14 @@ tr.issue {
text-align: center; text-align: center;
white-space: nowrap; white-space: nowrap;
.category,
.list,
.parent-subject,
.parent,
.relations,
.string, .string,
.text,
.subject, .subject,
.category { .text {
white-space: normal; white-space: normal;
} }
@@ -303,6 +307,11 @@ td.center {
text-align: center; text-align: center;
} }
td.assigned_to,
td.last_updated_by {
white-space: normal;
}
.issue-report { .issue-report {
table-layout: fixed; table-layout: fixed;
} }

File diff suppressed because one or more lines are too long