aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2011-06-20 10:25:14 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2011-06-20 12:08:47 +0200
commit13a0ff98e2108fe6c8fe482114df4619834c347e (patch)
tree2532e8b46c0ac1107bf67395e92ef376265bc211 /sonar-server
parentbf4635f2145ce38ee3a198c4fb5ea9438793647c (diff)
downloadsonarqube-13a0ff98e2108fe6c8fe482114df4619834c347e.tar.gz
sonarqube-13a0ff98e2108fe6c8fe482114df4619834c347e.zip
SONAR-1922 improve size of HTML columns
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/profiles/changelog.html.erb12
1 files changed, 6 insertions, 6 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/changelog.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/changelog.html.erb
index 049de5a9a8d..f6f2038a346 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/changelog.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/changelog.html.erb
@@ -6,7 +6,7 @@
No changes has been done on this quality profile.
<% else %>
- <% form_tag({:action => 'changelog'}, {:method => 'post'}) do %>
+ <% form_tag({:action => 'changelog'}, {:method => 'post', :class => 'marginbottom10'}) do %>
<%= hidden_field_tag "id", @profile.id %>
Changelog from
<%= select_tag "since", options_for_select(@select_versions, @since_version) %>
@@ -15,7 +15,7 @@
<%= submit_tag "Load", :id => 'submit'%>
<% end %>
- <table class="data width100" style="word-wrap:break-word; table-layout: fixed;">
+ <table class="data width100">
<thead>
<tr>
<th>Profile version</th>
@@ -30,10 +30,10 @@
@changes.each do |change|
%>
<tr class="<%= cycle('even', 'odd') -%>">
- <td valign="top"><%= change.profile_version - 1 %> -> <%= change.profile_version %></td>
- <td valign="top"><%= l(change.change_date) -%></td>
- <td valign="top"><%= change.user_name %></td>
- <td valign="top"><%= change.action_text %></td>
+ <td valign="top" width="1%" nowrap><%= change.profile_version - 1 %> -> <%= change.profile_version %></td>
+ <td valign="top" width="1%" nowrap><%= l(change.change_date) -%></td>
+ <td valign="top" width="1%" nowrap><%= change.user_name %></td>
+ <td valign="top" width="1%" nowrap><%= change.action_text %></td>
<td valign="top"><%= change.rule.name %></td>
<td valign="top">
<% if change.old_severity