summaryrefslogtreecommitdiffstats
path: root/app/views/versions
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-11-11 21:01:21 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-11-11 21:01:21 +0000
commit967564cba0bdc7b75ecd3bd44a2a4ae1c7d82c64 (patch)
tree91ffba7b7f5b51365e0b20ccb555c41404337c9f /app/views/versions
parent05690057590a2a8d7fe82a1d5df4412ddf879829 (diff)
downloadredmine-967564cba0bdc7b75ecd3bd44a2a4ae1c7d82c64.tar.gz
redmine-967564cba0bdc7b75ecd3bd44a2a4ae1c7d82c64.zip
Removed deprecated align and width html attributes (#15307).
git-svn-id: http://svn.redmine.org/redmine/trunk@12268 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r--app/views/versions/_issue_counts.html.erb4
-rw-r--r--app/views/versions/index.html.erb2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/views/versions/_issue_counts.html.erb b/app/views/versions/_issue_counts.html.erb
index 002be4938..951cc0186 100644
--- a/app/views/versions/_issue_counts.html.erb
+++ b/app/views/versions/_issue_counts.html.erb
@@ -13,14 +13,14 @@
<table>
<% counts.each do |count| %>
<tr>
- <td width="130px" align="right" >
+ <td style="width:130px; text-align:right;">
<% if count[:group] -%>
<%= link_to(h(count[:group]), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %>
<% else -%>
<%= link_to(l(:label_none), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => "!*")) %>
<% end %>
</td>
- <td width="240px">
+ <td style="width:240px;">
<%= progress_bar((count[:closed].to_f / count[:total])*100,
:legend => "#{count[:closed]}/#{count[:total]}",
:width => "#{(count[:total].to_f / max * 200).floor}px;") %>
diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb
index b78005a9b..85442bd76 100644
--- a/app/views/versions/index.html.erb
+++ b/app/views/versions/index.html.erb
@@ -21,7 +21,7 @@
<% issues.each do |issue| -%>
<tr class="hascontextmenu">
<td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td>
- <td><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
+ <td class="subject"><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
</tr>
<% end -%>
</table>