aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-11-09 10:36:39 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-11-09 10:36:39 +0000
commit063bf16933206d505910e0c65d2571a73eaba1a5 (patch)
treeaa3d44e18777665548125090a4d0806b8f01a5b7 /plugins
parent1f6a37e1505d46a55052c44309a10c776106739a (diff)
downloadsonarqube-063bf16933206d505910e0c65d2571a73eaba1a5.tar.gz
sonarqube-063bf16933206d505910e0c65d2571a73eaba1a5.zip
fix rendering issue of the rules widget on Google Chrome/Safari
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/rules.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/rules.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/rules.html.erb
index 84b09712b35..ed5aa6e43da 100644
--- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/rules.html.erb
+++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/rules.html.erb
@@ -56,6 +56,7 @@
<div class="big">
<%= format_measure(Metric::VIOLATIONS, :url => url_for(:controller => 'drilldown', :action => 'violations', :id => @project.key)) -%> <%= tendency_icon(Metric::VIOLATIONS) -%>
</div>
+ </div>
<%
blocker_violations = @snapshot.measure(Metric::BLOCKER_VIOLATIONS)
critical_violations = @snapshot.measure(Metric::CRITICAL_VIOLATIONS)
@@ -67,7 +68,7 @@
max = m.value if m and m.value and m.value>max
end
%>
- <table>
+ <table class="clear width100">
<tr>
<td><%= image_tag 'priority/BLOCKER.png'%></td>
<td> &nbsp;<%= link_to 'Blocker', {:controller => 'drilldown', :action => 'violations', :id => @project.key, :priority => 'BLOCKER'} %></td>
@@ -124,7 +125,6 @@
</td>
</tr>
</table>
- </div>
</td>
</tr>
</table>