Formatting

This commit is contained in:
Thorsten Sommer 2025-05-30 17:09:32 +02:00
parent 393dd7ec6a
commit d165cbb038
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -22,9 +22,9 @@
<ExpansionPanel HeaderIcon="@Icons.Material.Filled.Verified" HeaderText="View GNU General Public License v2 (GPL)" MaxHeight="300" ExpandedChanged="this.WhenExpandingLicence"> <ExpansionPanel HeaderIcon="@Icons.Material.Filled.Verified" HeaderText="View GNU General Public License v2 (GPL)" MaxHeight="300" ExpandedChanged="this.WhenExpandingLicence">
@if (this.isLoadingLicence) @if (this.isLoadingLicence)
{ {
<MudSkeleton /> <MudSkeleton/>
<MudSkeleton Animation="Animation.Wave" /> <MudSkeleton Animation="Animation.Wave"/>
<MudSkeleton /> <MudSkeleton/>
} }
else if (!string.IsNullOrWhiteSpace(this.licenseText)) else if (!string.IsNullOrWhiteSpace(this.licenseText))
{ {
@ -138,12 +138,12 @@
@if (this.pandocInstallation == default) @if (this.pandocInstallation == default)
{ {
<MudStack Row="true" AlignItems="AlignItems.Center"> <MudStack Row="true" AlignItems="AlignItems.Center">
<MudSkeleton SkeletonType="SkeletonType.Circle" Width="4em" Height="4em" Animation="Animation.Pulse" /> <MudSkeleton SkeletonType="SkeletonType.Circle" Width="4em" Height="4em" Animation="Animation.Pulse"/>
<MudStack Row="false" Class="d-flex flex-column flex-grow-1"> <MudStack Row="false" Class="d-flex flex-column flex-grow-1">
<MudSkeleton Width="90%" Animation="Animation.Wave"/> <MudSkeleton Width="90%" Animation="Animation.Wave"/>
<MudSkeleton Width="75%" Animation="Animation.Wave"/> <MudSkeleton Width="75%" Animation="Animation.Wave"/>
<MudSkeleton Width="55%" /> <MudSkeleton Width="55%"/>
<MudSkeleton Width="12%" /> <MudSkeleton Width="12%"/>
</MudStack> </MudStack>
</MudStack> </MudStack>
} }
@ -193,7 +193,7 @@
else if (this.ShowInstallationPage) else if (this.ShowInstallationPage)
{ {
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled"> <MudButton OnClick="@this.Cancel" Variant="Variant.Filled">
Cancel Close
</MudButton> </MudButton>
<MudButton Color="Color.Warning" OnClick="@this.RejectLicense" Variant="Variant.Filled" Size="Size.Medium"> <MudButton Color="Color.Warning" OnClick="@this.RejectLicense" Variant="Variant.Filled" Size="Size.Medium">
@ -203,7 +203,7 @@
else else
{ {
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled"> <MudButton OnClick="@this.Cancel" Variant="Variant.Filled">
Cancel Close
</MudButton> </MudButton>
@if (this.pandocInstallation != default) @if (this.pandocInstallation != default)