Migliorata interfaccia

This commit is contained in:
Annamaria Sassi
2026-02-18 16:41:17 +01:00
parent 7c836e3fbf
commit 4a5c6654cc
20 changed files with 537 additions and 467 deletions
+4 -4
View File
@@ -1318,23 +1318,23 @@ namespace WebWindowComplex
if ((currSashIndex == 0 && Index == 0) || (currSashIndex == 1 && Index == 1))
return "nav-link active fw-bold";
else
return "nav-link text-secondary";
return "nav-link text-dark";
}
else if (testStep == CompileStep.Fill)
{
if ((currFillIndex == 0 && Index == 0) || (currFillIndex == 1 && Index == 1))
return "nav-link active fw-bold";
else
return "nav-link text-secondary";
return "nav-link text-dark";
}
else if (testStep == CompileStep.Split)
{
if ((currSplitIndex == 0 && Index == 0) || (currSplitIndex == 1 && Index == 1))
return "nav-link active fw-bold";
else
return "nav-link text-secondary";
return "nav-link text-dark";
}
return (testStep == currStep) ? "nav-link active fw-bold" : "nav-link text-secondary";
return (testStep == currStep) ? "nav-link active fw-bold" : "nav-link text-dark";
}
/// <summary>