From 5fb4f045cf24caf43fd880e2ed22df966b5767ec Mon Sep 17 00:00:00 2001 From: Prajwal Pai Date: Mon, 18 Mar 2024 12:12:25 +0530 Subject: [PATCH] Upgrade Cb sdk and css cleanup --- package.json | 2 +- src/pages/Tools/MdbMigrate/mdbMigrate.ts | 2 +- src/webViews/tools/mdbMigrate.webview.ts | 19 ------------------- 3 files changed, 2 insertions(+), 21 deletions(-) diff --git a/package.json b/package.json index a894d67e..32535ad8 100644 --- a/package.json +++ b/package.json @@ -99,7 +99,7 @@ "axios": "^1.4.0", "classnames": "^2.2.6", "clsx": "^2.0.0", - "couchbase": "^4.2.8", + "couchbase": "^4.3.0", "csv-parse": "^5.5.2", "d3-hierarchy": "^1.1.9", "d3-selection": "^1.4.2", diff --git a/src/pages/Tools/MdbMigrate/mdbMigrate.ts b/src/pages/Tools/MdbMigrate/mdbMigrate.ts index 79fc1924..2838e935 100644 --- a/src/pages/Tools/MdbMigrate/mdbMigrate.ts +++ b/src/pages/Tools/MdbMigrate/mdbMigrate.ts @@ -83,7 +83,7 @@ export const mdbMigrate = async (context: vscode.ExtensionContext) => { const currentPanel = vscode.window.createWebviewPanel( "dataMigrate", - "Data Migrate from MDB to Couchbase", + "Data Migration from MDB to Couchbase", vscode.ViewColumn.One, { enableScripts: true, diff --git a/src/webViews/tools/mdbMigrate.webview.ts b/src/webViews/tools/mdbMigrate.webview.ts index cc17ab6a..047d439a 100644 --- a/src/webViews/tools/mdbMigrate.webview.ts +++ b/src/webViews/tools/mdbMigrate.webview.ts @@ -12,12 +12,6 @@ export const MdbMigrateWebview = async (buckets: string[]): Promise => { text-align: center; } - .advanced-header { - font-size: 16px; - font-weight: bold; - margin-bottom: 5px; - } - input[type="checkbox"] { appearance: none; -webkit-appearance: none; @@ -191,13 +185,6 @@ export const MdbMigrateWebview = async (buckets: string[]): Promise => { background: #bb1117; } - .advanced-header { - cursor: pointer; - font-weight: bold; - padding: 5px; - display: flex; - align-items: center; - } .tooltip { @@ -237,12 +224,6 @@ export const MdbMigrateWebview = async (buckets: string[]): Promise => { position: relative; bottom: -2px; } - - input[type="checkbox"] { - width: 16px; - height: 16px; - vertical-align: middle; - }