diff options
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb | 2 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/dashboard.css | 4 |
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 { |