]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3972 Improve rendering and clean CSS files
authorFabrice Bellingard <fabrice.bellingard@sonarsource.com>
Tue, 4 Dec 2012 13:48:30 +0000 (14:48 +0100)
committerFabrice Bellingard <fabrice.bellingard@sonarsource.com>
Tue, 4 Dec 2012 14:35:03 +0000 (15:35 +0100)
sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_menu_projects.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/resource/index.html.erb
sonar-server/src/main/webapp/stylesheets/layout.css

index b83744ef8e007e11446eddda0839da3fcc7dade2..efc3e43f07a63e0bc3cde6b3c174cff0e2e27722 100644 (file)
@@ -4,12 +4,6 @@
   }
 </script>
 
-  <style>
-    #recent-history-list imgs {
-      float: left;
-    }
-  </style>
-
 <li>
   <a href="#" onclick="if (sonarRecentHistory) { sonarRecentHistory.populateRecentHistoryPanel(); }; $j('#projects-menu').toggle(); return false;" class="link-more"><%= message('layout.projects') -%></a>
   
@@ -20,7 +14,7 @@
       </ul>
     </div>
     
-    <div>
+    <div style="border-top: 1px solid #ccc; margin-top: 10px;">
       <ul>
         <li><a href="<%= ApplicationController.root_context -%>/">Projects</a></li>
         <li><a href="<%= ApplicationController.root_context -%>/">Views</a></li>
@@ -36,7 +30,7 @@
     $j('#recent-history').detach();
   } else {
     sonarRecentHistory.add('<%= @resource ? @resource.key : "" -%>', 
-                           '<%= @resource ? @resource.name(true) : "" -%>', 
+                           '<%= @resource ? @resource.name : "" -%>', 
                            '<%= @resource ? Api::Utils.java_facade.getResourceType(@resource.qualifier).getIconPath() : "" -%>');
   }
 </script>
\ No newline at end of file
index 2b87edeb525507f69cbb1756e24a00a5aec3d38d..0765a7da521b0c6b485dd5a4857215a4a961951f 100644 (file)
@@ -1,7 +1,7 @@
 <script>
   if (sonarRecentHistory != null) {
     sonarRecentHistory.add('<%= @resource.key -%>', 
-                           '<%= @resource.name(true) -%>', 
+                           '<%= @resource.name -%>', 
                            '<%= @resource ? Java::OrgSonarServerUi::JRubyFacade.getInstance().getResourceType(@resource.qualifier).getIconPath() : "" -%>');
   }  
 </script>
index 3a40e0977b164c311943c4642e04934a241bfbcc..d7181a6ea2190e9efb58d5d030796fc031ef1d79 100644 (file)
@@ -169,11 +169,6 @@ body, a {
   right: 20px;
 }
 
-#recent-history {
-  border-bottom: 1px solid #ccc;
-  padding-bottom: 10px;
-}
-
 #nonav {
   text-align: left;
   margin: 50px 180px 0;