diff --git a/GPW.CORE.SMART/Components/Calendario.razor.cs b/GPW.CORE.SMART/Components/Calendario.razor.cs index 48362d4..18842d7 100644 --- a/GPW.CORE.SMART/Components/Calendario.razor.cs +++ b/GPW.CORE.SMART/Components/Calendario.razor.cs @@ -44,8 +44,9 @@ namespace GPW.CORE.Smart.Components DateTime MeseEnd = MeseStart.AddMonths(1); listRecords = await CSDataService.DailyDetails(IdxDipendente, MeseStart, MeseEnd); DateCheck = new Dictionary(); - string cssOkComm = "bg-success text-light rounded-circle p-2"; - string cssOkLav = "bg-warning text-light rounded-circle p-2"; + string cssOkComm = "bg-success text-light rounded-circle p-1"; + string cssOkLav = "bg-warning text-light rounded-circle p-1"; + string cssToday = "bg-info text-dark rounded-circle p-1"; if (listRecords != null) { string currCss = ""; @@ -56,6 +57,10 @@ namespace GPW.CORE.Smart.Components { currCss = cssOkComm; } + else if(giorno.DtRif == DateTime.Today) + { + currCss = cssToday; + } DateCheck.Add(giorno.DtRif, currCss); } } diff --git a/GPW.CORE.Comp/NavBottom.razor b/GPW.CORE.SMART/Components/NavBottom.razor similarity index 74% rename from GPW.CORE.Comp/NavBottom.razor rename to GPW.CORE.SMART/Components/NavBottom.razor index 0f38661..fd1aff2 100644 --- a/GPW.CORE.Comp/NavBottom.razor +++ b/GPW.CORE.SMART/Components/NavBottom.razor @@ -1,6 +1,6 @@ 
- +