Skip to content

Commit

Permalink
Fix cell execution order label falling to the bottom of the output
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Feb 11, 2022
1 parent c9cec98 commit 1d9e655
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 0 additions & 3 deletions src/vs/workbench/contrib/notebook/browser/media/notebook.css
Original file line number Diff line number Diff line change
Expand Up @@ -604,9 +604,6 @@
opacity: .7;
width: 35px;
right: 0px;

/* Sizing hacks */
bottom: 0px;
text-align: center;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export class CellExecutionPart extends CellPart {
DOM.hide(this._executionOrderLabel);
} else {
DOM.show(this._executionOrderLabel);
this._executionOrderLabel.style.top = `${element.layoutInfo.editorHeight}px`;
}
}

Expand Down

0 comments on commit 1d9e655

Please sign in to comment.