Actions
Patch #38360
closedDo not apply table-layout:fixed in potentially wide tables of detailed issue reports
Description
In the detailed issue reports (e.g here), the table can become very wide if there are a lot of statuses. As the table is marked as class=issue-report
, it is rendered with
table.issue-report {
table-layout: fixed;
}
This results in the table columns to overlap if there are a lot of statuses. On can just barely observe the issue even on redmine.org when reducing the width of the browser window on the above linked page.
The attached patch changes the class of the table in the detailed reports to render the table with a default table layout instead, so that the table is readable even with a lot of statuses. The patch was extracted from Planio
Files
Updated by Holger Just over 1 year ago
- File deleted (
0001-Do-not-apply-table-layout-fixed-in-potentially-wide-.patch)
Updated by Go MAEDA over 1 year ago
- Target version set to 5.1.0
Setting the target version to 5.1.0.
Updated by Go MAEDA over 1 year ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
Committed the fix. Thank you.
Actions