TAB3:
- Allargamento buttons vari
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
@if (ShowInsFermata)
|
||||
{
|
||||
<button class="btn w-100 btn-lg flashingRed mb-2 p-3" @onclick="@GoToFermate"><i class="fa fa-lg fa-exclamation-triangle"></i> DICHIARARE FERMO <i class="fa fa-lg fa-exclamation-triangle"></i></button>
|
||||
<button class="btn w-100 btn-lg flashingRed mb-2 p-3 fs-2" @onclick="@GoToFermate"><i class="fa fa-lg fa-exclamation-triangle"></i> DICHIARARE FERMO <i class="fa fa-lg fa-exclamation-triangle"></i></button>
|
||||
}
|
||||
@if (ShowReqControls)
|
||||
{
|
||||
<button class="btn w-100 btn-lg flashingPurple mb-2 p-3" @onclick="GoToControls"><i class="fa fa-lg fa-flask"></i> EFFETTUARE CONTROLLO<i class="fa fa-lg fa-flask"></i></button>
|
||||
<button class="btn w-100 btn-lg flashingPurple mb-2 p-3 fs-2" @onclick="GoToControls"><i class="fa fa-lg fa-flask"></i> EFFETTUARE CONTROLLO<i class="fa fa-lg fa-flask"></i></button>
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="textCondens mb-1">
|
||||
<a runat="server" href="@navUrl" target="_blank" class="btn btn-primary w-100 py-2 px-4">MAG <i class="fa-solid fa-print"></i></a>
|
||||
<a runat="server" href="@navUrl" target="_blank" class="btn btn-lg btn-primary w-100 py-2 px-4">MAG <i class="fa-solid fa-print"></i></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<div class="col-12 mt-1">
|
||||
<MachSel RecMSE="RecMSE" E_MachSel="SetMacc"></MachSel>
|
||||
</div>
|
||||
<div class="col-12 mt-2">
|
||||
<div class="col-12 mt-3">
|
||||
<div class="row">
|
||||
@if (enableMagPrint)
|
||||
{
|
||||
@@ -14,7 +14,7 @@
|
||||
@if (odlOk)
|
||||
{
|
||||
<div class="@ConfCssWidth">
|
||||
<button class="btn @ConfBg py-2 px-4" style="width: 100%" @onclick="()=>ToggleConfProd()">
|
||||
<button class="btn btn-lg @ConfBg py-2 px-4" style="width: 100%" @onclick="()=>ToggleConfProd()">
|
||||
<i class="fa-solid fa-check pe-1"></i><span>@ConfTitle</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -1,16 +1,14 @@
|
||||
<div class="fs-6">
|
||||
<div class="p-0">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<button class="btn btn-lg bg-info w-100" @onclick="ToggleCtrl">
|
||||
<i class="fa-solid fa-bug"></i>
|
||||
|
||||
<span class="fw-bold" style="font-size: 1rem;">@Title</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<button class="btn btn-lg bg-info w-100" @onclick="ToggleCtrl">
|
||||
<i class="fa-solid fa-bug"></i>
|
||||
|
||||
<span class="fw-bold" style="font-size: 1rem;">@Title</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@if(errMsg != "")
|
||||
@if (errMsg != "")
|
||||
{
|
||||
<div class="alert alert-warning mt-1 text-center">
|
||||
@errMsg
|
||||
@@ -18,42 +16,40 @@
|
||||
}
|
||||
@if (ShowDetail)
|
||||
{
|
||||
<div class="p-1">
|
||||
<div class="row">
|
||||
<div class="col-5">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="font-size: .9rem;">Num Pz</span>
|
||||
<input type="number" class="form-control text-end" @bind="@NumPz">
|
||||
<button class="btn btn-secondary" @onclick="resetNumPz"><i class="fa-solid fa-arrow-rotate-right"></i></button>
|
||||
</div>
|
||||
<div class="row pt-2">
|
||||
<div class="col-5 my-1">
|
||||
<div class="input-group input-group-lg">
|
||||
<span class="input-group-text px-2" style="font-size: 0.9rem;">Num</span>
|
||||
<input type="number" class="form-control text-end" @bind="@NumPz">
|
||||
<button class="btn btn-secondary px-2" @onclick="resetNumPz"><i class="fa-solid fa-arrow-rotate-right"></i></button>
|
||||
</div>
|
||||
<div class="col-7">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="font-size: .9rem;">Data Ora</span>
|
||||
<input type="datetime-local" class="form-control text-end" @bind="@DateSel">
|
||||
<button class="btn btn-secondary" @onclick="resetDate"><i class="fa-solid fa-arrow-rotate-right"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-7 my-1">
|
||||
<div class="input-group input-group-lg">
|
||||
<span class="input-group-text px-2" style="font-size: 0.9rem;">Data</span>
|
||||
<input type="datetime-local" class="form-control text-end" @bind="@DateSel">
|
||||
<button class="btn btn-secondary px-2" @onclick="resetDate"><i class="fa-solid fa-arrow-rotate-right"></i></button>
|
||||
</div>
|
||||
<div class="col-12 my-1">
|
||||
<div class="form-floating">
|
||||
<textarea type="text" class="form-control" id="floatingComm" @bind="@UserComment"></textarea>
|
||||
<label for="floatingComm">Commento (opzionale)</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 my-2">
|
||||
<div class="form-floating">
|
||||
<textarea type="text" class="form-control" id="floatingComm" @bind="@UserComment"></textarea>
|
||||
<label for="floatingComm">Commento (opzionale)</label>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="row">
|
||||
@foreach (var item in listCauScarto)
|
||||
{
|
||||
<div class="col-6 col-lg-4 col-xl-3 mt-2">
|
||||
<button class="btn w-100 btn-lg @($"btn-{item.cssClass}")" @onclick="() => doSave(item)">
|
||||
<i class="@item.icona"></i><span cs="fs-5 ps-2">@item.label</span>
|
||||
</button>
|
||||
<asp:LinkButton ID="hlRegistra" runat="server" OnClick="hlRegistra_Click" CommandArgument='<%# Eval("value") %>' CssClass='<%# "btn w-100 btn-lg btn-" + Eval("cssClass")%>'>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="row">
|
||||
@foreach (var item in listCauScarto)
|
||||
{
|
||||
<div class="col-6 col-lg-4 col-xl-3 mt-2">
|
||||
<button class="btn w-100 btn-lg @($"btn-{item.cssClass}")" @onclick="() => doSave(item)">
|
||||
<i class="@item.icona"></i><span cs="fs-5 ps-2">@item.label</span>
|
||||
</button>
|
||||
<asp:LinkButton ID="hlRegistra" runat="server" OnClick="hlRegistra_Click" CommandArgument='<%# Eval("value") %>' CssClass='<%# "btn w-100 btn-lg btn-" + Eval("cssClass")%>'>
|
||||
|
||||
</asp:LinkButton>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</asp:LinkButton>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<Version>6.16.2405.1717</Version>
|
||||
<Version>6.16.2405.2217</Version>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<RootNamespace>MP_TAB3</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<body>
|
||||
<i>Modulo MAPOSPEC </i>
|
||||
<h4>Versione: 6.16.2405.1717</h4>
|
||||
<h4>Versione: 6.16.2405.2217</h4>
|
||||
<br /> Note di rilascio:
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
@@ -1 +1 @@
|
||||
6.16.2405.1717
|
||||
6.16.2405.2217
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>6.16.2405.1717</version>
|
||||
<version>6.16.2405.2217</version>
|
||||
<url>https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/MP-TAB3.zip</url>
|
||||
<changelog>https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
|
||||
Reference in New Issue
Block a user