Hide focus indicator while dragging cell

This commit is contained in:
Rob Lourens 2022-02-10 09:46:23 -08:00
parent 7fc305b38a
commit 2be84d7df0
2 changed files with 5 additions and 0 deletions

1
.vscode/launch.json vendored
View file

@ -223,6 +223,7 @@
},
"cleanUp": "wholeBrowser",
"urlFilter": "*workbench.html*",
"trace": true,
"runtimeArgs": [
"--inspect=5875",
"--no-cached-data",

View file

@ -186,6 +186,10 @@
overflow: hidden;
}
.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.cell-drag-image .codeOutput-focus-indicator-container {
display: none;
}
.monaco-workbench .notebookOverlay > .cell-list-container > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row .cell {
display: flex;
}