File tree 2 files changed +11
-12
lines changed
src/vs/workbench/contrib/notebook/browser
2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 61
61
z-index : 1000 ;
62
62
}
63
63
64
+ .monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .cell-drag-image .execution-count-label {
65
+ display : none;
66
+ }
67
+
64
68
.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .cell-drag-image .cell-editor-container > div {
65
69
padding : 12px 16px ;
66
70
}
401
405
visibility : visible;
402
406
}
403
407
404
- .monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .cell .run-button-container . execution-count-label {
408
+ .monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .cell .execution-count-label {
405
409
position : absolute;
406
- top : -2px ;
407
410
font-size : 10px ;
408
411
font-family : var (--monaco-monospace-font );
409
- visibility : visible;
410
412
white-space : pre;
411
- width : 100% ;
412
- text-align : center;
413
- padding-right : 8px ;
414
413
box-sizing : border-box;
415
414
opacity : .6 ;
416
- }
417
415
418
- .monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row : hover .cell .run-button-container .execution-count-label ,
419
- .monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .cell-output-hover .cell .run-button-container .execution-count-label ,
420
- .monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .focused .cell .run-button-container .execution-count-label {
421
- visibility : hidden;
416
+ /* Sizing hacks */
417
+ left : 26px ;
418
+ width : 35px ;
419
+ bottom : 0px ;
420
+ text-align : center;
422
421
}
423
422
424
423
.monaco-workbench .notebookOverlay .cell .cell-editor-part {
Original file line number Diff line number Diff line change @@ -661,7 +661,7 @@ export class CodeCellRenderer extends AbstractCellRenderer implements IListRende
661
661
const runButtonContainer = DOM . append ( cellContainer , $ ( '.run-button-container' ) ) ;
662
662
const runToolbar = disposables . add ( this . createToolbar ( runButtonContainer ) ) ;
663
663
664
- const executionOrderLabel = DOM . append ( runButtonContainer , $ ( 'div.execution-count-label' ) ) ;
664
+ const executionOrderLabel = DOM . append ( cellContainer , $ ( 'div.execution-count-label' ) ) ;
665
665
666
666
// create a special context key service that set the inCompositeEditor-contextkey
667
667
const editorContextKeyService = disposables . add ( this . contextKeyServiceProvider ( container ) ) ;
You can’t perform that action at this time.
0 commit comments