forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-09 18:25:02 -06:00
parent 7d5ac5014c
commit 4114a24287
1 changed files with 3 additions and 3 deletions

View File

@ -385,10 +385,10 @@
{% endif %} {% endif %}
{% if c.is_banned and c.ban_reason %} {% if c.is_banned and c.ban_reason %}
<div id="comment-banned-warning" class="comment-text text-red-600 mb-0">Removed by @{{c.ban_reason}}</div> <div id="comment-banned-warning" class="hidden-on-collapse text-red-600 mb-0">Removed by @{{c.ban_reason}}</div>
{% endif %} {% endif %}
<div id="comment-text-{{c.id}}" class="comment-text text-black mb-0 {% if c.award_count("candycane") %}candycane{% endif %} {% if c.award_count("snow") %}snow{% endif %}"> <div id="comment-text-{{c.id}}" class="hidden-on-collapse text-black mb-0 {% if c.award_count("candycane") %}candycane{% endif %} {% if c.award_count("snow") %}snow{% endif %}">
{{c.realbody(v) | safe}} {{c.realbody(v) | safe}}
{% if c.options %} {% if c.options %}
{% for o in c.options %} {% for o in c.options %}
@ -604,7 +604,7 @@
font-size: 11.5px; font-size: 11.5px;
} }
.comment.collapsed :not(.user-info) { .comment.collapsed .hidden-on-collapse {
display: hidden; display: hidden;
} }
</style> </style>