diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-11-11 10:18:13 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-11-11 10:18:13 +0000 |
commit | f21d3428c6481701a934b1317c41bc90e3b8cbf2 (patch) | |
tree | 4f865e57c8daaf38044d7d6cd7594387e0bd8385 /sonar-server | |
parent | f3ef250e6ea496678438a360b6e85126d36c82a7 (diff) | |
download | sonarqube-f21d3428c6481701a934b1317c41bc90e3b8cbf2.tar.gz sonarqube-f21d3428c6481701a934b1317c41bc90e3b8cbf2.zip |
fix measures drilldown in IE6
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb index 791774725b7..4ecb2881b59 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb @@ -1,5 +1,6 @@ <%= render :partial => 'gwt/base', :locals => {:resource => @highlighted_resource, :popup => false, :metric => @metric.key} %> <%= render :partial => 'gwt/resource_viewers', :locals => {:resource => @drilldown.highlighted_resource || @project} %> + <div class="dashbox"> <% if @characteristic %> <h3><%= @highlighted_metric.short_name -%> / <%= h(@characteristic.name(true)) -%></h3> @@ -9,8 +10,9 @@ <p class="big"><%= html_measure(@snapshot.measure(@highlighted_metric.key), nil, true, nil, '', false) %></p> <% end %> </div> + <!-- keep for IE6 ! --> <div class="clear"> </div> -<table width="100%" id="drilldown"> +<table id="drilldown" class="width100"> <% if @highlighted_metric!=@metric %> <tr> <td colspan="<%= @drilldown.columns.size -%>">Drilldown on <b><span id="m_<%= u @metric.key -%>"><%= @snapshot.f_measure(@metric.key) -%><span> <%= @metric.short_name -%></b></h3></td> |