From 3d68b24f3caed5a9be21db2e0696d1baa3e32df9 Mon Sep 17 00:00:00 2001 From: Anwar khanfir Date: Tue, 5 Nov 2024 09:40:05 +0100 Subject: [PATCH] fix: [Porcess app in sapce] layout issue - EXO-75153. Before this change, when add new item in spaceX called Process in Process then add new page having process application and save, a big white bloc is displayed and process elements are displayed below. To resolve this problem, add a min-height: auto style for the application-body class. After this change, Process application is displayed with no additional white blocks. --- processes-webapp/src/main/webapp/skin/less/processes.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/processes-webapp/src/main/webapp/skin/less/processes.less b/processes-webapp/src/main/webapp/skin/less/processes.less index 8a9070f1d..690f576b7 100644 --- a/processes-webapp/src/main/webapp/skin/less/processes.less +++ b/processes-webapp/src/main/webapp/skin/less/processes.less @@ -5,6 +5,10 @@ overflow-x: hidden; + .application-body { + min-height: auto !important; + } + .cursor-default { cursor: default; }