]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3755 improve CSS of issue detail
authorSimon Brandhof <simon.brandhof@gmail.com>
Wed, 5 Jun 2013 07:28:51 +0000 (09:28 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Wed, 5 Jun 2013 07:29:00 +0000 (09:29 +0200)
sonar-server/src/main/webapp/WEB-INF/app/views/issue/_issue.html.erb
sonar-server/src/main/webapp/stylesheets/style.css

index 16a648dfd86bf5a8cb5387cb21876bb6da26735c..ed5e3842a368245fdd08f91286352a7600931f12 100644 (file)
@@ -6,25 +6,25 @@
 
     <img src="<%= ApplicationController.root_context -%>/images/priority/<%= issue.severity -%>.png" title="<%= h message("severity.#{issue.severity}") -%>">
     &nbsp;
-    <a href="#" onclick="return toggleIssueRule(this)" class="rulename"><%= h Internal.rules.ruleL10nName(@issue_results.rule(issue)) -%></a>
+    <a href="#" onclick="return toggleIssueRule(this)" class="rulename"><%= h Internal.rules.ruleL10nName(@issue_results.rule(issue)) -%></a><%= image_tag 'bullet_arrow_down.gif' %>
     &nbsp;
     <% if issue.resolution %>
-      <%= image_tag 'sep12.png' -%>
+      <img src="<%= ApplicationController.root_context -%>/images/sep12.png"/>
       &nbsp;
       <span><%= message("issue.resolution.#{issue.resolution}") -%></span>
       &nbsp;
     <% else %>
-      <%= image_tag 'sep12.png' -%>
+      <img src="<%= ApplicationController.root_context -%>/images/sep12.png"/>
       &nbsp;
       <span><%= message("issue.status.#{issue.status}") -%></span>
       &nbsp;
     <% end %>
-    <%= image_tag 'sep12.png' -%>
+    <img src="<%= ApplicationController.root_context -%>/images/sep12.png"/>
     &nbsp;
-    <a href="#" onclick="return toggleIssueChangelog(this)" class="gray"><%= distance_of_time_in_words_to_now(Api::Utils.java_to_ruby_datetime(issue.creationDate())) -%></a>
+    <a href="#" onclick="return toggleIssueChangelog(this)" class="gray"><%= distance_of_time_in_words_to_now(Api::Utils.java_to_ruby_datetime(issue.creationDate())) -%></a><%= image_tag 'bullet_arrow_down.gif' %>
     &nbsp;
     <% if issue.reporter %>
-      <%= image_tag 'sep12.png' -%>
+      <img src="<%= ApplicationController.root_context -%>/images/sep12.png"/>
       &nbsp;
       <span><%= message('issue.reported_by') -%> <%= @issue_results.user(issue.reporter).name -%></span>
       &nbsp;
@@ -65,7 +65,7 @@
     <div class="code-issue-actions">
       <a href='#' onclick="return issueForm('comment', this)" class="link-action spacer-right"><%= message('issue.comment.formlink') -%></a>
       <% unless issue.resolution %>
-        <%= image_tag 'sep12.png' -%>
+        <img src="<%= ApplicationController.root_context -%>/images/sep12.png"/>
         &nbsp;
         <span class="spacer-right">
         <% if issue.assignee %>
@@ -80,7 +80,7 @@
       <% end %>
 
       <% unless issue.resolution %>
-        <%= image_tag 'sep12.png' -%>
+        <img src="<%= ApplicationController.root_context -%>/images/sep12.png"/>
         &nbsp;
         <span class="spacer-right">
           <% if issue.actionPlanKey %>
@@ -98,7 +98,7 @@
          if !transitions.empty? && transitions.first
            transition = transitions.first
       %>
-        <%= image_tag 'sep12.png' -%>
+        <img src="<%= ApplicationController.root_context -%>/images/sep12.png"/>
         &nbsp;
         <a href="#" onclick="return doIssueTransition(this, '<%= transition.key -%>')" class="link-action spacer-right"><%= message("issue.transition.#{transition.key}") -%></a>
       <% end %>
   <% elsif issue.assignee || issue.actionPlanKey %>
     <div class="code-issue-actions">
       <% if issue.assignee %>
-        <%= message('assigned_to') -%> <%= h @issue_results.user(issue.assignee).name -%>
+        <span class="gray"><%= message('assigned_to') -%> <%= h @issue_results.user(issue.assignee).name -%></span>
         &nbsp;
       <% end %>
       <% if issue.actionPlanKey %>
-        <%= message('issue.planned_for') -%> <%= h(@issue_results.actionPlan(issue).name()) -%>
+        <% if issue.assignee %><img src="<%= ApplicationController.root_context -%>/images/sep12.png"/>&nbsp;<% end %>
+        <span class="gray"><%= message('issue.planned_for') -%> <%= h(@issue_results.actionPlan(issue).name()) -%></span>
       <% end %>
     </div>
   <% end %>
index c415f6504d3a23b5294a38b758689729f78165cc..656e14bfaef92bb183342e44fb6b509b51a31943 100644 (file)
@@ -2105,9 +2105,7 @@ table.nowrap td, td.nowrap, th.nowrap {
 .dropdown-menu {
   background-clip: padding-box;
   background-color: #FFFFFF;
-  border-color: #DDD;
-  border-style: solid;
-  border-width: 1px;
+  border: 1px solid #DDD;
   box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
   float: left;
   margin: 0;
@@ -2143,6 +2141,7 @@ table.nowrap td, td.nowrap, th.nowrap {
 
 .dropdown-menu a {
   text-decoration: none !important;
+  color: #333 !important;
 }
 
 .form-key-cell {