aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-11-03 10:45:53 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-11-03 10:45:53 +0000
commit1c83344e651d1b69b4e44f5e4dac5f3fa0a7f414 (patch)
tree4ade6bdb2fcb7aede97c079e16893f672080aaf4
parent24f87c82aa75bca9f0e9e42a15794398edf6087e (diff)
downloadsonarqube-1c83344e651d1b69b4e44f5e4dac5f3fa0a7f414.tar.gz
sonarqube-1c83344e651d1b69b4e44f5e4dac5f3fa0a7f414.zip
SONAR-1643 configure widgets: fix display of the section "new widgets"
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb2
-rw-r--r--sonar-server/src/main/webapp/stylesheets/dashboard.css4
2 files changed, 4 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb
index 6562f2a5cc1..656b86a4429 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb
@@ -31,7 +31,7 @@
<div id="dashboard">
<%= render :partial => 'dashboard/header', :locals => {:back => true} %>
- <div id="widget_defs" class="marginbottom10">
+ <div id="widget_defs">
<table width="100%">
<% @widget_definitions.each_with_index do |definition, index| %>
<% if index%4==0 %><tr><% end %>
diff --git a/sonar-server/src/main/webapp/stylesheets/dashboard.css b/sonar-server/src/main/webapp/stylesheets/dashboard.css
index 98a73b8e7ff..0be73d2e8a5 100644
--- a/sonar-server/src/main/webapp/stylesheets/dashboard.css
+++ b/sonar-server/src/main/webapp/stylesheets/dashboard.css
@@ -49,12 +49,14 @@
/*CONFIGURATION*/
#dashboard #widget_defs {
- width: 100%;
height: 130px;
overflow-y: auto;
background-color: #FFF6BF;
border: 2px solid #FFD324;
padding: 3px;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ margin: 5px 0 10px 0;
}
#dashboard #widget_defs td {