Update grafica e home page
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<div class="d-flex w-100 justify-content-between">
|
||||
<div class="d-flex w-100 justify-content-between ">
|
||||
<div class="px-2">
|
||||
@if (isLoading)
|
||||
{
|
||||
@@ -7,11 +7,11 @@
|
||||
else
|
||||
{
|
||||
<button class="btn btn-primary" @onclick="() => flushCache()" title="Forza Refresh Dati correnti"><i class="fas fa-sync-alt"></i></button>
|
||||
<i class="fas fa-user-alt"></i> <b>@userName</b>
|
||||
<i class="fas fa-user-alt text-light"></i> <span class="fw-bold title-text">@userName</span>
|
||||
}
|
||||
</div>
|
||||
<div class="pe-2">
|
||||
<div class="fs-3 fw-bold text-uppercase">@PageTitle</div>
|
||||
<div class="fs-3 fw-bold text-uppercase title-text">@PageTitle</div>
|
||||
</div>
|
||||
<div class="pe-2">
|
||||
<div class="input-group">
|
||||
|
||||
@@ -67,7 +67,7 @@ namespace SHERPA.AD.Components
|
||||
/// <returns></returns>
|
||||
protected string Translate(string lemma)
|
||||
{
|
||||
string answ = "-";
|
||||
string answ = "Home";
|
||||
if (!string.IsNullOrEmpty(lemma))
|
||||
{
|
||||
answ = VocService.Traduci("IT", lemma);
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
.title-text {
|
||||
font-size: 1.1rem;
|
||||
background: -webkit-linear-gradient(135deg, #B1B1B1 0%, #FFFFFF 30%, #B1B1B1 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
|
||||
.title-text {
|
||||
font-size: 1.1rem;
|
||||
background: -webkit-linear-gradient(135deg, #B1B1B1 0%, #FFFFFF 30%, #B1B1B1 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
.title-text{font-size:1.1rem;background:-webkit-linear-gradient(135deg,#b1b1b1 0%,#fff 30%,#b1b1b1 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
|
||||
|
||||
<div class="jumbo-card p-3 border border-dark rounded">
|
||||
<div class="jumbo-card my-4 py-3 px-5 rounded shadow">
|
||||
<div class="row">
|
||||
<div class="col-12 col-lg-4">
|
||||
<div class="fs-1 text-uppercase">
|
||||
@@ -21,14 +21,35 @@
|
||||
Modulo Fatturazione per SHERPA
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 col-lg-8 text-right text-light py-4 text-end">
|
||||
<div class="col-12 col-lg-8 text-right text-light py-2 text-end">
|
||||
<div class="display-5">
|
||||
<span class="oi oi-basket" aria-hidden="true"></span> | <span class="oi oi-cart" aria-hidden="true"></span> | <span class="oi oi-document" aria-hidden="true"></span> | <span class="oi oi-envelope-open" aria-hidden="true"></span> | <span class="oi oi-puzzle-piece" aria-hidden="true"></span> | <span class="oi oi-wrench" aria-hidden="true"></span>
|
||||
</div>
|
||||
<span class="badge rounded-pill bg-dark" style="font-size:3em;">
|
||||
<img class="img-fluid" width="48" src="images/LogoEgw.png" /> <b>Egalware</b>
|
||||
<span class="badge rounded-pill bg-dark mt-3" style="font-size: 3em;">
|
||||
<img class="img-fluid" width="52" src="images/LogoEgw.png" /> <b>Egalware</b>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-flex justify-content-between mt-4">
|
||||
<NavLink class="w-25 btn btn-primary text-light p-3 m-2 shadow" title="Inserimento Rapido" href="AccuDoc">
|
||||
<div class="fs-3">
|
||||
<i class="fa-solid fa-receipt px-2"></i><br /> Doc.Contabili
|
||||
</div>
|
||||
</NavLink>
|
||||
<NavLink class="w-25 btn btn-primary text-light p-3 m-2 shadow" title="Record List" href="SyncFIC">
|
||||
<div class="fs-3">
|
||||
<i class="fa-solid fa-cloud-arrow-up px-2"></i><br /> Sync FattInCloud
|
||||
</div>
|
||||
</NavLink>
|
||||
<NavLink class="w-25 btn btn-primary text-light p-3 m-2 shadow" title="Record List" href="Pagamenti">
|
||||
<div class="fs-3">
|
||||
<i class="fas fa-balance-scale-right px-2"></i><br /> Pagamenti
|
||||
</div>
|
||||
</NavLink>
|
||||
<NavLink class="w-25 btn btn-primary text-light p-3 m-2 shadow" title="Record List" href="Help">
|
||||
<div class="fs-3">
|
||||
<i class="fas fa-sync-alt px-2"></i><br /> Help
|
||||
</div>
|
||||
</NavLink>
|
||||
</div>
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
.jumbo-card {
|
||||
background: linear-gradient(to right, #EFEFEF, #333, #111, #696969);
|
||||
font-size: 1.2rem;
|
||||
/*background: linear-gradient(to right, #EFEFEF, #333, #111, #696969);*/
|
||||
background: linear-gradient(135deg, #D8951C 0%, #FAF2A2 30%, #c8850c 100%);
|
||||
/*border: 0px solid #D8951C;*/
|
||||
}
|
||||
@@ -1,3 +1,6 @@
|
||||
.jumbo-card {
|
||||
background: linear-gradient(to right, #EFEFEF, #333, #111, #696969);
|
||||
font-size: 1.2rem;
|
||||
/*background: linear-gradient(to right, #EFEFEF, #333, #111, #696969);*/
|
||||
background: linear-gradient(135deg, #D8951C 0%, #FAF2A2 30%, #c8850c 100%);
|
||||
/*border: 0px solid #D8951C;*/
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
.jumbo-card{background:linear-gradient(to right,#efefef,#333,#111,#696969);}
|
||||
.jumbo-card{font-size:1.2rem;background:linear-gradient(135deg,#d8951c 0%,#faf2a2 30%,#c8850c 100%);}
|
||||
@@ -4,7 +4,7 @@
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Version>1.0.2307.0508</Version>
|
||||
<Version>1.0.2307.0517</Version>
|
||||
<Copyright>Egalware 2021+</Copyright>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ main {
|
||||
background-image: linear-gradient(180deg, #052767 20%, #3aa6ff 90%);
|
||||
}
|
||||
.top-row {
|
||||
background-color: #f7f7f7;
|
||||
background-color: #2E2E2E;
|
||||
border-bottom: 1px solid #d6d5d5;
|
||||
justify-content: flex-end;
|
||||
height: 3.5rem;
|
||||
@@ -50,7 +50,7 @@ main {
|
||||
flex-direction: row;
|
||||
}
|
||||
.sidebar {
|
||||
width: 15rem;
|
||||
width: 13rem;
|
||||
height: 100vh;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
@@ -79,7 +79,5 @@ main {
|
||||
.main > div {
|
||||
padding-left: 0.5rem !important;
|
||||
padding-right: 0.5rem !important;
|
||||
/*padding-left: 2rem !important;
|
||||
padding-right: 1.5rem !important;*/
|
||||
}
|
||||
}
|
||||
@@ -14,7 +14,7 @@ main {
|
||||
}
|
||||
|
||||
.top-row {
|
||||
background-color: #f7f7f7;
|
||||
background-color: #2E2E2E;
|
||||
border-bottom: 1px solid #d6d5d5;
|
||||
justify-content: flex-end;
|
||||
height: 3.5rem;
|
||||
@@ -60,7 +60,7 @@ main {
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
width: 15rem;
|
||||
width: 13rem;
|
||||
height: 100vh;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
@@ -94,7 +94,5 @@ main {
|
||||
.main > div {
|
||||
padding-left: 0.5rem !important;
|
||||
padding-right: 0.5rem !important;
|
||||
/*padding-left: 2rem !important;
|
||||
padding-right: 1.5rem !important;*/
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
.page{position:relative;display:flex;flex-direction:column;}main{flex:1;}.sidebar,.sidebarSmall{background-image:linear-gradient(180deg,#052767 20%,#3aa6ff 90%);}.top-row{background-color:#f7f7f7;border-bottom:1px solid #d6d5d5;justify-content:flex-end;height:3.5rem;display:flex;align-items:center;}.top-row ::deep a,.top-row .btn-link{white-space:nowrap;margin-left:1.5rem;}.top-row a:first-child{overflow:hidden;text-overflow:ellipsis;}.bottom-row{color:#dedede;background-color:#000;height:2rem;align-items:center;}@media(max-width:640.98px){.top-row:not(.auth){display:none;}.top-row.auth{justify-content:space-between;}.top-row a,.top-row .btn-link{margin-left:0;}}@media(min-width:641px){.page{flex-direction:row;}.sidebar{width:15rem;height:100vh;position:sticky;top:0;}.sidebarSmall{width:5rem;height:100vh;position:sticky;top:0;}.top-row{position:sticky;top:0;z-index:1;}.top-row,article{padding-left:2rem!important;padding-right:1.5rem!important;}.bottom-row{position:fixed;bottom:0;z-index:1;}.main>div{padding-left:.5rem!important;padding-right:.5rem!important;}}
|
||||
.page{position:relative;display:flex;flex-direction:column;}main{flex:1;}.sidebar,.sidebarSmall{background-image:linear-gradient(180deg,#052767 20%,#3aa6ff 90%);}.top-row{background-color:#2e2e2e;border-bottom:1px solid #d6d5d5;justify-content:flex-end;height:3.5rem;display:flex;align-items:center;}.top-row ::deep a,.top-row .btn-link{white-space:nowrap;margin-left:1.5rem;}.top-row a:first-child{overflow:hidden;text-overflow:ellipsis;}.bottom-row{color:#dedede;background-color:#000;height:2rem;align-items:center;}@media(max-width:640.98px){.top-row:not(.auth){display:none;}.top-row.auth{justify-content:space-between;}.top-row a,.top-row .btn-link{margin-left:0;}}@media(min-width:641px){.page{flex-direction:row;}.sidebar{width:13rem;height:100vh;position:sticky;top:0;}.sidebarSmall{width:5rem;height:100vh;position:sticky;top:0;}.top-row{position:sticky;top:0;z-index:1;}.top-row,article{padding-left:2rem!important;padding-right:1.5rem!important;}.bottom-row{position:fixed;bottom:0;z-index:1;}.main>div{padding-left:.5rem!important;padding-right:.5rem!important;}}
|
||||
@@ -1,4 +1,4 @@
|
||||
<div class="top-row ps-2 navbar navbar-dark">
|
||||
<div class="top-row ps-2 navbar">
|
||||
<div class="container-fluid">
|
||||
@if (!showText)
|
||||
{
|
||||
@@ -46,30 +46,12 @@
|
||||
<span class="@hideText">Anag. IVA</span>
|
||||
</NavLink>
|
||||
</div>
|
||||
@* <div class="nav-item px-2">
|
||||
<NavLink class="nav-link" href="ListManagement">
|
||||
<i class="fa-solid fa-circle-question px-2"></i>
|
||||
<span class="@hideText">Anagrafiche</span>
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-2">
|
||||
<NavLink class="nav-link" href="Analysis">
|
||||
<i class="fa-solid fa-circle-question px-2"></i>
|
||||
<span class="@hideText">Analisi</span>
|
||||
</NavLink>
|
||||
</div>*@
|
||||
<div class="nav-item px-2">
|
||||
<NavLink class="nav-link" href="Pagamenti">
|
||||
<i class="fas fa-balance-scale-right px-2"></i>
|
||||
<span class="@hideText">Pagamenti</span>
|
||||
</NavLink>
|
||||
</div>
|
||||
@*<div class="nav-item px-2">
|
||||
<NavLink class="nav-link" href="CostiAss">
|
||||
<i class="fas fa-balance-scale-left px-2"></i>
|
||||
<span class="@hideText">Costi Ass.</span>
|
||||
</NavLink>
|
||||
</div>*@
|
||||
<div class="nav-item px-2">
|
||||
<NavLink class="nav-link" href="About">
|
||||
<i class="fas fa-info px-2"></i>
|
||||
|
||||
@@ -1,12 +1,21 @@
|
||||
.navbar-toggler {
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.navbar-home {
|
||||
background-color: #f7dfc7;
|
||||
}
|
||||
.top-row {
|
||||
height: 3.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
/*background-color: rgb(247, 223, 199)*/
|
||||
/*background: linear-gradient(135deg, #c8850c 0%, #F7EF99 30%, #c8850c 100%);*/
|
||||
background: #2E2E2E;
|
||||
}
|
||||
.navbar-brand {
|
||||
font-size: 1.1rem;
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
background: -webkit-linear-gradient(135deg, #D8951C 0%, #FAF2A2 30%, #c8850c 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.oi {
|
||||
width: 2rem;
|
||||
|
||||
@@ -2,13 +2,23 @@
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.navbar-home {
|
||||
background-color: rgb(247, 223, 199, 0.8);
|
||||
}
|
||||
|
||||
.top-row {
|
||||
height: 3.5rem;
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
/*background-color: rgb(247, 223, 199)*/
|
||||
/*background: linear-gradient(135deg, #c8850c 0%, #F7EF99 30%, #c8850c 100%);*/
|
||||
background: #2E2E2E;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
font-size: 1.1rem;
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
background: -webkit-linear-gradient(135deg, #D8951C 0%, #FAF2A2 30%, #c8850c 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.oi {
|
||||
@@ -60,3 +70,4 @@
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
.navbar-toggler{background-color:rgba(255,255,255,.1);}.top-row{height:3.5rem;background-color:rgba(0,0,0,.4);}.navbar-brand{font-size:1.1rem;}.oi{width:2rem;font-size:1.1rem;vertical-align:text-top;top:-2px;}.nav-item{font-size:.9rem;padding-bottom:.5rem;}.nav-item:first-of-type{padding-top:1rem;}.nav-item:last-of-type{padding-bottom:1rem;}.nav-item ::deep a{color:#d7d7d7;border-radius:4px;height:3rem;display:flex;align-items:center;line-height:3rem;}.nav-item ::deep a.active{background-color:rgba(255,255,255,.25);color:#fff;}.nav-item ::deep a:hover{background-color:rgba(255,255,255,.1);color:#fff;}@media(min-width:641px){.navbar-toggler{display:none;}.collapse{display:block;}}
|
||||
.navbar-toggler{background-color:rgba(255,255,255,.1);}.navbar-home{background-color:#f7dfc7;}.top-row{height:3.5rem;background:#2e2e2e;}.navbar-brand{font-size:1.5rem;font-weight:bold;background:-webkit-linear-gradient(135deg,#d8951c 0%,#faf2a2 30%,#c8850c 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}.oi{width:2rem;font-size:1.1rem;vertical-align:text-top;top:-2px;}.nav-item{font-size:.9rem;padding-bottom:.5rem;}.nav-item:first-of-type{padding-top:1rem;}.nav-item:last-of-type{padding-bottom:1rem;}.nav-item ::deep a{color:#d7d7d7;border-radius:4px;height:3rem;display:flex;align-items:center;line-height:3rem;}.nav-item ::deep a.active{background-color:rgba(255,255,255,.25);color:#fff;}.nav-item ::deep a:hover{background-color:rgba(255,255,255,.1);color:#fff;}@media(min-width:641px){.navbar-toggler{display:none;}.collapse{display:block;}}
|
||||
@@ -18,5 +18,9 @@
|
||||
{
|
||||
"outputFile": "Shared/MainLayout.razor.css",
|
||||
"inputFile": "Shared/MainLayout.razor.less"
|
||||
},
|
||||
{
|
||||
"outputFile": "Components/CmpTop.razor.css",
|
||||
"inputFile": "Components/CmpTop.razor.less"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user