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
|
## 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.
|
||||||
|
|||||||
@@ -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
Reference in New Issue
Block a user