aboutsummaryrefslogtreecommitdiffstats
path: root/src/static/js/dashboard.js
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-07-10 16:06:09 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-07-10 16:06:09 +0000
commit56b36a737f9842c0727b4fc00af9216f7261f9fd (patch)
tree44b33e8f7aa56a41e9e9fb793ecf4f50fa40cc7b /src/static/js/dashboard.js
parent5f9a48539b49ad7be0a8366fed8b2a24d83208ef (diff)
parentebd13c8a6d3d3203f45ba65cab1c9c3acf441c48 (diff)
Merge "minor UI fixes"
Diffstat (limited to 'src/static/js/dashboard.js')
-rw-r--r--src/static/js/dashboard.js11
1 files changed, 8 insertions, 3 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;
}