From e538203f4caca393a53b4c13c4cd63a88ebdeff0 Mon Sep 17 00:00:00 2001 From: maliming <6908465+maliming@users.noreply.github.com> Date: Thu, 29 May 2025 16:20:37 +0800 Subject: [PATCH] Add workaround for Blazorise picker positioning issue --- .../wwwroot/volo.abp.blazoriseui.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.BlazoriseUI/wwwroot/volo.abp.blazoriseui.css b/framework/src/Volo.Abp.BlazoriseUI/wwwroot/volo.abp.blazoriseui.css index f42b6735bd..8299895e1e 100644 --- a/framework/src/Volo.Abp.BlazoriseUI/wwwroot/volo.abp.blazoriseui.css +++ b/framework/src/Volo.Abp.BlazoriseUI/wwwroot/volo.abp.blazoriseui.css @@ -61,4 +61,11 @@ .table-responsive .dropdown-menu-position-strategy-fixed { position: fixed !important; -} \ No newline at end of file +} + +/* + blazorise picker workaround for https://github.com/Megabit/Blazorise/issues/4917 +*/ +.card .flatpickr-calendar.static { + top: unset !important; +}