diff options
author | zsloan | 2020-11-13 15:13:58 -0600 |
---|---|---|
committer | zsloan | 2020-11-13 15:13:58 -0600 |
commit | 3af4d8f5b7e573a9cee82de19cbbfc644e27143e (patch) | |
tree | 34169053e5d532ff0c3c4701e5423b6a437d5e13 | |
parent | 92848edd669925dfd3c9e0722a99fd39dbbfd4b8 (diff) | |
download | genenetwork2-3af4d8f5b7e573a9cee82de19cbbfc644e27143e.tar.gz |
Added some css to trait_list.css restyling the "show/hide column"
buttons when they're active. Not really pleased with the result, but
styling a button to look depressed is a pain
-rw-r--r-- | wqflask/wqflask/static/new/css/trait_list.css | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/wqflask/wqflask/static/new/css/trait_list.css b/wqflask/wqflask/static/new/css/trait_list.css index 691dcb12..b83655da 100644 --- a/wqflask/wqflask/static/new/css/trait_list.css +++ b/wqflask/wqflask/static/new/css/trait_list.css @@ -1,12 +1,20 @@ -div.tool-button-container {
- min-width: 950px;
-}
-
-div.collection-table-options {
- min-width: 1100px;
-}
-
-div.show-hide-container {
- margin-bottom: 5px;
- margin-top: 10px;
-}
\ No newline at end of file +div.tool-button-container { + min-width: 950px; +} + +div.collection-table-options { + min-width: 1100px; +} + +div.show-hide-container { + margin-bottom: 5px; + margin-top: 10px; +} + +button.active { + background: #e5e5e5; + -webkit-box-shadow: inset 0px 0px 5px #c1c1c1; + -moz-box-shadow: inset 0px 0px 5px #c1c1c1; + box-shadow: inset 0px 0px 5px #c1c1c1; + outline: none; + }
\ No newline at end of file |