summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2021-04-07 05:54:24 +0000
committerGo MAEDA <maeda@farend.jp>2021-04-07 05:54:24 +0000
commite7137af44318d0abec6d106b068fbe577dadfecb (patch)
tree191f0a314e18ca16ba8856c8ae6421827329680c
parent38c29d8956627fddec8f65cdb10c100b11cdcf14 (diff)
downloadredmine-e7137af44318d0abec6d106b068fbe577dadfecb.tar.gz
redmine-e7137af44318d0abec6d106b068fbe577dadfecb.zip
Merged r20919 from trunk to 4.1-stable (#35034).
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@20926 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/workflows/_form.html.erb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb
index 429ccb4e6..d565a02a2 100644
--- a/app/views/workflows/_form.html.erb
+++ b/app/views/workflows/_form.html.erb
@@ -4,7 +4,7 @@
<th>
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled)')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
- :class => 'icon-only icon-checked') %>
+ :class => 'no-tooltip icon-only icon-checked') %>
<%=l(:label_current_status)%>
</th>
<th colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th>
@@ -15,7 +15,7 @@
<td style="width:<%= 75 / @statuses.size %>%;">
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).new-status-#{new_status.id}')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
- :class => 'icon-only icon-checked') %>
+ :class => 'no-tooltip icon-only icon-checked') %>
<%= new_status.name %>
</td>
<% end %>
@@ -29,7 +29,7 @@
<td class="name">
<%= link_to_function('', "toggleCheckboxesBySelector('table.transitions-#{name} input[type=checkbox]:not(:disabled).old-status-#{old_status.try(:id) || 0}')",
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}",
- :class => 'icon-only icon-checked') %>
+ :class => 'no-tooltip icon-only icon-checked') %>
<% if old_status %>
<% old_status_name = old_status.name %>
<%= old_status_name %>