From 540b1b22bdb8b46abf595f99066973b175dc3c02 Mon Sep 17 00:00:00 2001 From: "Hartung, Michael" Date: Fri, 6 Oct 2023 13:18:32 +0200 Subject: [PATCH] simple style loading screen --- src/app/services/analysis/analysis.service.ts | 2 +- src/styles.scss | 34 ++++++++++++++++--- 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/src/app/services/analysis/analysis.service.ts b/src/app/services/analysis/analysis.service.ts index 391b147..2142d4a 100644 --- a/src/app/services/analysis/analysis.service.ts +++ b/src/app/services/analysis/analysis.service.ts @@ -702,7 +702,7 @@ export class AnalysisService { if (this.intervalId) { clearInterval(this.intervalId); } - this.intervalId = setInterval(watch, 5000); + this.intervalId = setInterval(watch, 3000); } public getGraphId(wrapper: Wrapper) { diff --git a/src/styles.scss b/src/styles.scss index 367f25e..78310f2 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -501,9 +501,33 @@ body::-webkit-scrollbar-button:increment { } .simple-explorer { - .loadingOverlay{ - height: 100vh; - top: 0; - position: absolute; - } + .loadingOverlay{ + left: 0; + top: 0; + width: 60vw; + position: absolute; + min-width: 0; + } } + +@media only screen and (max-width: 768px) { + .simple-explorer { + #task-list{ + .list-item { + height: 65px !important; + .column { + display: inline-block; + } + } + } + .loadingOverlay{ + height: 100vh; + width: 100vw; + top: 0; + position: absolute; + } + } + #simple-analysis-result-modal{ + width: 100% !important; + } +} \ No newline at end of file