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/custom_fields | |
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/custom_fields')
-rw-r--r-- | app/views/custom_fields/list.rhtml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/views/custom_fields/list.rhtml b/app/views/custom_fields/list.rhtml index 8e4573aed..eef3e8631 100644 --- a/app/views/custom_fields/list.rhtml +++ b/app/views/custom_fields/list.rhtml @@ -1,7 +1,7 @@ <h2><%=l(:label_custom_field_plural)%></h2> -<table class="listTableContent">
-<tr class="ListHead"> +<table class="list">
+ <thead><tr> <th><%=l(:field_name)%></th> <th><%=l(:field_type)%></th>
<th><%=l(:field_field_format)%></th>
@@ -9,7 +9,8 @@ <th><%=l(:field_is_for_all)%></th>
<th><%=l(:label_used_by)%></th>
<th></th>
-</tr> + </tr></thead> + <tbody> <% for custom_field in @custom_fields %> <tr class="<%= cycle("odd", "even") %>">
<td><%= link_to custom_field.name, :action => 'edit', :id => custom_field %></td>
@@ -23,6 +24,7 @@ </td> </tr> <% end %> + </tbody> </table>
<%= pagination_links_full @custom_field_pages %> |