diff options
author | zsloan | 2020-08-22 13:03:10 -0500 |
---|---|---|
committer | zsloan | 2020-08-22 13:03:10 -0500 |
commit | bc67aaf8144775cfc529cfcbaf191566b5564afd (patch) | |
tree | ce199113a174a88cfc9fe7c9f1f99ee91916bf0b /wqflask | |
parent | 092212df948d6c2c9e0590786d1640b0c2b587b0 (diff) | |
download | genenetwork2-bc67aaf8144775cfc529cfcbaf191566b5564afd.tar.gz |
Set min-width for search result table, since the description column
often looks weird if it gets below a certain width
* wqflask/wqflask/templates/search_result_page.html - Set min-width of
table container div to 1500px since that seems to be a reasonable width
that prevents the description column from getting too narrow
Diffstat (limited to 'wqflask')
-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 267fc1d1..b5b582d4 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -137,7 +137,7 @@ </div> {% endif %} <!--<div id="table_container" style="min-width: {% if dataset.type == 'ProbeSet' or dataset.type == 'Publish' %}2000{% else %}380{% endif %}px;">--> - <div id="table_container"> + <div id="table_container" {% if dataset.type == 'ProbeSet' or dataset.type == 'Publish' %}style="min-width: 1500px;"{% endif %}> <table class="table-hover table-striped cell-border" id='trait_table' style="float: left; width: {% if dataset.type == 'Geno' %}380px{% else %}100%{% endif %};"> <tbody> <td colspan="100%" align="center"><br><b><font size="15">Loading...</font></b><br></td> |