summaryrefslogtreecommitdiffstats
path: root/app/views/versions/show.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/versions/show.html.erb')
-rw-r--r--app/views/versions/show.html.erb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/versions/show.html.erb b/app/views/versions/show.html.erb
index f23d83f1c..07ae0b1cc 100644
--- a/app/views/versions/show.html.erb
+++ b/app/views/versions/show.html.erb
@@ -14,16 +14,16 @@
<div id="version-summary">
<% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
-<fieldset><legend><%= l(:label_time_tracking) %></legend>
+<fieldset class="time-tracking"><legend><%= l(:label_time_tracking) %></legend>
<table>
<tr>
- <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
- <td width="240px" class="total-hours" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
+ <th><%= l(:field_estimated_hours) %></th>
+ <td class="total-hours"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
</tr>
<% if User.current.allowed_to?(:view_time_entries, @project) %>
<tr>
- <td width="130px" align="right"><%= l(:label_spent_time) %></td>
- <td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
+ <th><%= l(:label_spent_time) %></th>
+ <td class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
</tr>
<% end %>
</table>