Update versione e fix bottom...

This commit is contained in:
Samuele E. Locatelli
2018-02-05 16:40:19 +01:00
parent e47f44d73b
commit f8fe6c63b1
3 changed files with 11 additions and 13 deletions
Vendored
+1 -1
View File
@@ -15,7 +15,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=639']) {
withEnv(['NEXT_BUILD_NUMBER=640']) {
// env.versionNumber = VersionNumber(versionNumberString : '4.9.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '4.9.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'MAPO'
+2 -2
View File
@@ -42,10 +42,10 @@
}
@if (ViewBag.envir != "Dev")
{
cssFixFooter = "navbar-fixed-bottom";
cssFixFooter = "fixed-bottom";
}
<footer class="navbar navbar-inverse @cssFixFooter">
<footer class="navbar p-0 m-0 @cssFixFooter">
@Html.Partial("_footer")
</footer>
</div>
+8 -10
View File
@@ -1,11 +1,9 @@
<div class="row">
<div class="col-sm-4 col-5 padZR">
<p style="padding-left:1em;">MoonPro MONitor</p>
</div>
<div class="col-sm-4 col-2 padZR padZL text-center">
<strong>@ViewBag.envir</strong>
</div>
<div class="col-sm-4 col-5 padZL">
<p style="padding-right:1em;" class="text-right">Steamware s.r.l. - &copy; 2007-@DateTime.Now.Year</p>
</div>
<div class="d-flex justify-content-start pl-3 text-left">
MoonPro MONitor
</div>
<div class="d-flex justify-content-center text-center">
<strong>@ViewBag.envir</strong>
</div>
<div class="d-flex justify-content-end pr-3 text-right">
Steamware s.r.l. - &copy; 2007-@DateTime.Now.Year
</div>