From 27c60bb6f5f84f34d6d0684fe0c9c4f2dc913d96 Mon Sep 17 00:00:00 2001 From: Darko Gjorgjijoski Date: Tue, 7 Apr 2026 11:50:10 +0200 Subject: [PATCH] Allow modal dropdowns and tooltips to overflow their panel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch the BaseModal panel container from overflow-hidden to overflow-visible so multiselect dropdowns, autocompletes and tooltips can render outside the modal bounds. Same fix as the settings layout panel earlier — Headless UI's dialog still clips at the viewport, and the modal panel keeps its rounded-xl corners through its own bg-surface background, so removing the clip exposes no square-corner regression on existing modals. --- resources/scripts-v2/components/base/BaseModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/scripts-v2/components/base/BaseModal.vue b/resources/scripts-v2/components/base/BaseModal.vue index a8c4d1cb..799c2b87 100644 --- a/resources/scripts-v2/components/base/BaseModal.vue +++ b/resources/scripts-v2/components/base/BaseModal.vue @@ -54,7 +54,7 @@ bg-surface/95 backdrop-blur-xl backdrop-saturate-150 rounded-xl border border-line-default text-left - overflow-hidden + overflow-visible relative shadow-2xl transition-all