diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-11-10 13:24:07 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-11-10 13:24:07 +0000 |
commit | 8525e56c339072ee116c956fcc7d8365f58560a8 (patch) | |
tree | 33478b8c97499c04d4097b6ec336f8f32a843530 /app/views/custom_fields | |
parent | 3096b6183e4fb7cb1e3a5dd0b6c83e857373d9aa (diff) | |
download | redmine-8525e56c339072ee116c956fcc7d8365f58560a8.tar.gz redmine-8525e56c339072ee116c956fcc7d8365f58560a8.zip |
Adds a CSS class for reorder links (#15307).
git-svn-id: http://svn.redmine.org/redmine/trunk@12265 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields')
-rw-r--r-- | app/views/custom_fields/_index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/custom_fields/_index.html.erb b/app/views/custom_fields/_index.html.erb index 79fc09ae5..afee212c9 100644 --- a/app/views/custom_fields/_index.html.erb +++ b/app/views/custom_fields/_index.html.erb @@ -20,7 +20,7 @@ <td align="center"><%= checked_image custom_field.is_for_all? %></td> <td align="center"><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td> <% end %> - <td align="center" style="width:15%;"><%= reorder_links('custom_field', {:action => 'update', :id => custom_field}, :put) %></td> + <td class="reorder"><%= reorder_links('custom_field', {:action => 'update', :id => custom_field}, :put) %></td> <td class="buttons"> <%= delete_link custom_field_path(custom_field) %> </td> |