diff options
author | Alexander_Kabui | 2024-02-16 17:23:05 +0300 |
---|---|---|
committer | Alexander_Kabui | 2024-02-16 17:23:05 +0300 |
commit | d9ff5ed87571f88f176d8caa35a34bb07f5821f2 (patch) | |
tree | 20c02640c2c993fab98e523f1d91797dc2c859d4 /gn2/wqflask/templates/base.html | |
parent | 89d445777e46e46234a5c49a3651a91024bc773c (diff) | |
download | genenetwork2-d9ff5ed87571f88f176d8caa35a34bb07f5821f2.tar.gz |
fix for gnqa-ui:replace gnqa history button
Diffstat (limited to 'gn2/wqflask/templates/base.html')
-rw-r--r-- | gn2/wqflask/templates/base.html | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/gn2/wqflask/templates/base.html b/gn2/wqflask/templates/base.html index dffdbd71..48b57afb 100644 --- a/gn2/wqflask/templates/base.html +++ b/gn2/wqflask/templates/base.html @@ -22,7 +22,7 @@ <link rel="stylesheet" href="/static/new/css/autocomplete.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> - {% block css %} + {% block css %} {% endblock %} <style> .form-rounded { @@ -224,16 +224,18 @@ </div> <div class="container-fluid" style="width: 100%; min-width: 650px; position: relative;background-color: #d5d5d5; height: 100px;"> <form id="gnqna_search_home" method="POST" action="/gnqna" style="display:none;width: 100%;"> - <div > - <input id="gnqna_search_home_input" style="width:45vw" type="text" autocomplete="off" + + <!--- init gnqa codebase here --> + <div style="width: 100%; display: flex;justify-content: space-evenly;"> + + <input id="gnqna_search_home_input" style="width:50vw" type="text" autocomplete="off" required placeholder="Ask More Questions or Topics (E.g Genes) " value='' name="querygnqa"> - </div> - <!-- Large modal --> -<button type="button" data-toggle="modal" data-target=".bd-example-modal-lg" style="border:none;outline: none;padding:5px;margin-left:25px"> GNQA-History</button> - - - + + <button type="button" data-toggle="modal" data-target=".bd-example-modal-lg" style="border:none;text-decoration:underline;outline: none;padding:5px;margin-left:25px;background-color: #d5d5d5;"> + GNQA Search History + </button> + </div> <div class="modal fade bd-example-modal-lg " id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> @@ -277,7 +279,7 @@ required placeholder="Ask More Questions or Topics (E.g Genes) " value='' name=" </div> </div> - + </form> <form method="get" action="/gsearch" id="globalsearchform"> <div class="form-group"> @@ -309,6 +311,7 @@ required placeholder="Ask More Questions or Topics (E.g Genes) " value='' name=" </div> </div> + </form> </div> |