summaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2013-04-22 16:32:29 +0200
committerJulien HENRY <julien.henry@sonarsource.com>2013-04-22 16:32:29 +0200
commit58ed387f4c43371d2866dc1ac7bd391fea3dd8b4 (patch)
treeb96cf9f05afcf69b6de9c10f509362e0490bdf26 /sonar-server
parentd4b011b397433b1201dfd10297a888fcb5abf8b5 (diff)
downloadsonarqube-58ed387f4c43371d2866dc1ac7bd391fea3dd8b4.tar.gz
sonarqube-58ed387f4c43371d2866dc1ac7bd391fea3dd8b4.zip
SONAR-3159 Minor UI improvement
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb8
-rw-r--r--sonar-server/src/main/webapp/stylesheets/style.css4
2 files changed, 8 insertions, 4 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb
index 6533ce4ee6b..030141eec70 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb
@@ -9,12 +9,12 @@
<table class="data marginbottom10">
<thead>
- <tr>
- <th><%= h category_name(@category) -%><% if @subcategory != 'default' %> - <%= h subcategory_name(@category, @subcategory) -%><% end -%></th>
- </tr>
+ <tr>
+ <th><%= h category_name(@category) -%><% if @subcategory != 'default' %> - <%= h subcategory_name(@category, @subcategory) -%><% end -%></th>
+ </tr>
<% unless @subcategory != 'default' || category_desc(@category).blank? -%>
<tr>
- <td><%= category_desc(@category) -%> </td>
+ <td class="categoryDescription"><%= category_desc(@category) -%> </td>
</tr>
<% end -%>
<% unless @subcategory == 'default' || subcategory_desc(@category, @subcategory).blank? -%>
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css
index 8e32124fee5..d974c51814b 100644
--- a/sonar-server/src/main/webapp/stylesheets/style.css
+++ b/sonar-server/src/main/webapp/stylesheets/style.css
@@ -479,6 +479,10 @@ table.data th img, table.data td img {
padding-right: 15px;
}
+.data td.categoryDescription {
+ padding-bottom: 5px;
+}
+
.data td.category.withSubcategories {
background-image: url('../images/bullet_arrow_down.gif');
background-position: right center;