Fixed a MudBlazor bug, where dropdown menus were not displayed correctly when used inside a dialog

This commit is contained in:
Thorsten Sommer 2025-03-15 11:07:15 +01:00
parent 686bb2ccb3
commit ed4f9505a2
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 10 additions and 0 deletions

View File

@ -76,6 +76,14 @@
display: initial !important;
}
/* Fix for MudBlazor, tooltips and selects inside of popover
See issue https://github.com/MudBlazor/MudBlazor/issues/11015
and https://github.com/MindWorkAI/AI-Studio/issues/346
*/
.mud-popover-provider > .mud-popover-open {
z-index: 1604;
}
/* Context div for inner scrolling component */
.inner-scrolling-context {
display: flex;

View File

@ -0,0 +1,2 @@
# v0.9.36, build 211 (2025-03-15 xx:xx UTC)
- Fixed a MudBlazor bug, where dropdown menus were not displayed correctly when used inside a dialog.