From 4e62e5c4c5294c53e84d800109479c21c862c407 Mon Sep 17 00:00:00 2001 From: Paulo Reis Date: Mon, 24 Oct 2016 17:08:46 +0100 Subject: [PATCH] Prevent overflowing project names. --- services/web/public/stylesheets/app/project-list.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/web/public/stylesheets/app/project-list.less b/services/web/public/stylesheets/app/project-list.less index 8e5da6cb3d..de3307a017 100644 --- a/services/web/public/stylesheets/app/project-list.less +++ b/services/web/public/stylesheets/app/project-list.less @@ -200,6 +200,10 @@ ul.structured-list { .select-item + span, .select-all + span { display: inline-block; padding-left: @line-height-computed * 1.5; + max-width: 100%; + overflow: hidden; + text-overflow: ellipsis; + vertical-align: top; } } }