Change toolbar icon back to black (#5345)

* Change it back to black icon

* Install package icon
This commit is contained in:
Yurong He
2019-05-03 13:11:44 -07:00
committed by GitHub
parent 6c7cb185a1
commit 9a0e691635
2 changed files with 12 additions and 12 deletions

View File

@@ -109,8 +109,8 @@
"command": "jupyter.cmd.installPackages",
"title": "%title.installPackages%",
"icon": {
"dark": "resources/dark/manage_blue_inverse.svg",
"light": "resources/light/manage_blue.svg"
"dark": "resources/dark/manage_inverse.svg",
"light": "resources/light/manage.svg"
}
},
{

View File

@@ -49,48 +49,48 @@
}
.notebookEditor .notebook-button.icon-add{
background-image: url("./media/light/add_blue.svg");
background-image: url("./media/light/add.svg");
}
.vs-dark .notebookEditor .notebook-button.icon-add,
.hc-black .notebookEditor .notebook-button.icon-add{
background-image: url("./media/dark/add_blue_inverse.svg");
background-image: url("./media/dark/add_inverse.svg");
}
.notebookEditor .notebook-button.icon-run-cells{
background-image: url("./media/light/run_cells_blue.svg");
background-image: url("./media/light/run_cells.svg");
}
.vs-dark .notebookEditor .notebook-button.icon-run-cells,
.hc-black .notebookEditor .notebook-button.icon-run-cells{
background-image: url("./media/dark/run_cells_blue_inverse.svg");
background-image: url("./media/dark/run_cells_inverse.svg");
}
.notebookEditor .notebook-button.icon-trusted{
background-image: url("./media/light/trusted_blue.svg");
background-image: url("./media/light/trusted.svg");
}
.vs-dark .notebookEditor .notebook-button.icon-trusted,
.hc-black .notebookEditor .notebook-button.icon-trusted{
background-image: url("./media/dark/trusted_blue_inverse.svg");
background-image: url("./media/dark/trusted_inverse.svg");
}
.notebookEditor .notebook-button.icon-notTrusted{
background-image: url("./media/light/nottrusted_blue.svg");
background-image: url("./media/light/nottrusted.svg");
}
.vs-dark .notebookEditor .notebook-button.icon-notTrusted,
.hc-black .notebookEditor .notebook-button.icon-notTrusted{
background-image: url("./media/dark/nottrusted_blue_inverse.svg");
background-image: url("./media/dark/nottrusted_inverse.svg");
}
.notebookEditor .notebook-button.icon-clear-results{
background-image: url("./media/light/clear_results_blue.svg");
background-image: url("./media/light/clear_results.svg");
}
.vs-dark .notebookEditor .notebook-button.icon-clear-results,
.hc-black .notebookEditor .notebook-button.icon-clear-results{
background-image: url("./media/dark/clear_results_blue_inverse.svg");
background-image: url("./media/dark/clear_results_inverse.svg");
}
.moreActions .action-label.icon.toggle-more {