mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-04 01:25:38 -05:00
* Added toggleMoreActions to Markdown Preview only. When it is in editor mode, only editor display ToggleMoreActions. * Added clear output back
52 lines
1.3 KiB
CSS
52 lines
1.3 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
code-component {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
code-component .toolbar {
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
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 .toolbarIconStop {
|
|
height: 20px;
|
|
background-image: url('../media/light/stop_cell.svg');
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.vs-dark code-component .toolbarIconStop,
|
|
.hc-black code-component .toolbarIconStop {
|
|
background-image: url('../media/dark/stop_cell_inverse.svg');
|
|
}
|
|
|
|
/* overview ruler */
|
|
code-component .monaco-editor .decorationsOverviewRuler {
|
|
visibility: hidden;
|
|
}
|
|
|
|
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
|
|
} |