diff options
author | zsloan | 2020-11-10 13:01:23 -0600 |
---|---|---|
committer | zsloan | 2020-11-10 13:01:23 -0600 |
commit | b695ea7f5ee11c80c9b1c547fedd1216b459acd4 (patch) | |
tree | 14d5d064b114634c5104047de10332f4d9c4b3d7 /wqflask | |
parent | 57ec6e53180375a2106c3b81b764103d9dcc6bf5 (diff) | |
download | genenetwork2-b695ea7f5ee11c80c9b1c547fedd1216b459acd4.tar.gz |
Added CSS file for all pages that include a table of traits
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/static/new/css/trait_list.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/wqflask/wqflask/static/new/css/trait_list.css b/wqflask/wqflask/static/new/css/trait_list.css new file mode 100644 index 00000000..87bd244e --- /dev/null +++ b/wqflask/wqflask/static/new/css/trait_list.css @@ -0,0 +1,34 @@ +div.tool-button-container {
+ min-width: 950px;
+}
+
+div.collection-table-options {
+ min-width: 1100px;
+}
+
+div.show-hide-container {
+ margin-bottom: 5px;
+ margin-top: 10px;
+}
+
+/* div.dts_label {
+ position: absolute;
+ right: 10px;
+ background: rgba(0, 0, 0, 0.8);
+ color: white;
+ box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
+ text-align: right;
+ border-radius: 3px;
+ padding: 0.4em;
+ z-index: 2;
+ display: none;
+} */
+
+table.dataTable tbody td {
+ /* word-wrap: break-word;
+ word-break: break-all; */
+ overflow: hidden;
+ max-width: 500px;
+ overflow-wrap: break-word;
+ text-overflow: ellipsis;
+}
\ No newline at end of file |