summaryrefslogtreecommitdiffstats
path: root/app/views/roles
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-04-02 19:27:05 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-04-02 19:27:05 +0000
commit3c8a38212eb69265a89ceb5a5c67403aaedd36e7 (patch)
treec5b8758def9c0e8d67f6daef9977bccbd7a3765d /app/views/roles
parenteba4af7a9f92cc4d348dfd8285eb634fb44e3b8d (diff)
downloadredmine-3c8a38212eb69265a89ceb5a5c67403aaedd36e7.tar.gz
redmine-3c8a38212eb69265a89ceb5a5c67403aaedd36e7.zip
Applied the same column width in different similar views.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@403 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/roles')
-rw-r--r--app/views/roles/list.rhtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/roles/list.rhtml b/app/views/roles/list.rhtml
index 872c62ee8..a27af8c85 100644
--- a/app/views/roles/list.rhtml
+++ b/app/views/roles/list.rhtml
@@ -14,13 +14,13 @@
<% for role in @roles %>
<tr class="<%= cycle("odd", "even") %>">
<td><%= link_to role.name, :action => 'edit', :id => role %></td>
- <td align="center">
+ <td align="center" style="width:15%;">
<%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => role, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %>
<%= link_to image_tag('1uparrow.png', :alt => l(:label_sort_higher)), {:action => 'move', :id => role, :position => 'higher'}, :method => :post, :title => l(:label_sort_higher) %> -
<%= link_to image_tag('1downarrow.png', :alt => l(:label_sort_lower)), {:action => 'move', :id => role, :position => 'lower'}, :method => :post, :title => l(:label_sort_lower) %>
<%= link_to image_tag('2downarrow.png', :alt => l(:label_sort_lowest)), {:action => 'move', :id => role, :position => 'lowest'}, :method => :post, :title => l(:label_sort_lowest) %>
</td>
- <td align="center">
+ <td align="center" style="width:10%;">
<%= button_to l(:button_delete), { :action => 'destroy', :id => role }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
</tr>
<% end %>