aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-07-19 19:55:37 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2013-07-19 19:55:37 +0200
commitf64a52e613f70631dbce722190d73a083f8e7e68 (patch)
tree667e637c0cf013e0afecc8b37353e8a78b8267f6
parent926c6975a285e666db4d15c8d0c68ec335d9b188 (diff)
downloadsonarqube-f64a52e613f70631dbce722190d73a083f8e7e68.tar.gz
sonarqube-f64a52e613f70631dbce722190d73a083f8e7e68.zip
SONAR-4351 Centralize the management of licenses in the Global Settings
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb2
-rw-r--r--sonar-server/src/main/webapp/stylesheets/style.css12
2 files changed, 8 insertions, 6 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 ce676b40dd5..da8ca003b74 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
@@ -76,7 +76,7 @@
</tbody>
</table>
<% unless @definitions.empty? %>
- <div style="padding-left: 16px;">
+ <div style="padding-left: 5px;">
<%= hidden_field_tag('page_version', (params[:page_version] || 0).to_i + 1) -%>
<%= submit_tag(message('settings.save_category', :params => [subcategory_name(@category, @subcategory)]), :id => 'submit_settings') -%>
<img src="<%= ApplicationController.root_context -%>/images/loading.gif" id="loading_settings" style="display:none;">
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css
index 754769fb276..05011a72407 100644
--- a/sonar-server/src/main/webapp/stylesheets/style.css
+++ b/sonar-server/src/main/webapp/stylesheets/style.css
@@ -480,8 +480,8 @@ table.data th img, table.data td img {
padding-right: 15px;
}
-.data td.categoryDescription {
- padding-bottom: 5px;
+.categoryDescription {
+ padding: 10px 5px;
}
.data td.category.withSubcategories {
@@ -827,18 +827,20 @@ ul.operations li img {
}
.code-global-issues {
- padding: 10px;
+ padding: 10px 10px 0;
}
.code-issues {
background-color: #FFF;
- padding: 10px;
+ padding: 10px 10px 0;
+ line-height: 0;
}
.code-issue {
background-color: #FFF;
margin: 0;
font-size: 12px;
+ padding: 0 0 10px 0;
}
.code-issue-name {
@@ -2441,4 +2443,4 @@ textarea.width100 {
display: inline-block;
line-height: 16px;
padding: 4px 2px;
-} \ No newline at end of file
+}