diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2012-03-27 15:40:24 +0200 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2012-03-27 16:04:32 +0200 |
commit | 3a4246ab08dc99138f112ebd1769ee8a7935be9a (patch) | |
tree | 14e66e2ed88a12180faf97f81c572afbe0866f12 /sonar-server | |
parent | acabdefea734226650719e267477bb467e248452 (diff) | |
download | sonarqube-3a4246ab08dc99138f112ebd1769ee8a7935be9a.tar.gz sonarqube-3a4246ab08dc99138f112ebd1769ee8a7935be9a.zip |
SONAR-3114 Refactor the "Dependencies" tab (GWT -> Ruby)
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/style.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 0d9411a9198..c81fdaa3543 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -2493,4 +2493,27 @@ select.medium-width { background-repeat: no-repeat; margin-right: 8px; padding-right: 8px; +} + +/* Dependencies */ +#dependencies { + padding: 10px; +} + +#dependencies .coltitle { + background-color: #efefef; + 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 .col td, #dependencies .col th { + padding: 3px 5px; }
\ No newline at end of file |