Colorize transitions.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9988 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
9e06942ef0
commit
cb09055d60
|
@ -1,4 +1,4 @@
|
||||||
<table class="list transitions-<%= name %>">
|
<table class="list transitions transitions-<%= name %>">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th align="left">
|
<th align="left">
|
||||||
|
@ -29,8 +29,9 @@
|
||||||
<%=h old_status.name %>
|
<%=h old_status.name %>
|
||||||
</td>
|
</td>
|
||||||
<% for new_status in @statuses -%>
|
<% for new_status in @statuses -%>
|
||||||
<td align="center">
|
<% checked = workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id} %>
|
||||||
<%= 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},
|
<td align="center" class="<%= checked ? 'enabled' : '' %>">
|
||||||
|
<%= check_box_tag "issue_status[#{ old_status.id }][#{new_status.id}][]", name, checked,
|
||||||
:class => "old-status-#{old_status.id} new-status-#{new_status.id}" %>
|
:class => "old-status-#{old_status.id} new-status-#{new_status.id}" %>
|
||||||
</td>
|
</td>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
|
|
|
@ -433,6 +433,7 @@ ul.properties li span {font-style:italic;}
|
||||||
#user_login, #user_firstname, #user_lastname, #user_mail, #my_account_form select, #user_form select, #user_identity_url { width: 90%; }
|
#user_login, #user_firstname, #user_lastname, #user_mail, #my_account_form select, #user_form select, #user_identity_url { width: 90%; }
|
||||||
|
|
||||||
#workflow_copy_form select { width: 200px; }
|
#workflow_copy_form select { width: 200px; }
|
||||||
|
table.transitions td.enabled {background: #bfb;}
|
||||||
table.fields_permissions select {font-size:90%}
|
table.fields_permissions select {font-size:90%}
|
||||||
table.fields_permissions td.readonly {background:#ddd;}
|
table.fields_permissions td.readonly {background:#ddd;}
|
||||||
table.fields_permissions td.required {background:#d88;}
|
table.fields_permissions td.required {background:#d88;}
|
||||||
|
|
Loading…
Reference in New Issue