diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-06 17:58:44 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-06 17:59:16 +0100 |
commit | 36c0a80a00a6811c7d9d1c4f41e8540f7b978417 (patch) | |
tree | e4d5e868bc128dfd134ea6e061da24dd7330d4e7 /sonar-server | |
parent | 756291ed151f183abea106da0af516da64bb881f (diff) | |
download | sonarqube-36c0a80a00a6811c7d9d1c4f41e8540f7b978417.tar.gz sonarqube-36c0a80a00a6811c7d9d1c4f41e8540f7b978417.zip |
SONAR-2501 improve CSS
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/images/gray-stripes.png | bin | 0 -> 100 bytes | |||
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/style.css | 20 |
2 files changed, 11 insertions, 9 deletions
diff --git a/sonar-server/src/main/webapp/images/gray-stripes.png b/sonar-server/src/main/webapp/images/gray-stripes.png Binary files differnew file mode 100644 index 00000000000..033269f3aa6 --- /dev/null +++ b/sonar-server/src/main/webapp/images/gray-stripes.png diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 43b13c91790..57a78228244 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -619,7 +619,6 @@ ul.operations li img { /* SOURCE */ .sources2 { width: 100%; - border-top: 1px solid #DDD; border-bottom: 1px solid #DDD; margin: 0; background-color: #FFF; @@ -798,9 +797,11 @@ span.rulename a:hover { } .sources2 td.new_section { - border-top: 1px solid #DDD; - border-bottom: 1px solid #DDD; + border-width: 1px; + border-style: solid; + border-color: #EEE #DDD; height: 40px; + background: url('../images/gray-stripes.png'); } .sources2 td.violations { @@ -841,11 +842,12 @@ span.rulename a:hover { } .tab_header { - border: 1px solid #DDD; - border-top-width: 0; + border-color: #DDD; + border-style: solid; + border-width: 1px; + border-top: none; background-color: #EFEFEF; padding: 5px 10px; - margin-bottom: 10px; color: #444; } @@ -2412,8 +2414,7 @@ textarea.width100 { } .accordion-item { - margin-top: 10px; - border: 1px solid #DDDDDD; + margin-bottom: 20px; } .accordion-item-small { @@ -2423,6 +2424,7 @@ textarea.width100 { .accordion-item-medium { height: 200px; - overflow: scroll; + overflow: auto; + border-bottom: 1px solid #DDD; } |