From d37c31ed364089626ce34c68016f4890b11d70e7 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 14 Aug 2026 13:40:22 -0700 Subject: [PATCH] Maybe fix the android keyboard CF dropdown weird thing --- .../custom-fields-dropdown.component.html | 2 +- .../custom-fields-dropdown.component.scss | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html index 79b93ee31..5601be888 100644 --- a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html +++ b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -1,4 +1,4 @@ -
+
diff --git a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.scss b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.scss index 302dbfe77..f5f8fc681 100644 --- a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.scss +++ b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.scss @@ -6,5 +6,16 @@ &.show { margin-left: -245px !important; } + + .list-group { + max-height: min(50dvh, 20rem); + overflow-y: auto; + } + + .list-group-item:first-child { + position: sticky; + top: 0; + z-index: 1; + } } }