cosmetic change to /holes

master
Aevann1 2022-08-19 23:49:23 +02:00
parent 9d79c10966
commit 4774931b78
3 changed files with 9 additions and 9 deletions

View File

@ -6241,8 +6241,4 @@ g {
.desktop-expanded-image-modal::-webkit-scrollbar { .desktop-expanded-image-modal::-webkit-scrollbar {
-ms-overflow-style: none; -ms-overflow-style: none;
scrollbar-width: none; scrollbar-width: none;
}
.text-stealth {
color: #a4f5f3 !important;
} }

View File

@ -17,10 +17,14 @@
</thead> </thead>
{% for sub, count in subs %} {% for sub, count in subs %}
<tr> {% if sub.name in v.all_blocks %}
<td {% if sub.stealth %}class="text-stealth"{% endif %}>{{loop.index}}</td> {% set blocked = True %}
<td><a href="/h/{{sub.name}}" {% if sub.stealth %}class="text-stealth"{% endif %}>{{sub.name}}</a></td> {% endif %}
<td><a href="/h/{{sub.name}}" {% if sub.stealth %}class="text-stealth"{% endif %}>{{count}}</a></td>
<tr {% if blocked %}data-bs-toggle="tooltip" data-bs-placement="bottom" title="Hidden from main feed"{% endif %}>
<td {% if blocked %}class="text-danger"{% endif %}>{{loop.index}}</td>
<td><a href="/h/{{sub.name}}" {% if blocked %}class="text-danger"{% endif %}>{{sub.name}}</a></td>
<td><a href="/h/{{sub.name}}" {% if blocked %}class="text-danger"{% endif %}>{{count}}</a></td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>

View File

@ -1,6 +1,6 @@
{%- {%-
set CACHE_VER = { set CACHE_VER = {
'css/main.css': 466, 'css/main.css': 467,
'css/catalog.css': 2, 'css/catalog.css': 2,
'css/4chan.css': 61, 'css/4chan.css': 61,