Actions
Defect #20882
closed% done: progress bar blocked at 80 in the issue list
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
It's because of a css right padding in /public/stylesheets/rtl.css :
/***** Tables *****/
table.list td {padding-left:0px; padding-right:10px;}
A fix :
table.list table.progress td {
padding-right:0px;
}
Files
Updated by Jérôme BATAILLE about 9 years ago
Sorry, I can't fix the description :
A fix to put in public/stylesheets/application.css :
table.list table.progress td {
padding-right:0px;
}
Updated by Toshi MARUYAMA about 9 years ago
- Category deleted (
Issues) - Status changed from New to Needs feedback
rtl.css is for Right-to-left (Arabic etc.), right?
Updated by Jérôme BATAILLE almost 9 years ago
Toshi MARUYAMA wrote:
rtl.css is for Right-to-left (Arabic etc.), right?
You're right ! the same instruction to override is in application.css :
table.list td {text-align:center; vertical-align:top; padding-right:10px;}
Updated by Jérôme BATAILLE over 8 years ago
Hi, can you check this simple patch ?
Updated by Go MAEDA over 8 years ago
- Category set to UI
@Jérôme BATAILLE:
Could you please attach screenshots? (before and after). After I see it, I will set target version.
Updated by Jérôme BATAILLE over 8 years ago
- File redmine_issues_done_ok.png redmine_issues_done_ok.png added
- File redmine_issues_done_stuck_80.png redmine_issues_done_stuck_80.png added
Go MAEDA wrote:
here they are :Could you please attach screenshots? (before and after). After I see it, I will set target version.
- without patch
- with patch
Updated by Go MAEDA over 8 years ago
- Status changed from Needs feedback to Confirmed
- Target version set to 3.2.2
Updated by Toshi MARUYAMA over 8 years ago
Sorry, I cannot see any difference in note-7 with and without.
Updated by Jean-Philippe Lang over 8 years ago
- Subject changed from % done : progress bar blocked at 80 to % done: progress bar blocked at 80 in the issue list
- Status changed from Confirmed to Closed
- Assignee set to Jean-Philippe Lang
- Target version changed from 3.2.2 to 3.3.0
- Resolution set to Fixed
Committed, thanks.
Actions