Merge pull request #197 from mrliptontea/issue-196
Fix text wrapping in issue list
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
Reference in New Issue
Block a user