]> source.dussan.org Git - redmine.git/commitdiff
Mark private notes more clearly (#16240).
authorJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>
Tue, 9 Sep 2014 03:53:25 +0000 (03:53 +0000)
committerJean-Baptiste Barth <jeanbaptiste.barth@gmail.com>
Tue, 9 Sep 2014 03:53:25 +0000 (03:53 +0000)
Contributed by Jan Schulz-Hofen.

git-svn-id: http://svn.redmine.org/redmine/trunk@13367 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_history.html.erb
public/stylesheets/application.css

index 94d98ccc7deb737fb13fe6b03fb4ac8b82bf4f17..3747e8d5f5585b238760edbe48eeb3f0bec58caa 100644 (file)
@@ -4,7 +4,8 @@
     <div id="note-<%= journal.indice %>">
     <h4><%= link_to "##{journal.indice}", {:anchor => "note-#{journal.indice}"}, :class => "journal-link" %>
     <%= avatar(journal.user, :size => "24") %>
-    <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4>
+    <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %>
+    <%= content_tag('span', l(:field_is_private), :class => 'private') if journal.private_notes? %></h4>
 
     <% if journal.details.any? %>
     <ul class="details">
index 2c6b62c25557e95c6f23c0acb7c043912ca47110..852e908d3ba0f7a5aaca1ca9cd903fd922cb72d8 100644 (file)
@@ -334,7 +334,7 @@ div.issue div.subject div div { padding-left: 16px; }
 div.issue div.subject p {margin: 0; margin-bottom: 0.1em; font-size: 90%; color: #999;}
 div.issue div.subject>div>p { margin-top: 0.5em; }
 div.issue div.subject h3 {margin: 0; margin-bottom: 0.1em;}
-div.issue span.private { position:relative; bottom: 2px; text-transform: uppercase; background: #d22; color: #fff; font-weight:bold; padding: 0px 2px 0px 2px; font-size: 60%; margin-right: 2px; border-radius: 2px;}
+div.issue span.private, div.journal span.private { position:relative; bottom: 2px; text-transform: uppercase; background: #d22; color: #fff; font-weight:bold; padding: 0px 2px 0px 2px; font-size: 60%; margin-right: 2px; border-radius: 2px;}
 div.issue .next-prev-links {color:#999;}
 div.issue table.attributes th {width:22%;}
 div.issue table.attributes td {width:28%;}