remotes/1693045480750635534/spooky-22
kek7198 2021-12-24 12:58:49 -06:00
parent 8b176dd8d4
commit 288399f39b
2 changed files with 10 additions and 1 deletions

View File

@ -2284,6 +2284,10 @@ video {
--tw-text-opacity: 1;
color: rgba(var(--color-700), var(--tw-text-opacity));
}
.text-green-700 {
--tw-text-opacity: 1;
color: rgba(21, 128, 61, var(--tw-text-opacity));
}
.text-red-600 {
--tw-text-opacity: 1;
color: rgba(220, 38, 38, var(--tw-text-opacity));
@ -3531,6 +3535,11 @@ video {
color: rgba(var(--color-400), var(--tw-text-opacity));
}
.dark .dark\:text-green-400 {
--tw-text-opacity: 1;
color: rgba(74, 222, 128, var(--tw-text-opacity));
}
.dark .dark\:text-gray-200 {
--tw-text-opacity: 1;
color: rgba(var(--color-200), var(--tw-text-opacity));

View File

@ -170,7 +170,7 @@
</div>
{% endif %}
<div id="comment-{{c.id}}" class="comment anchor {% if c.unread %}bg-primary/20{% endif %} relative flex mt-4 md:mt-6 {% if standalone and level==1 %} mt-0{% endif %}{% if c.collapse_for_user(v) or (standalone and c.over_18 and not (v and v.over_18)) %} collapsed items-center opacity-50 md:hover:opacity-100{% endif %} {% if c.sentto != None and level==1 %}p-2.5 bg-gray-300 dark:border-gray-700 shadow-inner rounded {% if c.author.username == v.author.username %}text-gray-700{% endif %}{% endif %}">
<div id="comment-{{c.id}}" class="comment anchor {% if c.unread %}bg-primary/20{% endif %} relative flex mt-4 md:mt-6 {% if standalone and level==1 %} mt-0{% endif %}{% if c.collapse_for_user(v) or (standalone and c.over_18 and not (v and v.over_18)) %} collapsed items-center opacity-50 md:hover:opacity-100{% endif %} {% if c.sentto != None and level==1 %}p-2.5 bg-gray-300 dark:border-gray-700 shadow-inner rounded {% if c.author.username == v.author.username %}text-green-700 dark:text-green-400{% endif %}{% endif %}">
{% if c.collapse_for_user(v) or (standalone and c.over_18 and not (v and v.over_18)) %}
<div id="comment-collapse-{{c.id}}" class="z-20 absolute w-full h-full bottom-0 left-0 right-0 top-0 cursor-pointer" onclick="collapse_comment('{{c.id}}')"></div>