Aggiornata pagina di prova
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Version>1.1.2605.2911</Version>
|
||||
<Version>1.1.2605.2913</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -87,7 +87,7 @@ namespace Lux.UI.Components.Layout
|
||||
// Inserimento nomi segnaposto nav-item
|
||||
NameDict.Add("Articoli", new List<string>() { "Articoli", "Buy", "Sell" });
|
||||
NameDict.Add("Ciclo prod", new List<string>() { "Ciclo prod", "Risorse", "Cicli" });
|
||||
NameDict.Add("Contatti", new List<string>() { "Contatti", "Clienti", "Fornitori" });
|
||||
NameDict.Add("Contatti", new List<string>() { "Contatti", "Clienti", "Venditori" });
|
||||
|
||||
// Inserimento icone
|
||||
IconDict.Add("Articoli", new List<string>() { "fa-book-open", "fa-book", "fa-book-bookmark" });
|
||||
|
||||
@@ -1,6 +1,60 @@
|
||||
@page "/ConfListNew"
|
||||
|
||||
<div class="card shadow calc-height d-flex flex-column border-1 rounded-1">
|
||||
<div class="alert alert-secondary shadow">
|
||||
<div class="d-flex px-0 fs-3 gap-3">
|
||||
<b>Configurazioni</b>
|
||||
<i class="fa-solid fa-gears"></i>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex-grow-1 overflow-auto p-3">
|
||||
@if (isLoading)
|
||||
{
|
||||
<LoadingData DisplaySize="LoadingData.CtrlSize.Large" DisplayMode="LoadingData.SpinMode.Growl"></LoadingData>
|
||||
}
|
||||
else
|
||||
{
|
||||
<div class="row g-3">
|
||||
<div class="col-2 g-2">
|
||||
<div class="d-flex flex-column align-items-start gap-2">
|
||||
<button class="btn-menu @ButtonCss(0) shadow-sm" @onclick="() => DoOpen(0)">Legno</button>
|
||||
<button class="btn-menu @ButtonCss(1) shadow-sm" @onclick="() => DoOpen(1)">Vetro</button>
|
||||
<button class="btn-menu @ButtonCss(2) shadow-sm" @onclick="() => DoOpen(2)">Profili</button>
|
||||
<button class="btn-menu @ButtonCss(3) shadow-sm" @onclick="() => DoOpen(3)">Hardware</button>
|
||||
</div>
|
||||
</div>
|
||||
@if (showConf == 0)
|
||||
{
|
||||
<div class="col-6 g-2" style="min-height: 22rem;">
|
||||
<WoodMan></WoodMan>
|
||||
</div>
|
||||
}
|
||||
else if (showConf == 1)
|
||||
{
|
||||
<div class="col-6 g-2" style="min-height: 22rem;">
|
||||
<GlassMan></GlassMan>
|
||||
</div>
|
||||
}
|
||||
else if (showConf == 2)
|
||||
{
|
||||
<div class="col-6 g-2" style="min-height: 22rem;">
|
||||
<ProfileMan></ProfileMan>
|
||||
</div>
|
||||
}
|
||||
else if (showConf == 3)
|
||||
{
|
||||
<div class="col-6 g-2" style="min-height: 22rem;">
|
||||
<HardwareMan></HardwareMan>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
@* <div class="card shadow calc-height d-flex flex-column border-1 rounded-1">
|
||||
<div class="card-header">
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<div class="px-0 fs-3">
|
||||
@@ -51,6 +105,6 @@
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div> *@
|
||||
|
||||
|
||||
|
||||
@@ -10,19 +10,18 @@
|
||||
border-radius: 8px;
|
||||
transition: all 0.2s ease-in-out;
|
||||
width: 100%;
|
||||
/* Lo fa occupare tutta la larghezza della colonna */
|
||||
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
||||
}
|
||||
/* Effetto quando passi il mouse sopra */
|
||||
.btn-menu:hover {
|
||||
background-color: #2690c9;
|
||||
color: #000;
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
/* Effetto quando il bottone è selezionato */
|
||||
.btn-menu.active {
|
||||
background-color: #57b6eb;
|
||||
color: white !important;
|
||||
font-weight: bold;
|
||||
}
|
||||
.calc-height {
|
||||
height: calc(100vh - 115px);
|
||||
}
|
||||
@@ -9,13 +9,16 @@
|
||||
color: white !important;
|
||||
border-radius: 8px;
|
||||
transition: all 0.2s ease-in-out;
|
||||
width: 100%; /* Lo fa occupare tutta la larghezza della colonna */
|
||||
width: 100%;
|
||||
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
/* Effetto quando passi il mouse sopra */
|
||||
.btn-menu:hover {
|
||||
background-color: #2690c9;
|
||||
color: #000;
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/* Effetto quando il bottone è selezionato */
|
||||
@@ -23,8 +26,4 @@
|
||||
background-color: #57b6eb;
|
||||
color: white !important;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.calc-height {
|
||||
height: calc(100vh - 115px);
|
||||
}
|
||||
+1
-1
@@ -1 +1 @@
|
||||
.btn-menu{background:none;border:0;text-align:left;padding:10px 20px;font-size:1.1rem;background-color:#b9e3fa;color:#fff!important;border-radius:8px;transition:all .2s ease-in-out;width:100%;}.btn-menu:hover{background-color:#2690c9;color:#000;}.btn-menu.active{background-color:#57b6eb;color:#fff!important;font-weight:bold;}.calc-height{height:calc(100vh - 115px);}
|
||||
.btn-menu{background:none;border:0;text-align:left;padding:10px 20px;font-size:1.1rem;background-color:#b9e3fa;color:#fff!important;border-radius:8px;transition:all .2s ease-in-out;width:100%;transition:transform .2s ease-in-out,box-shadow .2s ease-in-out;}.btn-menu:hover{background-color:#2690c9;color:#000;transform:scale(1.05);box-shadow:0 5px 15px rgba(0,0,0,.3);}.btn-menu.active{background-color:#57b6eb;color:#fff!important;font-weight:bold;}
|
||||
@@ -16,6 +16,7 @@
|
||||
<li class="list-group-item">Offerte e ricalcoli</li>
|
||||
<li class="list-group-item">Configuratore</li>
|
||||
<li class="list-group-item">Ordini</li>
|
||||
<li class="list-group-item">Stampe</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-4">
|
||||
@@ -25,7 +26,6 @@
|
||||
<li class="list-group-item">Cicli</li>
|
||||
<li class="list-group-item">Sistema Costing</li>
|
||||
<li class="list-group-item">Pianificazione Produzione</li>
|
||||
<li class="list-group-item">Stampe</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-4">
|
||||
|
||||
@@ -577,6 +577,7 @@ namespace Lux.UI.Components.Pages
|
||||
private void SaveNumRec(int newNum)
|
||||
{
|
||||
numRecord = newNum;
|
||||
currPage = 1;
|
||||
UpdateTable();
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<UserSecretsId>aspnet-Lux.UI-a758c101-a2f4-4e38-977d-1c4887dbbd50</UserSecretsId>
|
||||
<Version>1.1.2605.2911</Version>
|
||||
<Version>1.1.2605.2913</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<body>
|
||||
<i>LUX - Web Windows MES</i>
|
||||
<h4>Versione: 1.1.2605.2911</h4>
|
||||
<h4>Versione: 1.1.2605.2913</h4>
|
||||
<br /> Note di rilascio:
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
@@ -1 +1 @@
|
||||
1.1.2605.2911
|
||||
1.1.2605.2913
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>1.1.2605.2911</version>
|
||||
<version>1.1.2605.2913</version>
|
||||
<url>http://nexus.steamware.net/repository/SWS/GPW/stable/GPW.UI.zip</url>
|
||||
<changelog>http://nexus.steamware.net/repository/SWS/GPW/stable/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
|
||||
Reference in New Issue
Block a user