}
}
- .note-comments li, .changeset-comments li {
- margin: $lineheight/2 0;
-
- p {
- margin: 10px 6px 0 6px;
- line-height: 1.5;
- }
- }
-
.subscribe-buttons input {
font-size: 90%;
line-height: 15px;
— <span class="action-button" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_hide_url(comment.id) %>"><%= t("javascripts.changesets.show.hide_comment") %></span>
<% end %>
</small>
- <%= comment.body.to_html %>
+ <div class="mx-2">
+ <%= comment.body.to_html %>
+ </div>
</li>
<% elsif current_user and current_user.moderator? %>
<li id="c<%= comment.id %>">
:user => link_to(comment.author.display_name, user_path(comment.author))) %>
— <span class="action-button text-muted" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_unhide_url(comment.id) %>"><%= t("javascripts.changesets.show.unhide_comment") %></span>
</small>
- <%= comment.body.to_html %>
+ <div class="mx-2">
+ <%= comment.body.to_html %>
+ </div>
</li>
<% end %>
<% end %>
<% @note_comments.drop(1).each do |comment| %>
<li id="c<%= comment.id %>">
<small class='text-muted'><%= note_event(comment.event, comment.created_at, comment.author) %></small>
- <%= comment.body.to_html %>
+ <div class="mx-2">
+ <%= comment.body.to_html %>
+ </div>
</li>
<% end %>
</ul>