From a521161ae92bacb84d9652c884c789e64c5b9f26 Mon Sep 17 00:00:00 2001 From: Surya Paolo Date: Sat, 10 Dec 2022 02:23:56 +0100 Subject: [PATCH] show last access in profile --- .env.development | 2 +- .env.example.production | 2 +- _ALL_SITES/riso.app/.env.development | 2 +- _ALL_SITES/riso.app/.env.production | 2 +- _ALL_SITES/riso.app/.env.test | 2 +- .../terradellavisione.app/.env.development | 2 +- src/css/app.scss | 12 + src/views/user/myprofile/myprofile.vue | 320 ++++++++++++------ 8 files changed, 239 insertions(+), 105 deletions(-) diff --git a/.env.development b/.env.development index 97e95f1f..f746bff4 100755 --- a/.env.development +++ b/.env.development @@ -1,4 +1,4 @@ -APP_VERSION="0.5.31" +APP_VERSION="0.5.32" SERVICE_WORKER_FILE="service-worker.js" APP_ID="13" DIRECTORY_LOCAL="newfreeplanet" diff --git a/.env.example.production b/.env.example.production index e234f5ea..a215a6f7 100755 --- a/.env.example.production +++ b/.env.example.production @@ -1,4 +1,4 @@ -APP_VERSION="0.5.31" +APP_VERSION="0.5.32" SERVICE_WORKER_FILE="service-worker.js" APP_ID="13" DIRECTORY_LOCAL=newfreeplanet diff --git a/_ALL_SITES/riso.app/.env.development b/_ALL_SITES/riso.app/.env.development index 97e95f1f..f746bff4 100755 --- a/_ALL_SITES/riso.app/.env.development +++ b/_ALL_SITES/riso.app/.env.development @@ -1,4 +1,4 @@ -APP_VERSION="0.5.31" +APP_VERSION="0.5.32" SERVICE_WORKER_FILE="service-worker.js" APP_ID="13" DIRECTORY_LOCAL="newfreeplanet" diff --git a/_ALL_SITES/riso.app/.env.production b/_ALL_SITES/riso.app/.env.production index e6a42f80..76e17f44 100644 --- a/_ALL_SITES/riso.app/.env.production +++ b/_ALL_SITES/riso.app/.env.production @@ -1,4 +1,4 @@ -APP_VERSION="0.5.31" +APP_VERSION="0.5.32" SERVICE_WORKER_FILE="service-worker.js" APP_ID="13" DIRECTORY_LOCAL=newfreeplanet diff --git a/_ALL_SITES/riso.app/.env.test b/_ALL_SITES/riso.app/.env.test index 80400835..579b1fbe 100755 --- a/_ALL_SITES/riso.app/.env.test +++ b/_ALL_SITES/riso.app/.env.test @@ -1,4 +1,4 @@ -APP_VERSION="0.5.31" +APP_VERSION="0.5.32" SERVICE_WORKER_FILE="service-worker.js" APP_ID="16" DIRECTORY_LOCAL=newfreeplanet diff --git a/_ALL_SITES/terradellavisione.app/.env.development b/_ALL_SITES/terradellavisione.app/.env.development index 4e84adaa..f873c00a 100755 --- a/_ALL_SITES/terradellavisione.app/.env.development +++ b/_ALL_SITES/terradellavisione.app/.env.development @@ -1,4 +1,4 @@ -APP_VERSION="0.5.31" +APP_VERSION="0.5.32" SERVICE_WORKER_FILE="service-worker.js" APP_ID="14" DIRECTORY_LOCAL="newfreeplanet" diff --git a/src/css/app.scss b/src/css/app.scss index c6e755e8..ea063551 100755 --- a/src/css/app.scss +++ b/src/css/app.scss @@ -1308,6 +1308,18 @@ h3 { background: linear-gradient(45deg, #17ead9, #6078ea) !important; } +.last_access { + opacity: 0.7; + margin-top: -10px; + z-index: 1000; + margin-bottom: 5px; + padding: 5px; + border-radius: 20px; + background: #109d3b; + background: -webkit-linear-gradient(45deg, #0a7e23, #0c28b8) !important; + background: linear-gradient(45deg, #0a7e23, #0c28b8) !important; +} + .duration-2s { transition-duration: 5s !important; } diff --git a/src/views/user/myprofile/myprofile.vue b/src/views/user/myprofile/myprofile.vue index e2fe09f7..ea1cd65d 100755 --- a/src/views/user/myprofile/myprofile.vue +++ b/src/views/user/myprofile/myprofile.vue @@ -1,50 +1,75 @@