]> source.dussan.org Git - redmine.git/commitdiff
Adds a CSS class for reorder links (#15307).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 10 Nov 2013 13:24:07 +0000 (13:24 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 10 Nov 2013 13:24:07 +0000 (13:24 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@12265 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/custom_fields/_index.html.erb
app/views/enumerations/index.html.erb
app/views/issue_statuses/index.html.erb
app/views/projects/settings/_boards.html.erb
app/views/roles/index.html.erb
app/views/trackers/index.html.erb
public/stylesheets/application.css

index 79fc09ae531cda34bb95ce7d6e55697d3c89f5ea..afee212c9e159b3d16588e8c04dcbf1243a634ed 100644 (file)
@@ -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>
index 22311f1591ac875fed4eeadcbd9e4d5da1d4750d..d8aa921c26e07c04cc8c1a3a2e4b0c2370914364 100644 (file)
@@ -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>
index dea9fb3cb330dbcc6afd55eb69206a94c136a410..61d0c616b99c1159ebd20b4a664326fd32d51bc2 100644 (file)
@@ -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>
index dd8393cda87113f3f028f6dec358bb95ee9cb171..c1e023efe47db3b135075a54ff14a87515f84b5e 100644 (file)
@@ -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 %>
index 4240d096bbfe0c46eeb1b58f8d5453442969492a..4f3fb2b4ee5e07dfbef3c8cebc53f0573138074b 100644 (file)
@@ -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 %>
index 469ff7945fc2d3dc7372a5f0e6cf2ddb054da928..0d6e11898054002fdf4cfa13cde8f705e0aab651 100644 (file)
@@ -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">
index 2823229f20b15d34869a5955bb76a551294f9722..dc5516182002fa00960a3f5c097404d204830f94 100644 (file)
@@ -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; }