diff options
author | zsloan | 2020-09-22 16:46:16 -0500 |
---|---|---|
committer | zsloan | 2020-09-22 16:46:16 -0500 |
commit | f887ee8ca60d5c18c394b04a9bc5a9341da95327 (patch) | |
tree | f148df537cc61db3821eb34c4ba4fb2c5ef74c43 | |
parent | 3687a5882ea94385d49b7bc91b01d5c9025ea40f (diff) | |
download | genenetwork2-f887ee8ca60d5c18c394b04a9bc5a9341da95327.tar.gz |
Added something to the mapping result page CSS to change the highlight
color to match the high color in other tables
* wqflask/wqflask/static/new/css/marker_regression.css - changed
background color when selecting a row (i.e. "highlight color")
-rw-r--r-- | wqflask/wqflask/static/new/css/marker_regression.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wqflask/wqflask/static/new/css/marker_regression.css b/wqflask/wqflask/static/new/css/marker_regression.css index f1a26a83..e0a5ceea 100644 --- a/wqflask/wqflask/static/new/css/marker_regression.css +++ b/wqflask/wqflask/static/new/css/marker_regression.css @@ -62,6 +62,10 @@ table.dataTable tbody td { padding: 4px 20px 2px 10px; } +table.dataTable tbody tr.selected { + background-color: #ffee99; +} + table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td { border-top: 1px solid #ccc; border-right: 1px solid #ccc; |