##// END OF EJS Templates
Slight visual changes on the issue form....
Jean-Philippe Lang -
r2267:00ce28f8d718
parent child
Show More
@@ -15,6 +15,7
15 :class => 'wiki-edit' %></p>
15 :class => 'wiki-edit' %></p>
16 </div>
16 </div>
17
17
18 <div class="attributes">
18 <div class="splitcontentleft">
19 <div class="splitcontentleft">
19 <% if @issue.new_record? || @allowed_statuses.any? %>
20 <% if @issue.new_record? || @allowed_statuses.any? %>
20 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
21 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
@@ -43,6 +44,7
43
44
44 <div style="clear:both;"> </div>
45 <div style="clear:both;"> </div>
45 <%= render :partial => 'form_custom_fields' %>
46 <%= render :partial => 'form_custom_fields' %>
47 </div>
46
48
47 <% if @issue.new_record? %>
49 <% if @issue.new_record? %>
48 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
50 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
@@ -1,3 +1,4
1 <div class="attributes">
1 <div class="splitcontentleft">
2 <div class="splitcontentleft">
2 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
3 <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p>
3 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
4 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
@@ -8,3 +9,4
8 (@project.versions.sort.collect {|v| [v.name, v.id]}),
9 (@project.versions.sort.collect {|v| [v.name, v.id]}),
9 { :include_blank => true })) unless @project.versions.empty? %>
10 { :include_blank => true })) unless @project.versions.empty? %>
10 </div>
11 </div>
12 </div>
@@ -231,6 +231,10 table#time-report tbody tr.last-level { font-style: normal; color: #555; }
231 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
231 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
232 table#time-report .hours-dec { font-size: 0.9em; }
232 table#time-report .hours-dec { font-size: 0.9em; }
233
233
234 form#issue-form .attributes { margin-bottom: 8px; }
235 form#issue-form .attributes p { padding-top: 1px; padding-bottom: 2px; }
236 form#issue-form .attributes select { min-width: 30%; }
237
234 ul.properties {padding:0; font-size: 0.9em; color: #777;}
238 ul.properties {padding:0; font-size: 0.9em; color: #777;}
235 ul.properties li {list-style-type:none;}
239 ul.properties li {list-style-type:none;}
236 ul.properties li span {font-style:italic;}
240 ul.properties li span {font-style:italic;}
General Comments 0
You need to be logged in to leave comments. Login now