File tree Expand file tree Collapse file tree
src/vs/workbench/parts/preferences/browser Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99
1010.settings-editor {
1111 padding-top : 11px ;
12- padding-left : 2 px ;
12+ padding-left : 5 px ;
1313 max-width : 1100px ;
1414 margin : auto;
1515}
1616
1717/* header styling */
1818.settings-editor > .settings-header {
19- padding-left : 5 px ;
20- padding-right : 5 px ;
19+ padding-left : 17 px ;
20+ padding-right : 11 px ;
2121 box-sizing : border-box;
2222 margin : auto;
2323}
7272}
7373
7474.settings-editor > .settings-header > .settings-header-controls {
75- margin-top : 3 px ;
75+ margin-top : 8 px ;
7676 height : 30px ;
7777 display : flex;
7878}
114114 outline : none !important ;
115115}
116116
117+ .settings-editor > .settings-body .settings-tree-container .monaco-tree-wrapper ,
118+ .settings-editor > .settings-body > .settings-tree-container .setting-measure-container {
119+ /** Allocate space for the scrollbar */
120+ width : calc (100% - 11px )
121+ }
122+
123+
117124.settings-editor > .settings-body .settings-toc-container {
118125 width : 175px ;
119126 margin-right : 5px ;
155162}
156163
157164.settings-editor > .settings-body > .settings-tree-container .setting-item {
158- padding-top : 9 px ;
159- padding-bottom : 13 px ;
165+ padding-top : 11 px ;
166+ padding-bottom : 15 px ;
160167 box-sizing : border-box;
161168 cursor : default;
162169 white-space : normal;
Original file line number Diff line number Diff line change @@ -474,8 +474,8 @@ export interface ISettingChangeEvent {
474474
475475export class SettingsRenderer implements IRenderer {
476476
477- private static readonly SETTING_ROW_HEIGHT = 94 ;
478- private static readonly SETTING_BOOL_ROW_HEIGHT = 61 ;
477+ private static readonly SETTING_ROW_HEIGHT = 98 ;
478+ private static readonly SETTING_BOOL_ROW_HEIGHT = 65 ;
479479
480480 private readonly _onDidChangeSetting : Emitter < ISettingChangeEvent > = new Emitter < ISettingChangeEvent > ( ) ;
481481 public readonly onDidChangeSetting : Event < ISettingChangeEvent > = this . _onDidChangeSetting . event ;
You can’t perform that action at this time.
0 commit comments