From 29b6db7ee93f0f70fa45ea3675b61e713f2d0e94 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Mon, 24 Nov 2025 15:39:44 +0100 Subject: [PATCH] Update dropdown positioning in FormattedDropdown component for improved visibility - Changed the dropdown list positioning from normal document flow to absolute positioning, ensuring the list is reliably visible when opened. --- frontend/src/components/form/FormattedDropdown.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/form/FormattedDropdown.vue b/frontend/src/components/form/FormattedDropdown.vue index b7261f2..4dfe9f3 100644 --- a/frontend/src/components/form/FormattedDropdown.vue +++ b/frontend/src/components/form/FormattedDropdown.vue @@ -99,9 +99,9 @@ export default { } .dropdown-list { - /* Statt absolut positioniert (wurde durch übergeordnete Container mit - overflow:hidden abgeschnitten) jetzt im normalen Dokumentfluss, damit - die Liste zuverlässig sichtbar ist, sobald isOpen=true. */ + position: absolute; + top: 100%; + left: 0; background: white; border: 1px solid #ccc; border-radius: 4px;