diff options
author | zsloan | 2015-07-15 15:41:14 +0000 |
---|---|---|
committer | zsloan | 2015-07-15 15:41:14 +0000 |
commit | 75a72014c01886ff0219df82f48d5975aa54a30b (patch) | |
tree | 6848cff827b317336a3c526e100f2e9d4ca34b2e /wqflask | |
parent | 54f3bf0c3ceede99cede528e5d25186299c7abc2 (diff) | |
download | genenetwork2-75a72014c01886ff0219df82f48d5975aa54a30b.tar.gz |
Cursor doesn't change when hovering over index column header now
Diffstat (limited to 'wqflask')
-rwxr-xr-x | wqflask/wqflask/static/packages/TableTools/media/css/TableTools.css | 5 | ||||
-rwxr-xr-x | wqflask/wqflask/templates/search_result_page.html | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/wqflask/wqflask/static/packages/TableTools/media/css/TableTools.css b/wqflask/wqflask/static/packages/TableTools/media/css/TableTools.css index 705008b0..ffa2af34 100755 --- a/wqflask/wqflask/static/packages/TableTools/media/css/TableTools.css +++ b/wqflask/wqflask/static/packages/TableTools/media/css/TableTools.css @@ -319,3 +319,8 @@ div.DTTT_collection a.DTTT_button { line-height: 20px; } +.no-sort::after { display: none!important; } +.no-sort { pointer-events: none!important; + cursor: default!important; +} + diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index 7c39ac61..8e2b6b9f 100755 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -49,7 +49,9 @@ <thead> <tr> {% for header in header_fields %} - {% if header == 'Max LRS' %} + {% if header == 'Index' %} + <th class="no-sort">{{header}}</th> + {% elif header == 'Max LRS' %} <th>{{header}}<a href="http://genenetwork.org//glossary.html#L" target="_blank"><sup style="color:#f00"> ?</sup></a></th> {% elif header == 'Additive Effect' %} <th>{{header}}<a href="http://genenetwork.org//glossary.html#A" target="_blank"><sup style="color:#f00"> ?</sup></a></th> |