Relocate the progress bar to the footer

This commit is contained in:
Thorsten Sommer 2025-02-09 12:34:39 +01:00
parent 0e390f0783
commit 676597e0c0
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -41,12 +41,12 @@
}
<TextInfoLine Icon="@Icons.Material.Filled.SquareFoot" Label="Total directory size" Value="@this.directorySizeBytes.FileSize()" ClipboardTooltipSubject="the total directory size"/>
@if (this.IsOperationInProgress)
{
<MudProgressLinear Color="Color.Primary" Indeterminate="true" Class="mt-3 mb-3" />
}
</DialogContent>
<DialogActions>
@if (this.IsOperationInProgress)
{
<MudProgressLinear Color="Color.Primary" Indeterminate="true" Class="ml-5 mr-5"/>
}
<MudButton OnClick="@this.Close" Variant="Variant.Filled">Close</MudButton>
</DialogActions>
</MudDialog>