diff options
author | David Gageot <david@gageot.net> | 2012-05-10 18:00:31 +0200 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2012-05-10 18:00:31 +0200 |
commit | d0ac203f2ea044d394f2d10ec75488fecc26c224 (patch) | |
tree | 54f439967b18da432fd8aeea11981f2941d020c0 | |
parent | 24f8134b3936de8a8a9e9e186ec698610ba4e948 (diff) | |
download | sonarqube-d0ac203f2ea044d394f2d10ec75488fecc26c224.tar.gz sonarqube-d0ac203f2ea044d394f2d10ec75488fecc26c224.zip |
A widget should scroll its content if too large
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/dashboard.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/dashboard.css b/sonar-server/src/main/webapp/stylesheets/dashboard.css index b66fea15d97..55657aa36f4 100644 --- a/sonar-server/src/main/webapp/stylesheets/dashboard.css +++ b/sonar-server/src/main/webapp/stylesheets/dashboard.css @@ -17,7 +17,7 @@ /* WIDGETS */ #dashboard .widget { position: relative; - overflow-x: hidden; + overflow-x: auto; padding: 10px; margin: 0; border: 1px solid #ddd; |