Merge pull request #197 from mrliptontea/issue-196

Fix text wrapping in issue list
This commit is contained in:
Grzegorz Rajchman
2020-06-15 20:59:30 +01:00
committed by GitHub
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
Latest (master):
* Fixed #196: text wrapping in certain column types.
v2.11.0 (2020-05-08):
* Fixed #179: full screen mode issues when using redmine_wysiwyg_editor plugin.

View File

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

File diff suppressed because one or more lines are too long