add drop shadow to bottom panel

This commit is contained in:
Matt Parker
2025-08-10 01:59:27 +10:00
parent 180673e871
commit af86305c5e

View File

@@ -57,7 +57,7 @@
</MudStack> </MudStack>
</MudPaper> </MudPaper>
<div> <div>
<MudPaper Height="@MainContentHeight" Style="overflow:hidden; position:relative;"> <MudPaper Elevation="0" Height="@MainContentHeight" Style="overflow:hidden; position:relative;">
<MudDrawerContainer Style="height: 100%" Class="mud-height-full"> <MudDrawerContainer Style="height: 100%" Class="mud-height-full">
<MudDrawer @bind-Open="@_drawerOpen" Style="height: 100%" Width="400px" Fixed="false" Variant="@DrawerVariant.Persistent"> <MudDrawer @bind-Open="@_drawerOpen" Style="height: 100%" Width="400px" Fixed="false" Variant="@DrawerVariant.Persistent">
@if (_solutionFilePath is not null) @if (_solutionFilePath is not null)
@@ -75,14 +75,14 @@
</div> </div>
</MudDrawerContainer> </MudDrawerContainer>
</MudPaper> </MudPaper>
<div style="height: 30%"> <div class="mud-elevation-24" style="height: 30%; position:relative">
@if (_solutionFilePath is not null) @if (_solutionFilePath is not null)
{ {
<DisplayNoneComponent Visible="@(_selectedBottomPanel is BottomPanelType.Run)"> <DisplayNoneComponent Visible="@(_selectedBottomPanel is BottomPanelType.Run)">
<RunPanel SolutionModel="@_solutionModel" /> <RunPanel SolutionModel="@_solutionModel"/>
</DisplayNoneComponent> </DisplayNoneComponent>
<DisplayNoneComponent Visible="@(_selectedBottomPanel is BottomPanelType.Build)"> <DisplayNoneComponent Visible="@(_selectedBottomPanel is BottomPanelType.Build)">
<TerminalOutputDisplay /> <TerminalOutputDisplay/>
</DisplayNoneComponent> </DisplayNoneComponent>
} }
</div> </div>