diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-05-30 11:14:42 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-05-30 11:14:55 +0200 |
commit | d1bbb29335cc0020adab25cd3bb7c590bc6c6de6 (patch) | |
tree | f03e05246a2b1f1927e5fbc6dd542ea98da475ea /sonar-server | |
parent | 7652deb6f19e3bc4ed062a34f3a04b47cd89fbfe (diff) | |
download | sonarqube-d1bbb29335cc0020adab25cd3bb7c590bc6c6de6.tar.gz sonarqube-d1bbb29335cc0020adab25cd3bb7c590bc6c6de6.zip |
Increase width of period dropdown in dashboard and drilldown
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_header.html.erb | 2 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_header.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_header.html.erb index 949a7af315e..d9f6ee8c617 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_header.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_header.html.erb @@ -21,7 +21,7 @@ <form method="GET" action="<%= url_for :controller => :dashboard, :action => :index, :id => @resource.id -%>" style="display: inline" class="spacer-left"> <input type="hidden" name="did" value="<%= @dashboard.id -%>"/> <%= dropdown_tag "period", period_select_option_tags(@snapshot, 'small'), { - :width => '200px', + :width => '230px', }, {:id => 'select-comparison', :onchange => 'submit()'} -%> </form> <% end %> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb index aa7881ed58c..7a4751f9447 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb @@ -11,7 +11,7 @@ <% if @snapshot.project_snapshot.periods? %> <form method="GET" action="<%= url_for :only_path=>true, :overwrite_params => {:period => nil} -%>" style="display: inline" class="spacer-left"> <%= dropdown_tag "period", period_select_option_tags(@snapshot, 'small'), { - :width => '200px', + :width => '230px', }, {:id => 'select-comparison', :onchange => 'submit()'} -%> </form> <% end %> |