diff options
author | zsloan | 2021-01-21 15:26:26 -0600 |
---|---|---|
committer | zsloan | 2021-01-21 15:26:26 -0600 |
commit | 9f12da2623c3ca9156300c825fe0f86ad08bb76e (patch) | |
tree | d85f6756ca8bddc6bba6855f304e6ea23ed4dd87 | |
parent | db2d9d81493750971ccfe59934dcb6e00f67c521 (diff) | |
download | genenetwork2-9f12da2623c3ca9156300c825fe0f86ad08bb76e.tar.gz |
Added modified Scroller CSS to trait_list.css in order to add the text showing current row when scrolling and remove a 0 that was appearing below the table
-rw-r--r-- | wqflask/wqflask/static/new/css/trait_list.css | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/wqflask/wqflask/static/new/css/trait_list.css b/wqflask/wqflask/static/new/css/trait_list.css index b765cdd4..c7249721 100644 --- a/wqflask/wqflask/static/new/css/trait_list.css +++ b/wqflask/wqflask/static/new/css/trait_list.css @@ -17,4 +17,38 @@ button.active { -moz-box-shadow: inset 0px 0px 5px #c1c1c1; box-shadow: inset 0px 0px 5px #c1c1c1; outline: none; - }
\ No newline at end of file +} + +div.dts { + display:block !important +} + +div.dts div.dts_loading { + z-index:1 +} + +div.dts 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 +} + +div.dts div.dataTables_scrollBody { + background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px) +} + +div.dts div.dataTables_scrollBody table { + z-index:2 +} + +div.dts div.dataTables_paginate,div.dts div.dataTables_length{ + display:none +} + |