1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-10-19 00:42:50 +02:00

Compare commits

..

No commits in common. "de72e77c7b617561393aaf8b128c025bbb8a95fe" and "e981425ce52060930298103fbd8fbb5f55b1c277" have entirely different histories.

3 changed files with 16 additions and 19 deletions

View File

@ -1,12 +1,12 @@
<Project>
<ItemGroup>
<PackageReference Update="Microsoft.AspNetCore.Components.Authorization" Version="8.0.0" />
<PackageReference Update="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0" />
<PackageReference Update="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
<PackageReference Update="System.Linq.Async" Version="6.0.1" />
<PackageReference Update="Microsoft.AspNetCore.Components.Authorization" Version="7.0.11" />
<PackageReference Update="Microsoft.AspNetCore.Components.Web" Version="7.0.11" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational" Version="7.0.11" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Tools" Version="7.0.11" />
<PackageReference Update="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11" />
<PackageReference Update="System.Linq.Async" Version="4.0.0" />
</ItemGroup>
<ItemGroup>
@ -18,21 +18,21 @@
</ItemGroup>
<ItemGroup>
<PackageReference Update="MemoryPack" Version="1.10.0" />
<PackageReference Update="MemoryPack" Version="1.9.16" />
<PackageReference Update="NetMQ" Version="4.0.1.13" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Serilog" Version="3.1.1" />
<PackageReference Update="Serilog.AspNetCore" Version="8.0.0" />
<PackageReference Update="Serilog" Version="3.0.1" />
<PackageReference Update="Serilog.AspNetCore" Version="7.0.0" />
<PackageReference Update="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Update="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Update="Serilog.Sinks.Console" Version="4.1.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Update="NUnit" Version="4.0.1" />
<PackageReference Update="NUnit.Analyzers" Version="3.10.0" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Update="NUnit" Version="3.13.3" />
<PackageReference Update="NUnit.Analyzers" Version="3.8.0" />
<PackageReference Update="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>

View File

@ -1,11 +1,10 @@
@using Phantom.Web.Components.Utils
@if (Url == null) {
@if (Url == null) {
<td @attributes="AdditionalAttributes">
@ChildContent
</td>
}
else {
<td @attributes="AdditionalAttributes" class="@(BlazorUtils.CombineClassNames(AdditionalAttributes, "p-0"))">
<td class="p-0" @attributes="AdditionalAttributes">
<a class="table-link" href="@Url">@ChildContent</a>
</td>
}

View File

@ -67,9 +67,7 @@ code {
border-top: 2px solid #a6a6a6;
}
.table th,
.table td,
.table td > .table-link {
.table th, .table td, .table td > .table-link {
padding: 0.5rem 1.25rem;
}