loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix overflow on issue dependency (#30484)

Small tweak here to prevent this and likely other events from
overflowing in the timeline:

<img width="895" alt="Screenshot 2024-04-14 at 22 53 17"
src="https://github.com/go-gitea/gitea/assets/115237/001b4f6b-f649-44ff-b2f0-c8e0dedeb384">

Co-authored-by: Giteabot <teabot@gitea.io>
(cherry picked from commit 1508a85f6235814271ea927d651bcbcd8c9f5f18)

authored by

silverwind
Giteabot
and committed by
Gergely Nagy
579ca341 d99d2e3e

+6
+6
web_src/css/repo.css
··· 1079 1079 margin-left: 15px; 1080 1080 } 1081 1081 1082 + .repository.view.issue .comment-list .event .detail .text { 1083 + overflow: hidden; 1084 + white-space: nowrap; 1085 + text-overflow: ellipsis; 1086 + } 1087 + 1082 1088 .repository.view.issue .comment-list .event .segments { 1083 1089 box-shadow: none; 1084 1090 }