From 972ab0df503e2e5fae87078061bc89563fa04b24 Mon Sep 17 00:00:00 2001 From: Charlie Murray Date: Tue, 15 Sep 2015 20:13:46 +0100 Subject: [PATCH] Truncate text inside a box-content-row div rather than flowing out of the box --- src/main/webapp/assets/common/css/gitbucket.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/webapp/assets/common/css/gitbucket.css b/src/main/webapp/assets/common/css/gitbucket.css index 82e7aec0c..d69f86d8f 100644 --- a/src/main/webapp/assets/common/css/gitbucket.css +++ b/src/main/webapp/assets/common/css/gitbucket.css @@ -295,6 +295,9 @@ div > div.box-content-row:nth-of-type(1) { div.box-content-row { border-top: 1px solid #d8d8d8; padding: 4px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } div.box-content-bottom {