Feature: Forum Tab-Pills — Marquee-Scroll bei Hover für abgeschnittenen Text, SW by-v595

This commit is contained in:
rene 2026-05-02 08:35:49 +02:00
parent 7474e10031
commit d1572c52bc
4 changed files with 32 additions and 4 deletions

View file

@ -4179,6 +4179,19 @@ html.modal-open {
text-overflow: ellipsis;
max-width: 10rem; /* prevents single pill from being wider than ~160px on mobile */
}
.by-tab-text {
display: inline-block;
white-space: nowrap;
transition: transform 0.3s ease;
}
.by-tab-text.scrolling {
animation: forum-tab-scroll 1.8s ease-in-out 0.3s infinite alternate;
transition: none;
}
@keyframes forum-tab-scroll {
from { transform: translateX(0); }
to { transform: translateX(var(--tab-scroll-px, 0)); }
}
/* Category badge (colored pill) */
.forum-category-badge {