diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-04-18 12:40:38 +0600 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-04-18 13:23:34 +0200 |
commit | eebc6d31b2750c1aae890e716c2c37854543980f (patch) | |
tree | 0402dc9ecbadff9d88ddf95ba0a11c0e39c36330 /plugins | |
parent | f9378c8ee70ab28362251407f34456d8bbf845c0 (diff) | |
download | sonarqube-eebc6d31b2750c1aae890e716c2c37854543980f.tar.gz sonarqube-eebc6d31b2750c1aae890e716c2c37854543980f.zip |
SONAR-3113 Add space after widget title
Diffstat (limited to 'plugins')
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measures/measure_filter_cloud.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measures/measure_filter_cloud.html.erb index 4fa9da38b9b..7d967faf8ec 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measures/measure_filter_cloud.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/measures/measure_filter_cloud.html.erb @@ -13,7 +13,7 @@ <!--[if (gte IE 9)|!(IE)]><!--> <% if chartTitle %> - <h3><%= h(chartTitle) -%></h3> + <h3 style="margin-bottom: 5px;"><%= h(chartTitle) -%></h3> <% end %> <!--<![endif]--> </div> diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/project_file_cloud.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/project_file_cloud.html.erb index 5d8d44b8f12..8cb1c029938 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/project_file_cloud.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/project_file_cloud.html.erb @@ -11,7 +11,7 @@ <!--[if (gte IE 9)|!(IE)]><!--> <% if chartTitle %> - <h3><%= h(chartTitle) -%></h3> + <h3 style="margin-bottom: 5px;"><%= h(chartTitle) -%></h3> <% end %> <!--<![endif]--> </div> |