Actions
Patch #38732
openAdjusting elements position on Issue Edit View
Start date:
Due date:
% Done:
0%
Estimated time:
Description
Currentry, elements are not same position on Issue Show View and Issue Edit View.
I think it will confuse people who are new to Redmine.
So, I propose this patch.
Note: You can easily apply similar content as this patch using jQuery.
$("#parent_issue").insertAfter($('#issue_project_id').parent()).css({float: "right"});
$('#issue_description_and_toolbar').parent().insertAfter('#attributes');
$('#issue_done_ratio').parent().insertAfter('#due_date_area');
$('<hr>').insertAfter('#attributes');
$('<hr>').insertAfter($('#issue_subject').parent());
Files
Actions