From 6b9bfc4ee6c4b94890d83e7edc4a2862171a20a5 Mon Sep 17 00:00:00 2001 From: jasquat Date: Thu, 21 Dec 2023 09:33:03 -0500 Subject: [PATCH] do not restrict li tags within the process model search combobox the same way we do other items --- spiffworkflow-frontend/src/components/ProcessModelSearch.tsx | 1 + spiffworkflow-frontend/src/index.css | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/spiffworkflow-frontend/src/components/ProcessModelSearch.tsx b/spiffworkflow-frontend/src/components/ProcessModelSearch.tsx index b19b1cb67..312ef885a 100644 --- a/spiffworkflow-frontend/src/components/ProcessModelSearch.tsx +++ b/spiffworkflow-frontend/src/components/ProcessModelSearch.tsx @@ -79,6 +79,7 @@ export default function ProcessModelSearch({ placeholder="Choose a process model" titleText={titleText} selectedItem={selectedItem} + className="process-model-search-combobox" /> ); } diff --git a/spiffworkflow-frontend/src/index.css b/spiffworkflow-frontend/src/index.css index c026019c1..0cc41756b 100644 --- a/spiffworkflow-frontend/src/index.css +++ b/spiffworkflow-frontend/src/index.css @@ -804,6 +804,10 @@ li.cds--accordion__item { max-width: 100%; } +.process-model-search-combobox li{ + max-width: 100%; +} + div.markdown { padding: 15px 0 15px 0; overflow: visible;