mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* runAllCells API * add comment * more run cells fixes * Add integration test * Add multiple cell SQL notebook test * Comment out python tests as they fail in the lab * remove unused imports * PR comments * Remove localize * Return true instead of promise.resolve(true)
110 lines
2.8 KiB
CSS
110 lines
2.8 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
.notebookEditor .editor-toolbar {
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
}
|
|
|
|
.notebookEditor .notebook-cell {
|
|
margin: 10px 20px 10px;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.notebookEditor .notebook-info-label {
|
|
padding-right: 5px;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.notebookEditor .actionbar-container .monaco-action-bar > ul.actions-container {
|
|
padding-top: 0px;
|
|
}
|
|
|
|
.notebookEditor .notebook-button {
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: 0px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
padding-left: 15px;
|
|
background-size: 13px;
|
|
margin-right: 0.3em;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.notebookEditor .monaco-select-box {
|
|
min-width: 100px;
|
|
}
|
|
|
|
.notebookEditor .notebook-button.icon-add{
|
|
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_inverse.svg");
|
|
}
|
|
|
|
.notebookEditor .notebook-button.icon-run-cells{
|
|
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_inverse.svg");
|
|
}
|
|
|
|
.notebookEditor .notebook-button.icon-trusted{
|
|
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_inverse.svg");
|
|
}
|
|
|
|
.notebookEditor .notebook-button.icon-notTrusted{
|
|
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_inverse.svg");
|
|
}
|
|
|
|
.notebookEditor .notebook-button.icon-clear-results{
|
|
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_inverse.svg");
|
|
}
|
|
|
|
.moreActions .action-label.icon.toggle-more {
|
|
height: 20px;
|
|
width: 20px;
|
|
}
|
|
|
|
.moreActions.actionhidden {
|
|
visibility: hidden
|
|
}
|
|
|
|
.notebookEditor .notebook-cellTable {
|
|
margin-left: 20px;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.notebookEditor .notebook-cellTable .ui-widget-content.slick-row {
|
|
border-left: 1px silver dotted;
|
|
}
|
|
|
|
.notebookEditor .notebook-cellTable .slick-viewport {
|
|
min-height: 39px;
|
|
} |