Skip to content
Snippets Groups Projects
Commit a1e37d6d authored by AndiMajore's avatar AndiMajore
Browse files

tissue dropdown coloring

parent 50fb505b
No related branches found
No related tags found
No related merge requests found
...@@ -60,9 +60,9 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit { ...@@ -60,9 +60,9 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit {
return; return;
} }
// addd settings to config // add settings to config
const configObj = JSON.parse(config); const configObj = JSON.parse(config);
this.myConfig = merge(this.myConfig, configObj) this.myConfig = merge(this.myConfig, configObj);
// update Drugst.One according to the settings // update Drugst.One according to the settings
// check if config updates affect network // check if config updates affect network
...@@ -382,7 +382,6 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit { ...@@ -382,7 +382,6 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit {
// skip if node is not a protein mapped to backend // skip if node is not a protein mapped to backend
return; return;
} }
console.log(node)
const wrapper = getWrapperFromNode(node); const wrapper = getWrapperFromNode(node);
if (this.analysis.inSelection(node)) { if (this.analysis.inSelection(node)) {
this.analysis.removeItems([wrapper]); this.analysis.removeItems([wrapper]);
......
...@@ -61,10 +61,8 @@ ...@@ -61,10 +61,8 @@
padding: 0; padding: 0;
} }
.tissue-dropdown { .tissue-dropdown {
padding: 5px; padding: 5px;
background-color: rgba(255.0, 255.0, 255.0, 0.85);
.scroll-area { .scroll-area {
max-height: 600px; max-height: 600px;
......
...@@ -106,6 +106,13 @@ ...@@ -106,6 +106,13 @@
color: var(--drgstn-primary) !important; color: var(--drgstn-primary) !important;
} }
a.dropdown-item:hover, button.dropdown-item:hover{
background-color: var(--drgstn-panel-secondary)
}
.tissue-dropdown {
background-color: var(--drgstn-panel);
}
.button.is-primary.is-focused, .button.is-primary:focus { .button.is-primary.is-focused, .button.is-primary:focus {
background-color: var(--drgstn-primary) !important; background-color: var(--drgstn-primary) !important;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment