diff options
author | zsloan | 2021-10-29 20:17:15 +0000 |
---|---|---|
committer | zsloan | 2021-10-29 20:17:15 +0000 |
commit | a59dee1304936407c3561c626d26992c3bfa5d1a (patch) | |
tree | 85a94dfcb9789c6bd06b76755334d53f6ebb0a4c /wqflask | |
parent | 2b0c5c94d344b839ef1d6899b5bb239f14942610 (diff) | |
download | genenetwork2-a59dee1304936407c3561c626d26992c3bfa5d1a.tar.gz |
Limit PCA trait table to something reasonable and set checkbox/index column widths
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/correlation_matrix.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/correlation_matrix.html b/wqflask/wqflask/templates/correlation_matrix.html index 8275f1dd..3da6981c 100644 --- a/wqflask/wqflask/templates/correlation_matrix.html +++ b/wqflask/wqflask/templates/correlation_matrix.html @@ -73,8 +73,13 @@ <br> {% if pca_works == "True" %} <h2>PCA Traits</h2> -<div style="margin-bottom: 20px; overflow:hidden;"> +<div style="margin-bottom: 20px; overflow:hidden; width: 450px;"> <table id="pca_table" class="table-hover table-striped cell-border" id='trait_table' style="float: left;"> + <colgroup> + <col span="1" style="width: 30px;"> + <col span="1" style="width: 50px;"> + <col span="1"> + </colgroup> <thead> <tr> <th></th> |