diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-24 16:35:25 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-24 16:35:25 +0000 |
commit | d3600e729fbcbadad2923fadabeabae02620e755 (patch) | |
tree | 2e3872e7b06c0b720379d259ffaaf72b34ec5325 /app/views/issues/_list_simple.rhtml | |
parent | 6c8e1514aa0cde2e89aad6c525ede8feb384ccf8 (diff) | |
download | redmine-d3600e729fbcbadad2923fadabeabae02620e755.tar.gz redmine-d3600e729fbcbadad2923fadabeabae02620e755.zip |
css cleaning
git-svn-id: http://redmine.rubyforge.org/svn/trunk@108 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/_list_simple.rhtml')
-rw-r--r-- | app/views/issues/_list_simple.rhtml | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/app/views/issues/_list_simple.rhtml b/app/views/issues/_list_simple.rhtml index cd2355376..10d880f43 100644 --- a/app/views/issues/_list_simple.rhtml +++ b/app/views/issues/_list_simple.rhtml @@ -1,28 +1,25 @@ <% if issues.length > 0 %>
-<table cellspacing="0" cellpadding="1" width="100%" border="0" class="listTable">
- <tr><td>
- <table class="listTableContent">
- <tr class="ListHead">
+ <table class="list">
+ <thead><tr>
<th>#</th>
<th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th>
- </tr>
+ </tr></thead>
+ <tbody>
<% for issue in issues %> <tr class="<%= cycle("odd", "even") %>">
- <td align="center" style="font-weight:bold;color:#<%= issue.status.html_color %>;">
- <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %><br />
- </td>
+ <th align="center">
+ <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
+ </th>
<td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br /> <%= issue.status.name %> - <%= format_time(issue.updated_on) %></p></td>
<td>
<p class="small"><%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %></p>
</td> </tr> - <% end %> - </table> - </td>
- </tr>
-</table>
+ <% end %>
+ </tbody> + </table>
<% else %>
<i><%=l(:label_no_data)%></i>
<% end %>
\ No newline at end of file |