From ec21d492a46c4f6264d4d217857da2a13adf1188 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 2 Aug 2026 14:57:57 +0200 Subject: [PATCH] Fixed the visual briefing build stepper to hide its unnecessary actions --- .../VisualBriefing/VisualBriefingBuildProgress.razor | 5 ++++- app/MindWork AI Studio/wwwroot/app.css | 7 +++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Assistants/VisualBriefing/VisualBriefingBuildProgress.razor b/app/MindWork AI Studio/Assistants/VisualBriefing/VisualBriefingBuildProgress.razor index 35c1ede3..e70133b9 100644 --- a/app/MindWork AI Studio/Assistants/VisualBriefing/VisualBriefingBuildProgress.razor +++ b/app/MindWork AI Studio/Assistants/VisualBriefing/VisualBriefingBuildProgress.razor @@ -1,6 +1,6 @@ @inherits MSGComponentBase - + } + @* The build runs on its own. Overriding the actions with empty content keeps MudBlazor from + rendering its Previous, Next, Skip, and Complete buttons, which have nothing to do here. *@ + \ No newline at end of file diff --git a/app/MindWork AI Studio/wwwroot/app.css b/app/MindWork AI Studio/wwwroot/app.css index 0677571a..b32f9146 100644 --- a/app/MindWork AI Studio/wwwroot/app.css +++ b/app/MindWork AI Studio/wwwroot/app.css @@ -103,6 +103,13 @@ display: initial !important; } +/* The visual briefing build stepper only reports progress, so its actions are overridden with empty + content. MudBlazor still renders the surrounding action bar, which would leave an empty padded row. + Scoped on purpose: the Assistant Builder uses an interactive stepper that needs its buttons. */ +.visual-briefing-build-progress .mud-stepper-actions { + display: none; +} + /* Context div for inner scrolling component */ .inner-scrolling-context { display: flex;