Defect #43588
closedRight column in issue view uses splitcontentleft CSS class instead of splitcontentright
0%
Description
In the Issue view, within the attributes section, the div.splitcontent container uses div.splitcontentleft twice for both left and right sections.
However, in the Issue edit view, the right-side section inside div.splitcontent correctly uses div.splitcontentright .
Is this behavior intentional, or should the Issue view also use div.splitcontentright for the right-side section to maintain consistency?
The corresponding line can be found here:
source:/branches/6.1-stable/app/helpers/issues_helper.rb@24209#L350
Files
Updated by Go MAEDA 21 days ago
- File 43588.patch 43588.patch added
- Target version set to Candidate for next major release
Thank you for catching the issue. Having div.splitcontentleft used twice in the issue view is most likely a mistake.
At the moment, in the issue attributes section, the attributes that are rendered on the right side receive an unnecessary 5px margin. This comes from using splitcontentleft for the second column as well.
If the second <div class="splitcontentleft"> is changed to <div class="splitcontentright">, the unnecessary right-side margin is removed. The attached patch fixes the CSS as such.
Updated by Go MAEDA 16 days ago
- Subject changed from Inconsistent Use of splitcontentleft and splitcontentright in Issue View Layout to Right column in issue view uses splitcontentleft CSS class instead of splitcontentright
- Status changed from Confirmed to Closed
- Assignee set to Go MAEDA
Committed the patch in r24224. Thank you.