diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-26 15:39:20 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-26 15:39:32 +0100 |
commit | b71ab81e064d952eb398700dba3dbe6ee8261afd (patch) | |
tree | 2cab5880a4b951ac852cfafe63a50207dc4e1607 /sonar-server | |
parent | 11f06ab655815716b44c1f5331ded12d623eb886 (diff) | |
download | sonarqube-b71ab81e064d952eb398700dba3dbe6ee8261afd.tar.gz sonarqube-b71ab81e064d952eb398700dba3dbe6ee8261afd.zip |
Fix issue on Google Chrome where horizontal scroll appear on resource viewer
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/style.css | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 7c98aacdfec..f5e4278b756 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -404,11 +404,6 @@ h1 img, .h1 img, h2 img, .h2 img, h3 img, .h3 img, h4 img, .h4 img { color: #fff; } -table.data { - /* Fix an issue on Google Chrome to prevent the horizontal scroll to appear */ - border-collapse : separate; -} - table.data > thead > tr > th { font-size: 93%; padding: 4px 7px 4px 3px; @@ -2388,9 +2383,12 @@ textarea.width100 { margin-bottom: 20px; } +.accordion-item table.data { + /* Fix an issue on Google Chrome to prevent the horizontal scroll to appear */ + border-collapse : separate; +} + .accordion-item-body-medium { max-height: 200px; overflow: auto; } - - |