diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-02-17 15:39:08 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-02-17 15:39:08 +0100 |
commit | 068c6a92d557dd16f220fc0ce7e85d8ce93f323b (patch) | |
tree | 7f9778e8ffa3d40ab333582cb3dc336f8a2da9fa | |
parent | 0e905ca6a5ac1b9ff1ffda8dc17cf00d92b9cf60 (diff) | |
download | sonarqube-068c6a92d557dd16f220fc0ce7e85d8ce93f323b.tar.gz sonarqube-068c6a92d557dd16f220fc0ce7e85d8ce93f323b.zip |
Improve spacing in the violations drilldown page
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb index a380b3b83ee..3cab320c054 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb @@ -22,9 +22,9 @@ </h4> </div> -<table width="100%" cellpadding="0" cellspacing="0" id="columns"> +<table class="width100 spacer-bottom" cellpadding="0" cellspacing="0" id="columns"> <tr> - <td align="left" width="1%" nowrap class="column first"> + <td align="left" width="1%" nowrap class="spacer-right" valign="top"> <% value_column = (@period ? "variation_value_#{@period}" : 'value') @@ -57,7 +57,7 @@ <%= render :partial => 'severity', :locals => {:css => 'even', :severity => 'INFO', :max => max, :measure => info_violations} %> </table> </td> - <td class="column" align="left" style="white-space: normal;"> + <td align="left" style="white-space: normal;" valign="top"> <h3><%= message('violations_drilldown.col.rule') -%></h3> <div class="scrollable"> @@ -115,7 +115,6 @@ </td> </tr> </table> -<br/> <% paths=[] rids=[] |