Factor out duplicated p.info CSS.

`p.info` is used to render "Updated by so-and-so 5 minutes ago" messages as fine print.
This commit is contained in:
evazion
2017-12-15 11:14:12 -06:00
parent 4c39783d28
commit 03cecf097e
5 changed files with 7 additions and 25 deletions

View File

@@ -48,7 +48,7 @@
<% @change_request.feedback.each do |feedback| %>
<li class="feedback-category-<%= feedback.category %>">
<p><%= feedback.body %></p>
<p class="author">Submitted by <%= link_to_user feedback.creator.name %> <%= time_ago_in_words_tagged feedback.created_at %></p>
<p class="info">Submitted by <%= link_to_user feedback.creator.name %> <%= time_ago_in_words_tagged feedback.created_at %></p>
</li>
<% end %>
</ul>