From ebd13c8a6d3d3203f45ba65cab1c9c3acf441c48 Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Wed, 10 Jul 2019 09:36:34 -0400 Subject: minor UI fixes Change-Id: I70b35ee7f62d8b2f22c8677e6c817c3e6a9b3412 Signed-off-by: Sawyer Bergeron --- src/static/js/dashboard.js | 11 ++++++++--- src/templates/dashboard/multiple_select_filter_widget.html | 4 +++- src/templates/workflow/viewport-base.html | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/static/js/dashboard.js b/src/static/js/dashboard.js index b74ead9..8e1250a 100644 --- a/src/static/js/dashboard.js +++ b/src/static/js/dashboard.js @@ -386,13 +386,18 @@ class MultipleSelectFilterWidget { add_item_prepopulate(node, prepopulate){ const div = document.createElement("DIV"); div.id = "dropdown_" + this.dropdown_count; - div.classList.add("list-group-item"); + div.classList.add("card", "flex-row", "d-flex", "mb-2"); this.dropdown_count++; const label = document.createElement("H5") label.appendChild(document.createTextNode(node['name'])) + label.classList.add("p-1", "m-1"); div.appendChild(label); - div.appendChild(this.make_input(div, node, prepopulate)); - div.appendChild(this.make_remove_button(div, node)); + let input = this.make_input(div, node, prepopulate); + input.classList.add("flex-grow-1", "p-1", "m-1"); + div.appendChild(input); + let remove_btn = this.make_remove_button(div, node); + remove_btn.classList.add("p-1", "m-1"); + div.appendChild(remove_btn); document.getElementById("dropdown_wrapper").appendChild(div); return div; } diff --git a/src/templates/dashboard/multiple_select_filter_widget.html b/src/templates/dashboard/multiple_select_filter_widget.html index ad58ccb..aee5f23 100644 --- a/src/templates/dashboard/multiple_select_filter_widget.html +++ b/src/templates/dashboard/multiple_select_filter_widget.html @@ -35,7 +35,9 @@ {% endfor %} -