Vertical Toolbar Improvements and Fix for Untitled File Load Issue (#3189)

* Add horizontal toolbar

* Add vertical toolbar

* Fix for untitled scheme file load

* further fixes to vertical toolbar

* Addressing PR comments
This commit is contained in:
Chris LaFreniere
2018-11-13 11:05:54 -08:00
committed by GitHub
parent 0b571737b7
commit 06660160e7
8 changed files with 37 additions and 8 deletions

View File

@@ -13,3 +13,24 @@ code-component .toolbar {
border-right-width: 1px;
border-right-style: solid;
}
code-component .toolbarIconRun {
height: 20px;
background-image: url('../media/light/execute_cell.svg');
padding-bottom: 10px;
}
.vs-dark code-component .toolbarIconRun,
.hc-black code-component .toolbarIconRun {
background-image: url('../media/dark/execute_cell_inverse.svg');
}
code-component .carbon-taskbar .icon {
background-size: 20px;
width: 40px;
}
code-component .carbon-taskbar.monaco-toolbar .monaco-action-bar.animated .actions-container
{
padding-left: 10px
}