From e61d198889d2de65bf85011c605f012f76375f9a Mon Sep 17 00:00:00 2001 From: sixsage Date: Mon, 14 Oct 2024 12:19:12 -0700 Subject: [PATCH 1/2] remove overflow: hidden --- core/gui/src/styles.scss | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/gui/src/styles.scss b/core/gui/src/styles.scss index a8109d9439f..6c2ac14306b 100644 --- a/core/gui/src/styles.scss +++ b/core/gui/src/styles.scss @@ -73,10 +73,6 @@ hr { padding-right: 24px; } -body { - overflow: hidden; -} - .annotation-highlight { background-color: #6a5acd; } From 30a7eae9c3749cfd5743096f47e11c647e6b7b6c Mon Sep 17 00:00:00 2001 From: sixsage Date: Wed, 23 Oct 2024 22:04:39 -0700 Subject: [PATCH 2/2] remove double scroll bar in quota --- .../user/user-quota/user-quota.component.html | 212 +++++++++--------- .../user/user-quota/user-quota.component.scss | 5 - 2 files changed, 106 insertions(+), 111 deletions(-) diff --git a/core/gui/src/app/dashboard/component/user/user-quota/user-quota.component.html b/core/gui/src/app/dashboard/component/user/user-quota/user-quota.component.html index d0a5bddf90e..97e9c2359d4 100644 --- a/core/gui/src/app/dashboard/component/user/user-quota/user-quota.component.html +++ b/core/gui/src/app/dashboard/component/user/user-quota/user-quota.component.html @@ -1,110 +1,110 @@ -
-
- -

- Quota -

-
-
- - -
-
-

Files Uploaded

-

{{ this.createdFiles.length }}

-
-
-

Datasets Uploaded

-

{{ this.totalUploadedDatasetCount }}

-
-
-

Total Size of Datasets

-

{{ formatSize(this.totalUploadedDatasetSize) }}

-
-
-

Workflows Created

-

{{ this.createdWorkflows.length }}

-
-
-

Files with Access

-

{{ this.accessFiles.length }}

-
-
-

Workflows with Access

-

{{ this.accessWorkflows.length }}

-
-
-

Total Size of the Files

-

{{ formatSize(this.totalFileSize) }}

-
-
-

Total Result Cache Size

-

{{ formatSize(this.totalMongoSize) }}

-
+
+ +

+ Quota +

+
+
+ + +
+
+

Files Uploaded

+

{{ this.createdFiles.length }}

- -

- Diagram -

-
-
-
-
-
+
+

Datasets Uploaded

+

{{ this.totalUploadedDatasetCount }}

- - - - - - - - Collection Name - Execution ID - Cache Size - Action - - - - - {{ execution.pointer }} - {{ execution.eid }} - {{ formatSize(execution.size) }} - - - - - - - - - - -
+
+

Total Size of Datasets

+

{{ formatSize(this.totalUploadedDatasetSize) }}

+
+
+

Workflows Created

+

{{ this.createdWorkflows.length }}

+
+
+

Files with Access

+

{{ this.accessFiles.length }}

+
+
+

Workflows with Access

+

{{ this.accessWorkflows.length }}

+
+
+

Total Size of the Files

+

{{ formatSize(this.totalFileSize) }}

+
+
+

Total Result Cache Size

+

{{ formatSize(this.totalMongoSize) }}

+
+
+ +

+ Diagram +

+
+
+
+
+
+
+
+ + + + + + + Collection Name + Execution ID + Cache Size + Action + + + + + {{ execution.pointer }} + {{ execution.eid }} + {{ formatSize(execution.size) }} + + + + + + + + + +
diff --git a/core/gui/src/app/dashboard/component/user/user-quota/user-quota.component.scss b/core/gui/src/app/dashboard/component/user/user-quota/user-quota.component.scss index e0a97ab55d8..bf69bedeb6a 100644 --- a/core/gui/src/app/dashboard/component/user/user-quota/user-quota.component.scss +++ b/core/gui/src/app/dashboard/component/user/user-quota/user-quota.component.scss @@ -47,8 +47,3 @@ } } } - -.scrollable-container { - height: 100vh; - overflow-y: auto; -}