From 90c5c2e2893f5e6081ec71978a71420503f977f5 Mon Sep 17 00:00:00 2001 From: Anwar khanfir Date: Fri, 17 May 2024 16:48:27 +0100 Subject: [PATCH] fix: App center - Application description exceeds border - EXO-71810 - Meeds-io/meeds#2003. Before this change, when, create new application in app center admin, new application description is long and display application center, new app created description exceeds the card limit. After this change, App center description is truncated and app card is remained as the other default ones. --- app-center-webapps/src/main/webapp/skin/less/app-center.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-center-webapps/src/main/webapp/skin/less/app-center.less b/app-center-webapps/src/main/webapp/skin/less/app-center.less index 877697b96..15e6f4bab 100644 --- a/app-center-webapps/src/main/webapp/skin/less/app-center.less +++ b/app-center-webapps/src/main/webapp/skin/less/app-center.less @@ -474,7 +474,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. overflow: hidden; text-overflow: ellipsis; display: -webkit-box; - -webkit-line-clamp: 3; /* number of lines to show */ + -webkit-line-clamp: 2; /* number of lines to show */ -webkit-box-orient: vertical; } }