Commit b3be8745 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

tr color removed on issues list

git-svn-id: http://redmine.rubyforge.org/svn/trunk@65 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent aa28c3d7
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<th><%=l(:field_subject)%></th> <th><%=l(:field_subject)%></th>
</tr> </tr>
<% for issue in issues %> <% for issue in issues %>
<tr bgcolor="#<%= issue.status.html_color %>"> <tr class="<%= cycle("odd", "even") %>">
<td align="center"> <td align="center" style="font-weight:bold;color:#<%= issue.status.html_color %>;">
<%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %><br /> <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %><br />
</td> </td>
<td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br /> <td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
......
...@@ -56,10 +56,10 @@ ...@@ -56,10 +56,10 @@
<%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %> <%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %>
</tr> </tr>
<% for issue in @issues %> <% for issue in @issues %>
<tr bgcolor="#<%= issue.status.html_color %>"> <tr class="<%= cycle("odd", "even") %>">
<td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td> <td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td>
<td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td> <td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td>
<td align="center"><%= issue.status.name %></td> <td align="center" style="font-weight:bold;color:#<%= issue.status.html_color %>;"><%= issue.status.name %></font></td>
<td align="center"><%= issue.tracker.name %></td> <td align="center"><%= issue.tracker.name %></td>
<td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td> <td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td>
<td align="center"><%= issue.author.display_name %></td> <td align="center"><%= issue.author.display_name %></td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment