##// END OF EJS Templates
Removed hard-coded styles....
Jean-Philippe Lang -
r8511:0bbbaa0dbd5f
parent child
Show More
@@ -14,16 +14,16
14
14
15 <div id="version-summary">
15 <div id="version-summary">
16 <% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
16 <% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
17 <fieldset><legend><%= l(:label_time_tracking) %></legend>
17 <fieldset class="time-tracking"><legend><%= l(:label_time_tracking) %></legend>
18 <table>
18 <table>
19 <tr>
19 <tr>
20 <td width="130px" align="right"><%= l(:field_estimated_hours) %></td>
20 <th><%= l(:field_estimated_hours) %></th>
21 <td width="240px" class="total-hours" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
21 <td class="total-hours"><%= html_hours(l_hours(@version.estimated_hours)) %></td>
22 </tr>
22 </tr>
23 <% if User.current.allowed_to?(:view_time_entries, @project) %>
23 <% if User.current.allowed_to?(:view_time_entries, @project) %>
24 <tr>
24 <tr>
25 <td width="130px" align="right"><%= l(:label_spent_time) %></td>
25 <th><%= l(:label_spent_time) %></th>
26 <td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
26 <td class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td>
27 </tr>
27 </tr>
28 <% end %>
28 <% end %>
29 </table>
29 </table>
@@ -356,11 +356,12 div#roadmap .related-issues td.checkbox { display: none; }
356 div#roadmap .wiki h1:first-child { display: none; }
356 div#roadmap .wiki h1:first-child { display: none; }
357 div#roadmap .wiki h1 { font-size: 120%; }
357 div#roadmap .wiki h1 { font-size: 120%; }
358 div#roadmap .wiki h2 { font-size: 110%; }
358 div#roadmap .wiki h2 { font-size: 110%; }
359 body.controller-versions.action-show div#roadmap .related-issues {width:auto;}
359 body.controller-versions.action-show div#roadmap .related-issues {width:70%;}
360
360
361 div#version-summary { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
361 div#version-summary { float:right; width:28%; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
362 div#version-summary fieldset { margin-bottom: 1em; }
362 div#version-summary fieldset { margin-bottom: 1em; }
363 div#version-summary .total-hours { text-align: right; }
363 div#version-summary fieldset.time-tracking table { width:100%; }
364 div#version-summary th, div#version-summary td.total-hours { text-align: right; }
364
365
365 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
366 table#time-report td.hours, table#time-report th.period, table#time-report th.total { text-align: right; padding-right: 0.5em; }
366 table#time-report tbody tr.subtotal { font-style: italic; color:#777;}
367 table#time-report tbody tr.subtotal { font-style: italic; color:#777;}
General Comments 0
You need to be logged in to leave comments. Login now