about summary refs log tree commit diff
diff options
context:
space:
mode:
authorzsloan2023-03-22 18:50:54 +0000
committerzsloan2023-03-22 18:50:54 +0000
commitf2774c328f88752186934c29fe992cc373587e4e (patch)
treede617e5519a5a6ae0d33ee18348f1118c9ff6b6d
parentd8025d9aa2aed6b4d8d77a6209e46b00f59e4265 (diff)
downloadgenenetwork2-f2774c328f88752186934c29fe992cc373587e4e.tar.gz
Fix search result table width
-rw-r--r--wqflask/wqflask/templates/search_result_page.html13
1 files changed, 2 insertions, 11 deletions
diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html
index 9e8e269a..1d42103b 100644
--- a/wqflask/wqflask/templates/search_result_page.html
+++ b/wqflask/wqflask/templates/search_result_page.html
@@ -66,10 +66,6 @@
         <p><b>The associated genes include:</b><br><br>{% for word in search_terms %}{{ word.search_term[0] }}{% endfor %}</p>
         {% endif %}
 
-        <!--<p>To study a record click on its ID below, and to view the whole description {% if dataset.type == "Publish" %}or list of authors {% endif %} hover over the table cell. Check records below and click Add button to add to selection.</p>-->
-
-        <!--<hr style="height: 1px; background-color: #A9A9A9;">-->
-
         </div>
         {% if too_many_results %}
         <p>Your search generated over 50000 results. Please modify your search to generate 50000 or fewer matches.</p>
@@ -136,7 +132,7 @@
             {% endif %}
           </div>
           {% endif %}
-          <div id="trait_table_container" style="{% if dataset.type == 'Geno' %}width: 450px;{% else %}min-width: 1250px;{% endif %}">
+          <div id="trait_table_container" style="{% if dataset.type == 'Geno' %}width: 450px;{% else %}width: 100%; min-width: 1250px;{% endif %}">
             <table class="table-hover table-striped cell-border" id='trait_table' style="float: left; width: 100%;">
                 <tbody>
                  <td colspan="100%" align="center"><br><b><font size="15">Loading...</font></b><br></td>
@@ -297,11 +293,6 @@
             {
               'title': "Description",
               'type': "natural",
-              {% if (max_widths.description * 7) < 500 %}
-              'width': "{{ max_widths.description * 7 }}px",
-              {% else %}
-              'width': "500px",
-              {% endif %}
               'data': null,
               'targets': 3,
               'render': function(data) {
@@ -439,7 +430,7 @@
               },
               "order": [[1, "asc" ]],
               "autoWidth": true,
-              {% if traits_json|length > 10 %}
+              {% if trait_list|length > 10 %}
               "scrollY": "1000px",
               "scroller": true
               {% else %}