diff options
author | zsloan | 2021-06-30 20:24:52 +0000 |
---|---|---|
committer | zsloan | 2021-06-30 20:24:52 +0000 |
commit | a2919c924f647887f6383d1e2efebc914ade0da3 (patch) | |
tree | d623a5327a613d931d9f79e40fcb3373455786c1 | |
parent | d99776e16fc991f75803836f6e3292cea9f6d621 (diff) | |
download | genenetwork2-a2919c924f647887f6383d1e2efebc914ade0da3.tar.gz |
Removed CSS that truncates cell content and adds an ellipses when the cell is too small to contain content; it now just makes the content wrap
-rw-r--r-- | wqflask/wqflask/static/new/css/trait_list.css | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/wqflask/wqflask/static/new/css/trait_list.css b/wqflask/wqflask/static/new/css/trait_list.css index 6d49f009..ce3075d4 100644 --- a/wqflask/wqflask/static/new/css/trait_list.css +++ b/wqflask/wqflask/static/new/css/trait_list.css @@ -51,22 +51,3 @@ div.dts div.dataTables_scrollBody table { div.dts div.dataTables_paginate,div.dts div.dataTables_length{ display:none } - -/* This is the important CSS */ -table.dataTable { - table-layout: fixed; - width: 100%; - white-space: nowrap; - overflow: hidden; -} - -table.dataTable th { - white-space: nowrap; - overflow: hidden; -} - -table.dataTable td { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -}
\ No newline at end of file |