about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander_Kabui2024-04-04 02:56:19 +0300
committerAlexander_Kabui2024-04-05 15:13:43 +0300
commit749ba361b2db03380e3bb84408d27feb7856805e (patch)
tree5d929e48f95f52a12c32c033545d8109a04551a4
parentcfd8f5b77448971470cd136d1920b7964450dd44 (diff)
downloadgenenetwork2-749ba361b2db03380e3bb84408d27feb7856805e.tar.gz
Use bootstrap classes for ui.
-rw-r--r--gn2/wqflask/templates/gnqa_search_history.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/gn2/wqflask/templates/gnqa_search_history.html b/gn2/wqflask/templates/gnqa_search_history.html
index ce6a01da..2c07b8c0 100644
--- a/gn2/wqflask/templates/gnqa_search_history.html
+++ b/gn2/wqflask/templates/gnqa_search_history.html
@@ -5,7 +5,7 @@
       <div class="panel panel-default">
 	<div class="panel-heading">
 	  <div>
-	    <h4 style="color:blue">You search History </h4>
+	    <h4 class="text-primary">You search History </h4>
 	  </div>
 	</div>
       </div>
@@ -16,7 +16,7 @@
     {% for record in prev_queries %}
     <div class="panel-body">
       <div class="row">
-	<input name="" type="checkbox" value="" class="col-sm-1" class="text-primary">
+	<input name="" type="checkbox" value="" class="col-sm-1">
 	<div class="col-sm-10">
 	  {% for id,val in  record.items() %}
 	    <button
@@ -27,9 +27,9 @@
 	      data-bs-toggle="tooltip"
 	      data-bs-placement="left"
 	      title="/gnqna/hist/search?{{id}}"
-	      style="background:transparent;border:none;color:blue;cursor:pointer"
+	      style="background:transparent;border:none;cursor:pointer"
 	      >
-	      <b>{{val}} </b>
+	      <b class="text-info">{{val}} </b>
 	    </button>
 	  {% endfor %}
 	</div>