diff options
author | zsloan | 2022-03-17 22:11:37 +0000 |
---|---|---|
committer | zsloan | 2022-03-17 17:25:44 -0500 |
commit | 77f3bd8ab928d635a52d1d7666d4fbe4a75619c4 (patch) | |
tree | e148eaf53972e73e68c4c41cb06e6f4d96481468 | |
parent | d85621bbba76a3dd50aea8a86eacf3c326a169c1 (diff) | |
download | genenetwork2-77f3bd8ab928d635a52d1d7666d4fbe4a75619c4.tar.gz |
Set min-width for table container, so the table never ends up so narrow it looks strange
-rw-r--r-- | wqflask/wqflask/templates/search_result_page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index 70c10946..c6e4b4d2 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -131,7 +131,7 @@ {% endif %} </div> {% endif %} - <div id="table_container" style="width: {% if dataset.type == 'Geno' %}375{% else %}100%{% endif %}px;"> + <div id="table_container" style="width: {% if dataset.type == 'Geno' %}375px;{% else %}100%; min-width: 1400px;{% endif %}"> <table class="table-hover table-striped cell-border" id='trait_table' style="float: left;"> <tbody> <td colspan="100%" align="center"><br><b><font size="15">Loading...</font></b><br></td> |