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

Compare commits

...

2 Commits

3 changed files with 19 additions and 16 deletions

View File

@ -1,12 +1,12 @@
<Project>
<ItemGroup>
<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" />
<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" />
</ItemGroup>
<ItemGroup>
@ -18,21 +18,21 @@
</ItemGroup>
<ItemGroup>
<PackageReference Update="MemoryPack" Version="1.9.16" />
<PackageReference Update="MemoryPack" Version="1.10.0" />
<PackageReference Update="NetMQ" Version="4.0.1.13" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Serilog" Version="3.0.1" />
<PackageReference Update="Serilog.AspNetCore" Version="7.0.0" />
<PackageReference Update="Serilog" Version="3.1.1" />
<PackageReference Update="Serilog.AspNetCore" Version="8.0.0" />
<PackageReference Update="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Update="Serilog.Sinks.Console" Version="4.1.0" />
<PackageReference Update="Serilog.Sinks.Console" Version="5.0.1" />
</ItemGroup>
<ItemGroup>
<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="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="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>

View File

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

View File

@ -67,7 +67,9 @@ 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;
}