fix
This commit is contained in:
parent
b4be0d9b16
commit
f61e9130e9
2 changed files with 6 additions and 15 deletions
9
files/static/dist/main.css
vendored
9
files/static/dist/main.css
vendored
|
@ -3308,15 +3308,6 @@ video {
|
||||||
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
|
--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 {
|
.dark .dark\:text-gray-400 {
|
||||||
--tw-text-opacity: 1;
|
--tw-text-opacity: 1;
|
||||||
color: rgba(var(--color-400), var(--tw-text-opacity));
|
color: rgba(var(--color-400), var(--tw-text-opacity));
|
||||||
|
|
|
@ -495,34 +495,34 @@
|
||||||
</span>
|
</span>
|
||||||
<!-- Entire thread link -->
|
<!-- Entire thread link -->
|
||||||
{% if linked_comment and p.comment_count >= 2%}
|
{% 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
|
View entire thread
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<ul class="flex space-x-3 text-sm text-gray-500 leading-normal mb-0">
|
<ul class="flex space-x-3 text-sm text-gray-500 leading-normal mb-0">
|
||||||
<li>
|
<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
|
Top
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<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
|
Latest
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<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
|
Oldest
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<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
|
Controversial
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<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
|
Worst
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue