Skip to content

Commit

Permalink
Fix overflow on issue dependency (go-gitea#30484)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
silverwind and GiteaBot authored Apr 15, 2024
1 parent 994920c commit 1508a85
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions web_src/css/repo.css
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,12 @@ td .commit-summary {
margin-left: 15px;
}

.repository.view.issue .comment-list .event .detail .text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.repository.view.issue .comment-list .event .segments {
box-shadow: none;
}
Expand Down

0 comments on commit 1508a85

Please sign in to comment.