From 6b64ca683643c8e36638ca91640566cd3424c1f5 Mon Sep 17 00:00:00 2001 From: Anwar khanfir <93767376+akhanfir@users.noreply.github.com> Date: Fri, 17 May 2024 16:57:08 +0100 Subject: [PATCH] fix: App center - Application description exceeds border - EXO-71810 - Meeds-io/meeds#2003. (#315) 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. (cherry picked from commit 6aea123ad58c410c72d7e96bed244bd021521e02) --- 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 f98d56715..22d4f20bf 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; } }