Skip to content

Commit

Permalink
Fix output selector going under cell drag handle
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Aug 13, 2020
1 parent ea28750 commit 9823308
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/contrib/notebook/browser/media/notebook.css
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
transform: translate3d(0px, 0px, 0px);
cursor: auto;
box-sizing: border-box;
z-index: 27; /* Over drag handle */
}

.monaco-workbench .notebookOverlay .output p {
Expand Down Expand Up @@ -179,7 +180,6 @@
height: 16px;
cursor: pointer;
padding: 4px;
z-index: 27;
}

.monaco-workbench .notebookOverlay .output .error_message {
Expand Down Expand Up @@ -238,6 +238,7 @@
position: relative;
left: -23px;
cursor: pointer;
z-index: 27; /* Over drag handle */
}

.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.collapsed .notebook-folding-indicator,
Expand Down

0 comments on commit 9823308

Please sign in to comment.