diff --git a/src/vs/code/electron-main/app.ts b/src/vs/code/electron-main/app.ts index 53762b3d899..23470739b82 100644 --- a/src/vs/code/electron-main/app.ts +++ b/src/vs/code/electron-main/app.ts @@ -44,7 +44,7 @@ import { resolveCommonProperties, machineIdStorageKey, machineIdIpcChannel } fro import { getDelayedChannel } from 'vs/base/parts/ipc/common/ipc'; import product from 'vs/platform/node/product'; import pkg from 'vs/platform/node/package'; -import { AuthHandler } from './auth'; +import { ProxyAuthHandler } from './auth'; import { IDisposable, dispose } from "vs/base/common/lifecycle"; import { ConfigurationService } from "vs/platform/configuration/node/configurationService"; import { TPromise } from "vs/base/common/winjs.base"; @@ -157,7 +157,7 @@ export class VSCodeApplication { const appInstantiationService = this.initServices(); // Setup Auth Handler - const authHandler = appInstantiationService.createInstance(AuthHandler); + const authHandler = appInstantiationService.createInstance(ProxyAuthHandler); this.toDispose.push(authHandler); // Open Windows diff --git a/src/vs/code/electron-main/auth.html b/src/vs/code/electron-main/auth.html index 207f7219438..e27ec2fc02e 100644 --- a/src/vs/code/electron-main/auth.html +++ b/src/vs/code/electron-main/auth.html @@ -16,18 +16,18 @@ -webkit-user-select: none; user-select: none; } - + body { font-family: "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", sans-serif, "Droid Sans Fallback"; font-size: 10pt; background-color: #F3F3F3; } - + #main { box-sizing: border-box; padding: 10px; } - + h1 { margin: 0; padding: 10px 0; @@ -36,11 +36,11 @@ color: #f0f0f0; text-align: center; } - + #form { margin-top: 10px; } - + #username, #password { padding: 6px 10px; @@ -48,15 +48,15 @@ box-sizing: border-box; width: 100%; } - + #buttons { text-align: center; } - + p { margin: 6px 0; } - + input { font-family: "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", sans-serif, "Droid Sans Fallback" !important; } @@ -64,7 +64,7 @@
-