aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/css/repo.css
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-04-15 10:49:48 +0200
committerGitHub <noreply@github.com>2024-04-15 10:49:48 +0200
commit1508a85f6235814271ea927d651bcbcd8c9f5f18 (patch)
tree9976ad12c72bd405f9de729b5066c9c516112fd8 /web_src/css/repo.css
parent994920c677b04a720726d982e4d6212664b82a43 (diff)
downloadgitea-1508a85f6235814271ea927d651bcbcd8c9f5f18.tar.gz
gitea-1508a85f6235814271ea927d651bcbcd8c9f5f18.zip
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>
Diffstat (limited to 'web_src/css/repo.css')
-rw-r--r--web_src/css/repo.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css
index 887789115e..0f6bf482b5 100644
--- a/web_src/css/repo.css
+++ b/web_src/css/repo.css
@@ -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;
}