Aggiunto parametrico border

This commit is contained in:
Samuele E. Locatelli
2019-08-28 12:49:14 +02:00
parent 12d3b885f9
commit 94c476846b
4 changed files with 9 additions and 7 deletions
@@ -39,7 +39,7 @@ namespace NKC_WF.WebUserControls
}
public string cssByPrepared(object _prepared, object _isNext)
{
string answ = "table-secondary border border-secondary border-3 rounded";
string answ = "table-secondary border border-secondary border-thick rounded";
if (_isNext.ToString() == "1")
{
answ = "table-primary flashColor rounded";
@@ -48,7 +48,7 @@ namespace NKC_WF.WebUserControls
{
if (_prepared.ToString() != "")
{
answ = "table-success border border-success border-3 rounded";
answ = "table-success border border-success border-thick rounded";
}
}
return answ;