From 3e43a80e7d4e72b6564c4b9a6c5be9215b3c3d63 Mon Sep 17 00:00:00 2001 From: PAJohnson Date: Thu, 24 Sep 2020 20:46:01 -0400 Subject: [PATCH] Parameter dropdown menu styling fix - close button and title persistent, only parameter tree itself scrolls --- GUI/src/views/Dashboard.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/GUI/src/views/Dashboard.vue b/GUI/src/views/Dashboard.vue index 9d8a91e3..6c412a14 100644 --- a/GUI/src/views/Dashboard.vue +++ b/GUI/src/views/Dashboard.vue @@ -7,11 +7,13 @@ Parameters +
+
@@ -262,15 +264,17 @@ export default { .dropdown { position: absolute; - padding: var(--top-height) 0; + padding: 0 0; display: inline-block; } .dropdown-content { position: absolute; z-index: 1; - padding: var(--top-height) 0; - max-height: 90vh; +} + +.param-tree { overflow-y: scroll; + max-height: 85vh; } \ No newline at end of file