@@ -1,4 +1,4 | |||
|
1 | <table class="list transitions-<%= name %>"> | |
|
1 | <table class="list transitions transitions-<%= name %>"> | |
|
2 | 2 | <thead> |
|
3 | 3 | <tr> |
|
4 | 4 | <th align="left"> |
@@ -29,8 +29,9 | |||
|
29 | 29 | <%=h old_status.name %> |
|
30 | 30 | </td> |
|
31 | 31 | <% for new_status in @statuses -%> |
|
32 | <td align="center"> | |
|
33 | <%= check_box_tag "issue_status[#{ old_status.id }][#{new_status.id}][]", name, workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id}, | |
|
32 | <% checked = workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id} %> | |
|
33 | <td align="center" class="<%= checked ? 'enabled' : '' %>"> | |
|
34 | <%= check_box_tag "issue_status[#{ old_status.id }][#{new_status.id}][]", name, checked, | |
|
34 | 35 | :class => "old-status-#{old_status.id} new-status-#{new_status.id}" %> |
|
35 | 36 | </td> |
|
36 | 37 | <% end -%> |
@@ -433,6 +433,7 ul.properties li span {font-style:italic;} | |||
|
433 | 433 | #user_login, #user_firstname, #user_lastname, #user_mail, #my_account_form select, #user_form select, #user_identity_url { width: 90%; } |
|
434 | 434 | |
|
435 | 435 | #workflow_copy_form select { width: 200px; } |
|
436 | table.transitions td.enabled {background: #bfb;} | |
|
436 | 437 | table.fields_permissions select {font-size:90%} |
|
437 | 438 | table.fields_permissions td.readonly {background:#ddd;} |
|
438 | 439 | table.fields_permissions td.required {background:#d88;} |
General Comments 0
You need to be logged in to leave comments.
Login now