diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2012-03-29 13:57:38 +0200 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2012-03-29 13:57:38 +0200 |
commit | 04fcfdfb35f849fa8e8bd39a8e6b4faf55424e1e (patch) | |
tree | 4467c2401be16ba107a5f376a113ccd8571a97e5 /sonar-server | |
parent | f7a3046a0d84e501fdfdd031bcdde7653bca6658 (diff) | |
download | sonarqube-04fcfdfb35f849fa8e8bd39a8e6b4faf55424e1e.tar.gz sonarqube-04fcfdfb35f849fa8e8bd39a8e6b4faf55424e1e.zip |
SONAR-3114 Fix layout positionning on Chrome
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/style.css | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index de521779d26..91b76e0748e 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -2501,20 +2501,27 @@ select.medium-width { padding: 10px; } +#dependencies .col { + float: left; + margin: 0 10px 0 0; + border: 1px solid #ccc; +} + #dependencies .coltitle { + padding: 3px 10px; + text-align: center; background-color: #efefef; +} + +#dependencies .colbody { padding: 3px; border-top: 1px solid #ccc; - border-bottom: 1px solid #ccc; } -#dependencies .col { - margin: 0 10px 0 0; - border-right: 1px solid #ccc; - border-left: 1px solid #ccc; - border-bottom: 1px solid #ccc; +#dependencies .colbody > div { + padding: 3px; } -#dependencies .col td, #dependencies .col th { - padding: 3px 5px; -}
\ No newline at end of file +#dependencies .colbody > div > img { + //vertical-align: baseline; +} |