diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-14 13:48:38 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-14 13:48:38 +0100 |
commit | e4c62f879d962f8ba6c559507b0be5db1efa4e6d (patch) | |
tree | 2eee31b474f98394cefd91c29d93d873964ded24 /sonar-server | |
parent | 8e4e3dde3c7940698f2f9afca217d8a456706297 (diff) | |
download | sonarqube-e4c62f879d962f8ba6c559507b0be5db1efa4e6d.tar.gz sonarqube-e4c62f879d962f8ba6c559507b0be5db1efa4e6d.zip |
Little css improvement of test file name
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/test/_testable.html.erb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/test/_testable.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/test/_testable.html.erb index 7add202731f..e6d51a4088d 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/test/_testable.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/test/_testable.html.erb @@ -6,10 +6,12 @@ </div> <div class="accordion-item-body"> <% @test_case_by_test_plan.sort_by { |test_plan, test_cases| test_plan.component.longName }.each do |test_plan, test_cases| %> - <% resource_key = test_plan.component.key %> - <a href="<%= ApplicationController.root_context -%>/resource/index/<%= resource_key -%>?display_title=true&tab=source" - onclick="openAccordionItem(this.href, this); return false;"><%= test_plan.component.longName %> - </a> + <div class="source_title"> + <% resource_key = test_plan.component.key %> + <a href="<%= ApplicationController.root_context -%>/resource/index/<%= resource_key -%>?display_title=true&tab=source" + onclick="openAccordionItem(this.href, this); return false;"><%= test_plan.component.longName %> + </a> + </div> <table class="data marginbottom10"> <tbody> <% reset_cycle %> |