Vote #76776
完了% done: progress bar blocked at 80 in the issue list
0%
説明
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;
}
journals
Sorry, I can't fix the description :
A fix to put in public/stylesheets/application.css :
<pre><code class="css">
table.list table.progress td {
padding-right:0px;
}</code></pre>
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
rtl.css is for Right-to-left (Arabic etc.), right?
--------------------------------------------------------------------------------
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 :
<pre><code class="css">table.list td {text-align:center; vertical-align:top; padding-right:10px;}</code></pre>
--------------------------------------------------------------------------------
Hi, can you check this simple patch ?
--------------------------------------------------------------------------------
@Jérôme BATAILLE:
Could you please attach screenshots? (before and after). After I see it, I will set target version.
--------------------------------------------------------------------------------
Go MAEDA wrote:
> Could you please attach screenshots? (before and after). After I see it, I will set target version.
here they are :
* without patch
!redmine_issues_done_stuck_80.png!
* with patch
!redmine_issues_done_ok.png!
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Sorry, I cannot see any difference in note-7 with and without.
--------------------------------------------------------------------------------
I got it.
!i-got-it.png!
--------------------------------------------------------------------------------
Yes it's just a tiny difference.
--------------------------------------------------------------------------------
Committed, thanks.
--------------------------------------------------------------------------------
Thanks a lot.
--------------------------------------------------------------------------------