diff options
author | zsloan | 2021-06-07 21:32:37 +0000 |
---|---|---|
committer | zsloan | 2021-06-07 21:32:37 +0000 |
commit | 69f6397c8f07245f10b4e21b23f769567db9b17f (patch) | |
tree | 42841a7f78dfd1cebafdfa77116ccb4828cfc10f /wqflask | |
parent | 912396072f4c9627e3e4d125c28236775c4811dc (diff) | |
download | genenetwork2-69f6397c8f07245f10b4e21b23f769567db9b17f.tar.gz |
Changed the padding for the checkbox cells in the search result page and changed the width of the checkbox cell to be smaller
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/search_result_page.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index 827bad98..7ec335d5 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -188,7 +188,7 @@ }); }, 'createdRow': function ( row, data, index ) { - $('td', row).eq(0).attr("style", "text-align: center; padding: 0px 10px 2px 10px;"); + $('td', row).eq(0).attr("style", "text-align: center; padding: 0px 10px 2px 13px;"); $('td', row).eq(1).attr("align", "right"); $('td', row).eq(1).attr('data-export', index+1); $('td', row).eq(2).attr('data-export', $('td', row).eq(2).text()); @@ -227,7 +227,7 @@ 'columns': [ { 'data': null, - 'width': "25px", + 'width': "10px", 'orderDataType': "dom-checkbox", 'orderable': false, 'render': function(data, type, row, meta) { @@ -420,4 +420,4 @@ }); </script> -{% endblock %}
\ No newline at end of file +{% endblock %} |