@@ -15,6 +15,7 | |||
|
15 | 15 | :class => 'wiki-edit' %></p> |
|
16 | 16 | </div> |
|
17 | 17 | |
|
18 | <div class="attributes"> | |
|
18 | 19 | <div class="splitcontentleft"> |
|
19 | 20 | <% if @issue.new_record? || @allowed_statuses.any? %> |
|
20 | 21 | <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p> |
@@ -43,6 +44,7 | |||
|
43 | 44 | |
|
44 | 45 | <div style="clear:both;"> </div> |
|
45 | 46 | <%= render :partial => 'form_custom_fields' %> |
|
47 | </div> | |
|
46 | 48 | |
|
47 | 49 | <% if @issue.new_record? %> |
|
48 | 50 | <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p> |
@@ -1,3 +1,4 | |||
|
1 | <div class="attributes"> | |
|
1 | 2 | <div class="splitcontentleft"> |
|
2 | 3 | <p><%= f.select :status_id, (@allowed_statuses.collect {|p| [p.name, p.id]}), :required => true %></p> |
|
3 | 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 | 9 | (@project.versions.sort.collect {|v| [v.name, v.id]}), |
|
9 | 10 | { :include_blank => true })) unless @project.versions.empty? %> |
|
10 | 11 | </div> |
|
12 | </div> |
@@ -231,6 +231,10 table#time-report tbody tr.last-level { font-style: normal; color: #555; } | |||
|
231 | 231 | table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; } |
|
232 | 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 | 238 | ul.properties {padding:0; font-size: 0.9em; color: #777;} |
|
235 | 239 | ul.properties li {list-style-type:none;} |
|
236 | 240 | ul.properties li span {font-style:italic;} |
General Comments 0
You need to be logged in to leave comments.
Login now