File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/vs/workbench/contrib/interactiveEditor/browser Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 9090/* status */
9191
9292.monaco-editor .interactive-editor .status {
93- margin-top : 4 px ;
93+ margin-top : 3 px ;
9494 display : flex;
9595 justify-content : space-between;
9696 align-items : center;
9797}
9898
99+ .monaco-editor .interactive-editor .status .actions {
100+ margin-top : 6px ;
101+ }
102+
99103.monaco-editor .interactive-editor .status .actions .hidden {
100104 display : none;
101105}
Original file line number Diff line number Diff line change @@ -423,6 +423,7 @@ export class InteractiveEditorWidget {
423423 updateToolbar ( show : boolean ) {
424424 this . _elements . statusToolbar . classList . toggle ( 'hidden' , ! show ) ;
425425 this . _elements . feedbackToolbar . classList . toggle ( 'hidden' , ! show ) ;
426+ this . _elements . status . classList . toggle ( 'actions' , show ) ;
426427 this . _onDidChangeHeight . fire ( ) ;
427428 }
428429
You can’t perform that action at this time.
0 commit comments