Aggiornata interfaccia

This commit is contained in:
Annamaria Sassi
2026-02-18 18:16:51 +01:00
parent d49655bee3
commit 5fc60445ac
7 changed files with 43 additions and 9 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
@using EgwCoreLib.Razor
<div class="col-lg-12 col-md-12 my-2">
<div class="col-lg-12 col-md-12">
@if (!SashDimEditList.Contains(IndexSash))
{
<div class="d-flex justify-content-between align-items-center mb-2">
<div class="d-flex justify-content-between align-items-center">
<div class="col-md-12 col-lg-6 d-grid px-2 d-md-flex justify-content-md-start flex-wrap">
<h6 class="fw-bold text-nowrap">Sash @(CurrSashGroup.SashList.Count == 1 ? "" : (IndexSash + 1))</h6>
</div>
+1 -1
View File
@@ -14,7 +14,7 @@
<div class="card-body py-2">
<div class="row">
<div class="col-md-12 col-lg-6">
<div class="input-group my-2">
<div class="input-group mt-2">
@if (User)
{
<span class="input-group-text">Shape</span>
+1 -1
View File
@@ -168,7 +168,7 @@
</div>
@for (int i = 0; i < CurrSashGroup.SashList.Count; i++)
{
<div class="row mt-2">
<div class="@AreaSashCss(i)">
<AreaSash CurrSashDim="CurrSashGroup.SashList[i]"
IndexSash="i"
SashDimEditList="currSashDimEdit"
@@ -428,6 +428,14 @@ namespace WebWindowComplex.Compo
//{
// isOpen = !isOpen;
//}
private string AreaSashCss(int i)
{
if (i == 0)
return "row mt-4";
else
return "row mt-2";
}
#endregion Private Methods
}