diff options
-rw-r--r-- | app/views/custom_fields/_index.html.erb | 2 | ||||
-rw-r--r-- | app/views/enumerations/index.html.erb | 2 | ||||
-rw-r--r-- | app/views/issue_statuses/index.html.erb | 2 | ||||
-rw-r--r-- | app/views/projects/settings/_boards.html.erb | 2 | ||||
-rw-r--r-- | app/views/roles/index.html.erb | 2 | ||||
-rw-r--r-- | app/views/trackers/index.html.erb | 2 | ||||
-rw-r--r-- | public/stylesheets/application.css | 1 |
7 files changed, 7 insertions, 6 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> diff --git a/app/views/enumerations/index.html.erb b/app/views/enumerations/index.html.erb index 22311f159..d8aa921c2 100644 --- a/app/views/enumerations/index.html.erb +++ b/app/views/enumerations/index.html.erb @@ -18,7 +18,7 @@ <td><%= link_to h(enumeration), edit_enumeration_path(enumeration) %></td> <td class="center" style="width:15%;"><%= checked_image enumeration.is_default? %></td> <td class="center" style="width:15%;"><%= checked_image enumeration.active? %></td> - <td align="center" style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td> + <td class="reorder"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}, :put) %></td> <td class="buttons"> <%= delete_link enumeration_path(enumeration) %> </td> diff --git a/app/views/issue_statuses/index.html.erb b/app/views/issue_statuses/index.html.erb index dea9fb3cb..61d0c616b 100644 --- a/app/views/issue_statuses/index.html.erb +++ b/app/views/issue_statuses/index.html.erb @@ -25,7 +25,7 @@ <% end %> <td align="center"><%= checked_image status.is_default? %></td> <td align="center"><%= checked_image status.is_closed? %></td> - <td align="center" style="width:15%;"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td> + <td class="reorder"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td> <td class="buttons"> <%= delete_link issue_status_path(status) %> </td> diff --git a/app/views/projects/settings/_boards.html.erb b/app/views/projects/settings/_boards.html.erb index dd8393cda..c1e023efe 100644 --- a/app/views/projects/settings/_boards.html.erb +++ b/app/views/projects/settings/_boards.html.erb @@ -12,7 +12,7 @@ <tr class="<%= cycle 'odd', 'even' %>"> <td style="padding-left: <%= level * 18 %>px;"><%= link_to board.name, project_board_path(@project, board) %></td> <td><%=h board.description %></td> - <td align="center"> + <td class="reorder"> <% if authorize_for("boards", "edit") %> <%= reorder_links('board', {:controller => 'boards', :action => 'update', :project_id => @project, :id => board}, :put) %> <% end %> diff --git a/app/views/roles/index.html.erb b/app/views/roles/index.html.erb index 4240d096b..4f3fb2b4e 100644 --- a/app/views/roles/index.html.erb +++ b/app/views/roles/index.html.erb @@ -15,7 +15,7 @@ <% for role in @roles %> <tr class="<%= cycle("odd", "even") %>"> <td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), edit_role_path(role))) %></td> - <td align="center" style="width:15%;"> + <td class="reorder"> <% unless role.builtin? %> <%= reorder_links('role', {:action => 'update', :id => role}, :put) %> <% end %> diff --git a/app/views/trackers/index.html.erb b/app/views/trackers/index.html.erb index 469ff7945..0d6e11898 100644 --- a/app/views/trackers/index.html.erb +++ b/app/views/trackers/index.html.erb @@ -23,7 +23,7 @@ </span> <% end %> </td> - <td align="center" style="width:15%;"> + <td class="reorder"> <%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %> </td> <td class="buttons"> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 2823229f2..dc5516182 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -129,6 +129,7 @@ table.list td.checkbox { width: 15px; padding: 2px 0 0 0; } table.list td.checkbox input {padding:0px;} table.list td.buttons { width: 15%; white-space:nowrap; text-align: right; } table.list td.buttons a { padding-right: 0.6em; } +table.list td.reorder {width:15%; white-space:nowrap; text-align:center; } table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; } tr.project td.name a { white-space:nowrap; } |