Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/workbench/contrib/notebook/browser/view/notebookCellList.ts')
-rw-r--r--src/vs/workbench/contrib/notebook/browser/view/notebookCellList.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/vs/workbench/contrib/notebook/browser/view/notebookCellList.ts b/src/vs/workbench/contrib/notebook/browser/view/notebookCellList.ts
index b62e89274d0..ace2ec61b1b 100644
--- a/src/vs/workbench/contrib/notebook/browser/view/notebookCellList.ts
+++ b/src/vs/workbench/contrib/notebook/browser/view/notebookCellList.ts
@@ -1393,22 +1393,6 @@ export class NotebookCellList extends WorkbenchList<CellViewModel> implements ID
`);
}
- if (styles.listFilterWidgetBackground) {
- content.push(`.monaco-list-type-filter { background-color: ${styles.listFilterWidgetBackground} }`);
- }
-
- if (styles.listFilterWidgetOutline) {
- content.push(`.monaco-list-type-filter { border: 1px solid ${styles.listFilterWidgetOutline}; }`);
- }
-
- if (styles.listFilterWidgetNoMatchesOutline) {
- content.push(`.monaco-list-type-filter.no-matches { border: 1px solid ${styles.listFilterWidgetNoMatchesOutline}; }`);
- }
-
- if (styles.listMatchesShadow) {
- content.push(`.monaco-list-type-filter { box-shadow: 1px 1px 1px ${styles.listMatchesShadow}; }`);
- }
-
const newStyles = content.join('\n');
if (newStyles !== this.styleElement.textContent) {
this.styleElement.textContent = newStyles;