mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Stop Showing Overview Rulers in Notebooks (#3226)
* Stop showing decorationsOverviewRuler in notebook code cells by setting hidden visibility in css * Also change overviewRuler options in IEdtorOptions for safety * address CR comments in css file
This commit is contained in:
@@ -70,6 +70,9 @@ export class QueryTextEditor extends BaseTextEditor {
|
|||||||
options.minimap = {
|
options.minimap = {
|
||||||
enabled: false
|
enabled: false
|
||||||
};
|
};
|
||||||
|
options.overviewRulerLanes = 0;
|
||||||
|
options.overviewRulerBorder = false;
|
||||||
|
options.hideCursorInOverviewRuler = true;
|
||||||
}
|
}
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,11 @@ code-component .toolbarIconRun {
|
|||||||
background-image: url('../media/dark/execute_cell_inverse.svg');
|
background-image: url('../media/dark/execute_cell_inverse.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* overview ruler */
|
||||||
|
code-component .monaco-editor .decorationsOverviewRuler {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
code-component .carbon-taskbar .icon {
|
code-component .carbon-taskbar .icon {
|
||||||
background-size: 20px;
|
background-size: 20px;
|
||||||
width: 40px;
|
width: 40px;
|
||||||
|
|||||||
Reference in New Issue
Block a user