From 1751771a42ed446de3db6ccab069ad3a17aa7246 Mon Sep 17 00:00:00 2001 From: Fabio Date: Wed, 12 Nov 2025 15:05:36 -0400 Subject: [PATCH 1/2] FOUR-27641: CSS: The data from the select list is being displayed with a space on the left side. --- resources/sass/tailwind.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/resources/sass/tailwind.css b/resources/sass/tailwind.css index 9d9a8280d9..1d7409c5d8 100644 --- a/resources/sass/tailwind.css +++ b/resources/sass/tailwind.css @@ -16,18 +16,18 @@ /* Ordered and unordered lists are unstyled by default, with no bullets/numbers and no margin or padding. */ - ol, - ul { - list-style: none; - margin: 0; - padding: 0; + .form-group ol, + .form-group ul { + list-style: revert-layer !important; + margin: 0 !important; + padding: revert-layer !important; } } /* Reset the list style for the vue-form-renderer and screen-container */ - #screen-container ul, - #vue-form-renderer ul { - list-style: revert; - margin: revert; - padding: revert; + .multiselect__content-wrapper ul, + .multiselect__content-wrapper ol { + list-style: revert-layer; + margin: revert-layer; + padding: 0px; } From 2f7e132641ca0ae991b43a36d5f73165fb5d3b34 Mon Sep 17 00:00:00 2001 From: Fabio Date: Thu, 13 Nov 2025 11:51:32 -0400 Subject: [PATCH 2/2] corrections --- resources/sass/tailwind.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/sass/tailwind.css b/resources/sass/tailwind.css index 1d7409c5d8..3e411c6e2c 100644 --- a/resources/sass/tailwind.css +++ b/resources/sass/tailwind.css @@ -18,9 +18,9 @@ with no bullets/numbers and no margin or padding. */ .form-group ol, .form-group ul { - list-style: revert-layer !important; - margin: 0 !important; - padding: revert-layer !important; + list-style: revert-layer; + margin: 0; + padding: revert-layer; } }