* Remove `list-style-type: none` rules (this is the default). * Add `list-bulleted` and `list-inline` utility classes. * Wrap terms of service and user deletion pages in dtext `.prose` class so we don't have to redefine basic list styles on these pages.
16 lines
440 B
Plaintext
16 lines
440 B
Plaintext
<ul class="post-appeal-reasons list-bulleted">
|
|
<% appeals.each do |appeal| %>
|
|
<li class="post-appeal-reason">
|
|
<span class="prose"><%= format_text(appeal.reason, inline: true) %></span>
|
|
|
|
- <%= link_to_user(appeal.creator) %>
|
|
|
|
<% if CurrentUser.is_moderator? %>
|
|
(<%= link_to_ip(appeal.creator_ip_addr) %>)
|
|
<% end %>
|
|
|
|
- <%= time_ago_in_words_tagged(appeal.created_at) %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|