This commit is contained in:
2026-05-29 12:24:29 +02:00
parent 697d62f89b
commit 86085c435a
2 changed files with 2 additions and 1 deletions

View File

@@ -4883,6 +4883,7 @@ span#tags .tags-inner>span {
display: inline-block; display: inline-block;
margin-top: 2.5px; margin-top: 2.5px;
margin-bottom: 2.5px; margin-bottom: 2.5px;
margin-right: 0.5rem;
} }
span#tags:not(.tags-expanded) .tags-inner>span:nth-child(n+11) { span#tags:not(.tags-expanded) .tags-inner>span:nth-child(n+11) {

View File

@@ -143,7 +143,7 @@
<span class="tags-inner"> <span class="tags-inner">
@if(typeof item.tags !== "undefined") @if(typeof item.tags !== "undefined")
@each(item.tags as tag) @each(item.tags as tag)
<span tooltip="{!! tag.display_name || tag.user !!}" class="badge {{ tag.badge }} mr-2"> <span tooltip="{!! tag.display_name || tag.user !!}" class="badge {{ tag.badge }}">
<a href="/tag/{{ tag.normalized }}">{!! tag.tag !!}</a>@if(is_mod_or_admin)&nbsp;<a class="removetag" href="#"><i class="fa-solid fa-xmark"></i></a>@endif <a href="/tag/{{ tag.normalized }}">{!! tag.tag !!}</a>@if(is_mod_or_admin)&nbsp;<a class="removetag" href="#"><i class="fa-solid fa-xmark"></i></a>@endif
</span> </span>
@endeach @endeach