File tree Expand file tree Collapse file tree
src/vs/workbench/parts/debug/browser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,13 +21,11 @@ export class DebugErrorEditor extends BaseEditor {
2121 }
2222
2323 public createEditor ( parent : Builder ) : void {
24- this . container = dom . append ( parent . getHTMLElement ( ) , $ ( '.' ) ) ;
25- this . container . style . paddingLeft = '20px' ;
24+ this . container = dom . append ( parent . getHTMLElement ( ) , $ ( '.debug-error-editor' ) ) ;
2625 }
2726
2827 public layout ( dimension : Dimension ) : void {
29- // we take the padding we set on create into account
30- this . container . style . width = `${ Math . max ( dimension . width - 20 , 0 ) } px` ;
28+ this . container . style . width = `${ dimension . width } px` ;
3129 this . container . style . height = `${ dimension . height } px` ;
3230 }
3331
Original file line number Diff line number Diff line change 7171 background : # CC6633 !important ;
7272}
7373
74+ /* Error editor */
75+ .debug-error-editor : focus {
76+ outline : none !important ;
77+ }
78+
79+ .debug-error-editor {
80+ padding : 5px 0 0 10px ;
81+ box-sizing : border-box;
82+ }
83+
7484/* Actionbar actions */
7585
7686.monaco-workbench .debug-action .step-over ,
You can’t perform that action at this time.
0 commit comments