Fix grafico x area NAV sito REMAN

This commit is contained in:
Samuele Locatelli
2021-11-18 16:28:46 +01:00
parent 8264498f15
commit bbfab5ea52
5 changed files with 39 additions and 12 deletions
+18 -2
View File
@@ -6,7 +6,23 @@ using System.Threading.Tasks;
namespace NKC.Data
{
internal class Enum
public class Enum
{
#region Public Enums
public enum RemnState
{
/// <summary>
/// Non definito
/// </summary>
ND = 0,
/// <summary>
/// Selezionato x operazioni (veto interfaccia ad altri usi)
/// </summary>
Selected
}
#endregion Public Enums
}
}
}
+7
View File
@@ -6,4 +6,11 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="DTO\" />
<Folder Include="Migrations\" />
<Folder Include="DbModels\" />
<Folder Include="Controllers\" />
</ItemGroup>
</Project>
+4
View File
@@ -10,4 +10,8 @@
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NKC.Data\NKC.Data.csproj" />
</ItemGroup>
</Project>
+1 -1
View File
@@ -9,7 +9,7 @@ main {
}
.sidebar {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
background-image: linear-gradient(180deg, rgb(5, 39, 103) 20%, #3aa6ff 90%);
}
.top-row {
+9 -9
View File
@@ -40,15 +40,15 @@
line-height: 3rem;
}
.nav-item ::deep a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item ::deep a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item ::deep a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
.nav-item ::deep a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler {
@@ -59,4 +59,4 @@
/* Never collapse the sidebar for wide screens */
display: block;
}
}
}