master
kek7198 2021-12-20 16:42:49 -06:00
parent 0aadd68914
commit ec5c425059
2 changed files with 6 additions and 15 deletions

View File

@ -3308,15 +3308,6 @@ video {
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}
.dark .dark\:from-gray-800 {
--tw-gradient-from: rgb(var(--color-800));
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(var(--color-800), 0));
}
.dark .dark\:to-gray-700 {
--tw-gradient-to: rgb(var(--color-700));
}
.dark .dark\:text-gray-400 {
--tw-text-opacity: 1;
color: rgba(var(--color-400), var(--tw-text-opacity));

View File

@ -495,34 +495,34 @@
</span>
<!-- Entire thread link -->
{% if linked_comment and p.comment_count >= 2%}
<a href="{% if v %}{{ p.permalink }}{% else %}/logged_out/{{p.permalink}}{% endif %}" class="pl-2 text-red-600 hover:text-red-700">
<a href="{% if v %}{{ p.permalink }}{% else %}/logged_out/{{p.permalink}}{% endif %}" class="pl-2 text-primary hover:text-red-700">
View entire thread
</a>
{% endif %}
</div>
<ul class="flex space-x-3 text-sm text-gray-500 leading-normal mb-0">
<li>
<a href="?sort=top" class="{{ 'font-bold text-red-600' if sort == 'top' else 'text-gray-500 hover:text-gray-700'}}">
<a href="?sort=top" class="{{ 'font-bold text-primary' if sort == 'top' else 'text-gray-500 hover:text-gray-700'}}">
Top
</a>
</li>
<li>
<a href="?sort=new" class="{{ 'font-bold text-red-600' if sort == 'new' else 'text-gray-500 hover:text-gray-700'}}">
<a href="?sort=new" class="{{ 'font-bold text-primary' if sort == 'new' else 'text-gray-500 hover:text-gray-700'}}">
Latest
</a>
</li>
<li>
<a href="?sort=old" class="{{ 'font-bold text-red-600' if sort == 'old' else 'text-gray-500 hover:text-gray-700'}}">
<a href="?sort=old" class="{{ 'font-bold text-primary' if sort == 'old' else 'text-gray-500 hover:text-gray-700'}}">
Oldest
</a>
</li>
<li>
<a href="?sort=controversial" class="{{ 'font-bold text-red-600' if sort == 'controversial' else 'text-gray-500 hover:text-gray-700'}}">
<a href="?sort=controversial" class="{{ 'font-bold text-primary' if sort == 'controversial' else 'text-gray-500 hover:text-gray-700'}}">
Controversial
</a>
</li>
<li>
<a href="?sort=bottom" class="{{ 'font-bold text-red-600' if sort == 'bottom' else 'text-gray-500 hover:text-gray-700'}}">
<a href="?sort=bottom" class="{{ 'font-bold text-primary' if sort == 'bottom' else 'text-gray-500 hover:text-gray-700'}}">
Worst
</a>
</li>